Page 117 of 151 FirstFirst ... 1767107115116117118119127 ... LastLast
Results 1,161 to 1,170 of 1501
  1. #1161
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default 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!

  2. #1162
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by joyjoy View Post
    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.

  3. #1163
    Join Date
    Sep 2010
    Posts
    612
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

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

  4. #1164
    Join Date
    Jan 2009
    Posts
    69
    Plugin Contributions
    0

    Default 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!

  5. #1165
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by juneloweelyn View Post
    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

  6. #1166
    Join Date
    Apr 2008
    Posts
    446
    Plugin Contributions
    1

    Default 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
    PHP Code:
                                <!-- 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
    PHP Code:
                                <!-- 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 www.byvalenti.com

    Hope this helps
    M.Valenti
    Contemporary Artist - Entrepreneur
    http://www.manuelavalenti.com - http://www.byvalenti.com

  7. #1167
    Join Date
    Nov 2010
    Posts
    67
    Plugin Contributions
    0

    Default No Template Manager Under Tools

    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!

  8. #1168
    Join Date
    Nov 2005
    Location
    Colorado Springs, CO USA
    Posts
    7,033
    Plugin Contributions
    31

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by organelle67 View Post
    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

  9. #1169
    Join Date
    Nov 2010
    Posts
    67
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    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!

  10. #1170
    Join Date
    Mar 2009
    Posts
    609
    Plugin Contributions
    0

    Default 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?

 

 

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 261
    Last Post: 13 Jan 2025, 11:14 PM
  2. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  3. Poll Manager Support Thread
    By boudewijn in forum Addon Sideboxes
    Replies: 148
    Last Post: 27 Jan 2016, 09:53 AM
  4. Empty Cart Manager [support thread]
    By Steven300 in forum All Other Contributions/Addons
    Replies: 49
    Last Post: 26 May 2010, 10:26 AM
  5. [Support Thread] Simple Video Manager
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 1 Nov 2008, 02:44 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR