Page 107 of 151 FirstFirst ... 75797105106107108109117 ... LastLast
Results 1,061 to 1,070 of 1501
  1. #1061
    Join Date
    Feb 2007
    Location
    Burleson. Texas
    Posts
    194
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    Which version of Testimonial Manager are you using on your ZC 1.3.7 site?

    Tried 1.4.4 first, then 1.5.0 then 1.5.2. I put it back on 1.4.4.

    Looks like the one I had on the 1.3.8a (1.5.0 TM) stopped working also, as I just tried to verify that it was still OK. Same results as my new install.

    The 1.3.8a is on a different host than the 1.3.7 site.
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

  2. #1062
    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 awhfy99 View Post
    Tried 1.4.4 first, then 1.5.0 then 1.5.2. I put it back on 1.4.4.

    Looks like the one I had on the 1.3.8a (1.5.0 TM) stopped working also, as I just tried to verify that it was still OK. Same results as my new install.

    The 1.3.8a is on a different host than the 1.3.7 site.
    try TM 1.5.1 on your 1.3.8a site.

  3. #1063
    Join Date
    Feb 2007
    Location
    Burleson. Texas
    Posts
    194
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    try TM 1.5.1 on your 1.3.8a site.

    Thanks Clyde,

    This is really strange!

    Think I figured out the culprit. Looks like it's partly AOL. They probably consider any rapidly sequencial emails as spam and block them.

    I changed all of my contact #'s to a different email server and now I get the owners notification that it is pending a review.

    I don't get the user notification or the update one (thats still through AOL) and I don't have any other idea as to the why's, but I can live with that. I will at least be able to review and activate them now!

    I really do hate AOL, but I had it for so long for my personal email that I don't want to change.

    It has really been a crap shoot trying to isolate this problem. I thank you for your time and effort!
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

  4. #1064
    Join Date
    Dec 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hello.

    I have just uploaded the Testimonial Manager and thank you for the contribution. Everything seems to be working fine except that on the display all testimonials page the meta tag says: META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS and is not displaying the correct information.

    Any help with this would be greatly appreciated.

    Thank You.

  5. #1065
    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 guitarstore View Post
    Hello.

    I have just uploaded the Testimonial Manager and thank you for the contribution. Everything seems to be working fine except that on the display all testimonials page the meta tag says: META_TAG_TITLE_PAGE_TESTIMONIALS_MANAGER_ALL_TESTIMONIALS and is not displaying the correct information.

    Any help with this would be greatly appreciated.

    Thank You.
    Here's the instruction from the install_testimonial_manager.txt file

    This section is entirely optional.
    to implement metatags for your testimonials;
    open includes/modules/meta_tags.php.
    locate the following line of code (around line 336)
    // NO "break" here. Allow defaults if not overridden at the per-page level
    Immediately above this line copy and paste the code below.
    (save the edited file to includes/modules/YOUR_TEMPLATE/meta_tags.php and upload to your server.

    break;
    //TESTIMONIALS:
    case 'display_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']);

  6. #1066
    Join Date
    Dec 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hi Clyde.

    Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.

    Thanks for your assistance.

  7. #1067
    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 guitarstore View Post
    Hi Clyde.

    Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.

    Thanks for your assistance.
    link to your site?

  8. #1068
    Join Date
    Dec 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    s e l a n e g u i t a r s t o r e . c o m

  9. #1069
    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 guitarstore View Post
    Hi Clyde.

    Thanks for your reply. Yes, I had already put that in and just put it in again and still the same. When I go to add Testimonial that page displays fine "Add my testimonial" but the other page does not.

    Thanks for your assistance.
    try removing the highlighted portions and see if that helps.

    //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']);

  10. #1070
    Join Date
    Dec 2009
    Posts
    28
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Sorry that didn't seem to work either

 

 

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