Page 89 of 151 FirstFirst ... 3979878889909199139 ... LastLast
Results 881 to 890 of 1501
  1. #881

    Default Re: Testimonial Manager Support Thread

    Hi, clydejones

    Your add-on is good and your services are better! I do have the same puzzle as lextechs. Why not just including the link in your help file?

    All the best,

  2. #882
    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 ShoesBuyOnline View Post
    Hi, clydejones

    Your add-on is good and your services are better! I do have the same puzzle as lextechs. Why not just including the link in your help file?

    All the best,
    It is included in the install_testimonials_manager.txt file.

    scroll to the bottom of the page

  3. #883

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    You'd need to use the Zen Cart built-in review system to do this.
    Hi, clyde

    Might I understand in this way: built-in reviews are on product-level while yours testimonial manager on site-level.

    Thanks again for the nice add-on,

  4. #884
    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 ShoesBuyOnline View Post
    Hi, clyde

    Might I understand in this way: built-in reviews are on product-level while yours testimonial manager on site-level.

    Thanks again for the nice add-on,
    That is correct.

  5. #885
    Join Date
    Mar 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    thanks for your mod. This is not a major issue, but when i add in the code into meta_tags.php file I get this error on my site

    Parse error: syntax error, unexpected T_CASE in /home/public_html/store/includes/languages/english/meta_tags.php on line 56

    any thoughts on this or how to fix it, I removed the code for now

    the file I edited was in /includes/languages/english/meta_tags.php

    thanks!

    John

  6. #886
    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 ethical View Post
    thanks for your mod. This is not a major issue, but when i add in the code into meta_tags.php file I get this error on my site

    Parse error: syntax error, unexpected T_CASE in /home/public_html/store/includes/languages/english/meta_tags.php on line 56

    any thoughts on this or how to fix it, I removed the code for now

    the file I edited was in /includes/languages/english/meta_tags.php

    thanks!

    John
    Can you post the section of meta_tags.php that you edited.

  7. #887
    Join Date
    Mar 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    thanks for the reply, I put it after this

    Code:
    // favicon setting
    // There is usually NO need to enable this unless you wish to specify a path and/or a different filename
     define('FAVICON','favicon.ico');
    and before the close php tag:

    Code:
    ?>
    and this is what i pasted:

    Code:
    //TESTIMONIALS:
    case 'testimonials_manager_all_testimonials':
    
    $sql = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by date_added DESC, testimonials_title";
    $testimonials = $db->Execute($sql);
    while (!$testimonials->EOF) {
      $testimonial_string_metatags .= zen_clean_html($testimonials->fields['testimonials_title']) . METATAGS_DIVIDER;
    
    	
    $testimonials->MoveNext();
    	
    } //EOF
        define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
        define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
        define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
    break;
    
    case 'testimonials_manager':
        define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
        define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
        define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
    break;
    I didn't remove anything. Thanks for your help!

    John

  8. #888
    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 ethical View Post
    thanks for the reply, I put it after this

    Code:
    // favicon setting
    // There is usually NO need to enable this unless you wish to specify a path and/or a different filename
     define('FAVICON','favicon.ico');
    and before the close php tag:

    Code:
    ?>
    and this is what i pasted:

    Code:
    //TESTIMONIALS:
    case 'testimonials_manager_all_testimonials':
    
    $sql = "select * from " . TABLE_TESTIMONIALS_MANAGER . " where status = 1 and language_id = '" . (int)$_SESSION['languages_id'] . "' order by date_added DESC, testimonials_title";
    $testimonials = $db->Execute($sql);
    while (!$testimonials->EOF) {
      $testimonial_string_metatags .= zen_clean_html($testimonials->fields['testimonials_title']) . METATAGS_DIVIDER;
    
    	
    $testimonials->MoveNext();
    	
    } //EOF
        define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
        define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
        define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS . $testimonial_string_metatags);
    break;
    
    case 'testimonials_manager':
        define('META_TAG_TITLE', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
        define('META_TAG_DESCRIPTION', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . zen_trunc_string($page_check->fields['testimonials_html_text'],TESTIMONIALS_MANAGER_DESCRIPTION_LENGTH));
        define('META_TAG_KEYWORDS', META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER . $page_check->fields['testimonials_title']);
    break;
    I didn't remove anything. Thanks for your help!

    John
    You put it in the wrong file;

    open includes/modules/meta_tags.php

    find the following line of code

    // EZ-Pages:

    Put the code just above this line.

    save the file to includes/modules/YOUR_TEMPLATE/meta_tags.php

    Don't forget to delete the code from includes/languages/english/meta_tags.php

  9. #889
    Join Date
    Mar 2009
    Posts
    57
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    thanks! perhaps might be a good idea to add that to the install doc, since there are 2 meta_tags.php files.

  10. #890
    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 ethical View Post
    thanks! perhaps might be a good idea to add that to the install doc, since there are 2 meta_tags.php files.
    Will do

 

 

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