Page 77 of 151 FirstFirst ... 2767757677787987127 ... LastLast
Results 761 to 770 of 1501
  1. #761
    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 LloydR View Post
    Hi

    Can someone please tell me how to remove this add-on, i am getting the following from my clients:

    [FONT=Consolas]I tried to send a message on the contact us section but everything you click there was linked to posting a testimony...[/FONT]
    follow the instructions in the uninstall_testimonials_manager.txt file that is included with the contribution.

  2. #762
    Join Date
    Jun 2007
    Location
    SA
    Posts
    91
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Any thoughts on a possible fix rather?

    Thank you

  3. #763
    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 LloydR View Post
    Any thoughts on a possible fix rather?

    Thank you
    TM has no files in common with the contact us page and should not interfere with it in any way.

  4. #764
    Join Date
    Jun 2007
    Location
    SA
    Posts
    91
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    follow the instructions in the uninstall_testimonials_manager.txt file that is included with the contribution.
    No such file in my Zip file

    Please reply

  5. #765
    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 LloydR View Post
    No such file in my Zip file

    Please reply
    how 'bout uninstall.txt

  6. #766
    Join Date
    Jun 2007
    Location
    SA
    Posts
    91
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Sorry also nothing

    I have:
    install.txt
    readme.txt
    upgrade.txt

  7. #767
    Join Date
    Jun 2007
    Location
    SA
    Posts
    91
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    mine is:
    testimonial_manager_v1-4-4.zip

  8. #768
    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 LloydR View Post
    mine is:
    testimonial_manager_v1-4-4.zip
    Run this sql statement using the Zen-Cart Sql Patches tool
    (admin -> tools -> install sql patches)
    For best results, copy-and-paste the code into the query field and press 'Send'.

    Code:
    #Testimonials Manager SQL Uninstall
    # For Zen-Cart 1.3.8
    # Last Updated: 03/26/2008
    
    SET @configuration_group_id=0;
    SELECT @configuration_group_id:=configuration_group_id 
    FROM configuration_group
    WHERE configuration_group_title= 'Testimonials Manager'
    LIMIT 1;
    
    DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
    DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;
    DELETE FROM configuration WHERE configuration_key = 'DEFINE_TESTIMONIAL_STATUS';
    
    INSERT INTO `configuration` VALUES (NULL, 'Product option type Select', 'PRODUCTS_OPTIONS_TYPE_SELECT', '0', 'The number representing the Select type of product option.', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Upload prefix', 'UPLOAD_PREFIX', 'upload_', 'Prefix used to differentiate between upload options and other options', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Text prefix', 'TEXT_PREFIX', 'txt_', 'Prefix used to differentiate between text option values and other option values', 0, NULL, NULL, now(), NULL, NULL);
    INSERT INTO `configuration` VALUES (NULL, 'Image Handler Version', 'IH_VERSION', '2.0', 'This is used by image handler to check if the database is up to date with uploaded image handler files.', 0, 100, NULL, now(), NULL, 'zen_cfg_textarea_small(');
    
    DROP TABLE IF EXISTS `testimonials_manager`;
    Manually delete the following files:

    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

    -------
    includes/extra_datafiles/testimonials_manager_filenames.php
    includes/functions/testimonials.php
    includes/languages/english/extra_definitions/YOUR_TEMPLATE/testimonials_manager_defines.php
    includes/languages/english/YOUR_TEMPLATE/testimonials_add.php
    includes/languages/english/YOUR_TEMPLATE/testimonials_manager.php
    includes/languages/english/YOUR_TEMPLATE/testimonials_manager_all_testimonials.php
    includes/languages/english/html_includes/define_testimonials_add.php
    includes/languages/english/html_includes/YOUR_TEMPLATE/define_testimonials_add.php
    includes/modules/pages/testimonials_add
    includes/modules/pages/testimonials_manager
    includes/modules/pages/testimonials_manager_all_testimonials
    includes/modules/sideboxes/YOUR_TEMPLATE/testimonials_manager.php
    includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php
    includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
    includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_all_testimonials_default.php
    includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_manager_default.php
    includes/templates/YOUR_TEMPLATE/css/testimonials_add.css
    includes/templates/YOUR_TEMPLATE/css/testimonials_manager.css
    includes/templates/YOUR_TEMPLATE/css/testimonials_manager_all_testimonials.css
    includes/templates/YOUR_TEMPLATE/buttons/english/button_submit_testimonials.gif
    includes/templates/YOUR_TEMPLATE/buttons/english/button_testimonials.gif
    includes/templates/YOUR_TEMPLATE/buttons/english/button_view_testimonials.gif

  9. #769
    Join Date
    Sep 2006
    Posts
    40
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Based on the following:

    Quote Originally Posted by clydejones View Post
    You'll have to change the error handling code in includes/modules/pages/testimonials_add/header_php.php

    And

    You'll have to change the code in the submission form
    includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php
    I'm trying to modify the code so that the Testimonial Title doesn't show up when someone adds their testimonial. I changed the ~includes/modules/pages/testimonials_add/header_php.php by commenting out:
    Code:
    $error = false;
       //   if ($testimonials_title == '') {
       //     $error = true;
       //     $messageStack->add('new_testimonial', ERROR_TESTIMONIALS_TITLE_REQUIRED);
      //    }
    then I changed the ~includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php by commenting out the following:
    Code:
    <fieldset>
    <!--<label class="inputLabel" for="testimonials_title"><?php echo TEXT_TESTIMONIALS_TITLE; ?></label>
    <?php echo zen_draw_input_field('testimonials_title', '', 'size="18" id="testimonials_title"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearBoth" />-->
    
    <label class="inputLabel" for="testimonials_name"><?php echo TEXT_TESTIMONIALS_NAME; ?></label>
    <?php echo zen_draw_input_field('testimonials_name', $name, 'size="18" id="testimonials_name"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearBoth" />
    Now, everything works fine for customers to add testimonials, but I can't approve anything. When I go into the Admin-->Tools-->Testimonials Manager I get an error at the top of Zen Cart stating:

    Error: Testimonials title required.
    This won't allow it to show up. Any help would be appreciated.

    Cheers

  10. #770
    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 Happyworker View Post
    Based on the following:



    I'm trying to modify the code so that the Testimonial Title doesn't show up when someone adds their testimonial. I changed the ~includes/modules/pages/testimonials_add/header_php.php by commenting out:
    Code:
    $error = false;
       //   if ($testimonials_title == '') {
       //     $error = true;
       //     $messageStack->add('new_testimonial', ERROR_TESTIMONIALS_TITLE_REQUIRED);
      //    }
    then I changed the ~includes/templates/YOUR_TEMPLATE/templates/tpl_testimonials_add_default.php by commenting out the following:
    Code:
    <fieldset>
    <!--<label class="inputLabel" for="testimonials_title"><?php echo TEXT_TESTIMONIALS_TITLE; ?></label>
    <?php echo zen_draw_input_field('testimonials_title', '', 'size="18" id="testimonials_title"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearBoth" />-->
    
    <label class="inputLabel" for="testimonials_name"><?php echo TEXT_TESTIMONIALS_NAME; ?></label>
    <?php echo zen_draw_input_field('testimonials_name', $name, 'size="18" id="testimonials_name"') . '<span class="alert">' . ENTRY_REQUIRED_SYMBOL . '</span>'; ?>
    <br class="clearBoth" />
    Now, everything works fine for customers to add testimonials, but I can't approve anything. When I go into the Admin-->Tools-->Testimonials Manager I get an error at the top of Zen Cart stating:

    This won't allow it to show up. Any help would be appreciated.

    Cheers
    admin/testimonial_manager.php

    look for this section of code

    Code:
            if (empty($testimonials_title)) {
              $messageStack->add(ERROR_PAGE_TITLE_REQUIRED, 'error');
              $page_error = true;
            }

 

 

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