Zen Cart Logo
Forums / All Other Contributions/Addons / Testimonial Manager Support Thread

Testimonial Manager Support Thread

Views: 277,987

Results 1,161 to 1,180 of 1,502
11 Nov 2010, 8:01 PM
#1161
paperbliss avatar

paperbliss

New Zenner

Join Date:
Oct 2010
Posts:
17
Plugin Contributions:
0

Testimonial Manager Support Thread

i just tried option #1 again.... it worked this time. not sure why it didn't last time, but once again, thanks for your help + patience!

11 Nov 2010, 9:01 PM
#1162
joyjoy avatar

joyjoy

Totally Zenned

Join Date:
Sep 2010
Posts:
611
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

I recently added this mod to my site. Does this affect the default reviews option? My write reviews are no longer working...not sure if it's related. Thanks!

11 Nov 2010, 9:24 PM
#1163
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

joyjoy:

I recently added this mod to my site. Does this affect the default reviews option? My write reviews are no longer working...not sure if it's related. Thanks!

Testimonial Manager is a stand alone module and does not have anything to do with the default Zen Cart reviews.

12 Nov 2010, 12:19 AM
#1164
joyjoy avatar

joyjoy

Totally Zenned

Join Date:
Sep 2010
Posts:
611
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Thanks Clyde. I figured it out. Something I did. :smile:

14 Nov 2010, 10:48 AM
#1165
juneloweelyn avatar

juneloweelyn

New Zenner

Join Date:
Jan 2009
Posts:
70
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

May i know how to i make it optional for customers to fill in their EMAIL in the "add testimonial" section?

I also would like to delete the title when they submit the testimonial :)

I am using 1.5.1

Thank you ya!

14 Nov 2010, 4:20 PM
#1166
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

juneloweelyn:

May i know how to i make it optional for customers to fill in their EMAIL in the "add testimonial" section?

I also would like to delete the title when they submit the testimonial :)

I am using 1.5.1

Thank you ya!

edit the following files and either delete or comment out what you don't want or need

includes/modules/pages/testimonials_add

includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php

1 Dec 2010, 7:28 PM
#1167
mvstudio avatar

mvstudio

Zen Follower

Join Date:
Apr 2008
Posts:
447
Plugin Contributions:
1

Re: Testimonial Manager Support Thread

For anyone interested there is a way around to showing the testimonials on the main page if your site has the side boxes disabled on the main page. It's a little bit of work but we just did it with one of my websites and it works great.

Using Banner Display Groups set a banner to display only on the main page. We use the group 4 for this.

Look for this code on the tpl_main_page.php file

							<!-- bof BANNERS GROUPSET 4 -->
							<?php
                                  if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
                                    if ($banner->RecordCount() > 0) {
                                ?>
							<div id="bannerFour" class="banners">
								<?php echo zen_display_banner('static', $banner); ?>
							</div>
							<?php
                                    }
                                  }
                                ?>
							<!-- eof BANNERS GROUPSET 4 -->

and replace for

							<!-- bof BANNERS GROUPSET 4 -->
							<?php
                                  if ($this_is_home_page && (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4))) {
                                  //if (SHOW_BANNERS_GROUP_SET4 != '' && $banner = zen_banner_exists('dynamic', SHOW_BANNERS_GROUP_SET4)) {
                                    if ($banner->RecordCount() > 0) {
                                ?>
							<div id="bannerFour" class="banners">
								<?php echo zen_display_banner('static', $banner); ?>
							</div>
							<?php
                                    }
                                  }
                                ?>
							<!-- eof BANNERS GROUPSET 4 -->

This piece of code will allow to show this banner only on the main page.

Now go to banner manager and add the testimonials you want to show on main page in the html text box. Customize to your taste. It's a little bit of work entering manually each testimony but is a one time job and it does the trick, which is showing rotating testimonials on the main page.

To view how it looks visit https://www.byvalenti.com

Hope this helps :D

7 Dec 2010, 10:05 AM
#1168
organelle67 avatar

organelle67

New Zenner

Join Date:
Nov 2010
Posts:
67
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Just like the title says:

I don't have a Testimonial Manager under tools in my admin panel...therefore I can't delete or edit testimonials.

The admin folder for this module on my local is the same as my server; they are both named "admin". (I haven't got around to renaming the one on my server yet for security purposes)

So...they are named the same thing, that can't be the issue. Why don't I have a Testimonial Manager under Tools in my admin panel?

Also...I already renamed every instance of YOUR_TEMPLATE in this module before I uploaded.

Thanks!

7 Dec 2010, 4:10 PM
#1169
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

organelle67:

Just like the title says:

I don't have a Testimonial Manager under tools in my admin panel...therefore I can't delete or edit testimonials.

The admin folder for this module on my local is the same as my server; they are both named "admin". (I haven't got around to renaming the one on my server yet for security purposes)

So...they are named the same thing, that can't be the issue. Why don't I have a Testimonial Manager under Tools in my admin panel?

Also...I already renamed every instance of YOUR_TEMPLATE in this module before I uploaded.

Thanks!

Make sure you have uploaded ALL of the following files/folders

admin/testimonials_manager.php
admin/includes/boxes/extra_boxes/testimonials_manager_tools_dhtml.php
admin/includes/extra_datafiles/testimonials_manager.php
admin/includes/functions/extra_functions/testimonials_manager_functions.php
admin/includes/languages/english/testimonials_manager.php
admin/includes/languages/english/extra_definitions/testimonials_manager.php
admin/includes/languages/english/images/buttons/button_new_testimonial.gif

8 Dec 2010, 4:11 AM
#1170
organelle67 avatar

organelle67

New Zenner

Join Date:
Nov 2010
Posts:
67
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

Make sure you have uploaded ALL of the following files/folders

admin/testimonials_manager.php
admin/includes/boxes/extra_boxes/testimonials_manager_tools_dhtml.php
admin/includes/extra_datafiles/testimonials_manager.php
admin/includes/functions/extra_functions/testimonials_manager_functions.php
admin/includes/languages/english/testimonials_manager.php
admin/includes/languages/english/extra_definitions/testimonials_manager.php
admin/includes/languages/english/images/buttons/button_new_testimonial.gif

Ha! Ha! That did it Clyde...thank you very much for helping me. I had uploaded the Includes and it's sub-directories (which is what you usually only need to do with these modules) and did not have those Admin files uploaded. But I think it will be good now.

Thanks again, I admire the way you respond and help people with your module...top notch! :thumbsup:

19 Dec 2010, 11:02 AM
#1171
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Would be nice if the customer could choose which order they are leaving a testimonial for and that then adjusted a database field.

Customers could then have a notice in their account that they hadn't left a testimonial for their order, and then once they did leave one, the notice would go away.

What you think?

20 Dec 2010, 12:02 AM
#1172
countrycharm avatar

countrycharm

Totally Zenned

Join Date:
Jul 2007
Posts:
2,179
Plugin Contributions:
2

Re: Testimonial Manager Support Thread

DigitalShadow:

Would be nice if the customer could choose which order they are leaving a testimonial for and that then adjusted a database field.

Customers could then have a notice in their account that they hadn't left a testimonial for their order, and then once they did leave one, the notice would go away.

What you think?
That would be a good idea.

22 Dec 2010, 3:12 PM
#1173
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

I have lots more ideas, just wish I had the time to learn to code them all :(

23 Dec 2010, 2:06 AM
#1174
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

How easy would it be to change the code so the sidebox could be moved into the footer?

23 Dec 2010, 3:21 AM
#1175
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

DigitalShadow:

How easy would it be to change the code so the sidebox could be moved into the footer?

Not all that easy, would require some substantial re-writing.

23 Dec 2010, 3:34 PM
#1176
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

There must be a guide somewhere where someone has taken a sidebox and moved it onto a page or as part of the site somewhere else.

23 Dec 2010, 3:56 PM
#1177
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

DigitalShadow:

There must be a guide somewhere where someone has taken a sidebox and moved it onto a page or as part of the site somewhere else.

I believe you've asked a similar question in another thread.

As I said it would take substantial re-writing to accomplish this.

24 Dec 2010, 9:22 PM
#1178
digitalshadow avatar

digitalshadow

Totally Zenned

Join Date:
Mar 2009
Posts:
616
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

Yeah, I'm sure I remember a thread where someone had modified a sidebox to become an item that could be used on a page.

Did you see my other question

"Would be nice if the customer could choose which order they are leaving a testimonial for and that then adjusted a database field.

Customers could then have a notice in their account that they hadn't left a testimonial for their order, and then once they did leave one, the notice would go away.

What you think?"

24 Dec 2010, 9:34 PM
#1179
clydejones avatar

clydejones

Deceased

Join Date:
Nov 2005
Location:
Colorado Springs, CO USA
Posts:
7,017
Plugin Contributions:
12

Re: Testimonial Manager Support Thread

DigitalShadow:

Yeah, I'm sure I remember a thread where someone had modified a sidebox to become an item that could be used on a page.

Did you see my other question

"Would be nice if the customer could choose which order they are leaving a testimonial for and that then adjusted a database field.

Customers could then have a notice in their account that they hadn't left a testimonial for their order, and then once they did leave one, the notice would go away.

What you think?"

Again, this would require a substantial re-write which would include connection to both the customer table and product/category table.

9 Jan 2011, 1:56 AM
#1180
gbengoose avatar

gbengoose

Zen Follower

Join Date:
Jul 2010
Posts:
101
Plugin Contributions:
0

Re: Testimonial Manager Support Thread

clydejones:

Evidently the issue has been solved. I just checked the site and was able to view individual testimonials

Hello Clyde, I'm currently experiencing this issue with the .php in the middle of the link. When I remove the .php i can see the correct page. The title and read more link have the .php in the link.

http://www.internationalentertainmentstore.com/index.php?main_page=testimonials_manager.php&testimonials_id=1

When I click the View All link i get this page which is nto correct.
http://www.internationalentertainmentstore.com/index.php?main_page=FILENAME_TESTIMONIALS_MANAGER_ALL

When I click on Add Testimonial I see the following page which is also incorrect.
https://www.internationalentertainmentstore.com/index.php?main_page=FILENAME_TESTIMONIALS_ADD

Any help is appreciated.