Page 86 of 151 FirstFirst ... 3676848586878896136 ... LastLast
Results 851 to 860 of 1501
  1. #851
    Join Date
    Oct 2006
    Posts
    225
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by kevinc66 View Post
    To get folks to submit real testimonials, there must be something to write about. Maybe your excelent customer service or perhaps your products help them solve their daily problems.
    I pride myself in quick response and great customer service. In the years that I have been doing this and the hundreds of orders I've filled, I have only received a handful of compliments and even fewer complaints.

    I do plenty of purchases online and have never felt compelled to submit a testimonial. What I normally do is just continue to frequent the sites that provide good service. I would think in order to get folks to submit testimonials you'd almost have to ask them to do them rather than hope someone takes time out of their busy day to praise your site.

    Do you guys get tons of submissions without prompting customers to review their experience shopping with you?
    Visit my Decal website: DecalDepot.net

  2. #852
    Join Date
    Mar 2008
    Posts
    332
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    I find that it is rare that customers will actually click on the testimonials and enter their comments on there. It was not until I found kampyle.com that provided a feedback button and a "push" that asks customers if they want to participate in a short 1 minute feedback that I started to actually get customer feedback and comments. I used those comments to manually enter the testimonial into the module.

    Used to be that kamplye was free to use, but now they charge a subscription fee. It is still free up until 25 feedbacks in a month and they removed all other info that you can get from the customers like location, browser etc. However it is still a useful way to get testimonials from customers.


    Quote Originally Posted by dinki View Post
    I pride myself in quick response and great customer service. In the years that I have been doing this and the hundreds of orders I've filled, I have only received a handful of compliments and even fewer complaints.

    I do plenty of purchases online and have never felt compelled to submit a testimonial. What I normally do is just continue to frequent the sites that provide good service. I would think in order to get folks to submit testimonials you'd almost have to ask them to do them rather than hope someone takes time out of their busy day to praise your site.

    Do you guys get tons of submissions without prompting customers to review their experience shopping with you?

  3. #853
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    in the install_testimonials_manager.txt file there is a section that says
    metatags

    //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;


    What does this do, and what file does it go into?
    Lextechs.com Powered By ZenCart

  4. #854
    Join Date
    Feb 2007
    Location
    Burleson. Texas
    Posts
    194
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Hi,

    Good job Clyde!

    Did a fresh zen install this morning and downloaded your add-on. Got it to work with little effort but I did notice several small items.

    The image size variable changes what is seen everywhere, even in the sidebox. If you set it to where is fits the sidebox, then it is almost too small to be useful elsewhere.

    There may be an issue with hiding the name, city, etc. on the testimonial page(s). I turned them off in config. and nothing changed in either the All Testimonials or on the single testimonial screens. If it is working right for you, then maybe something went haywire with my install.

    Also, on my install, the view page link (the little icon) does not seem to work under the tools section. My screen flashes but that is about all that happens. I checked my pop-up blocker and that's not the problem. Again, I couldn't swear that it isn't something that I did in tweaking, but most of what I did was in css. If yours works fine, then I will need to recheck everything.

    BTY, I love your town (if you are still in the Springs, that is)! Worked in Denver several years and made a few trips down your way. Enjoyed the 90 mile jaunt!

    Just another Jones
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

  5. #855
    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
    Hi,

    Good job Clyde!

    Did a fresh zen install this morning and downloaded your add-on. Got it to work with little effort but I did notice several small items.

    The image size variable changes what is seen everywhere, even in the sidebox. If you set it to where is fits the sidebox, then it is almost too small to be useful elsewhere.

    There may be an issue with hiding the name, city, etc. on the testimonial page(s). I turned them off in config. and nothing changed in either the All Testimonials or on the single testimonial screens. If it is working right for you, then maybe something went haywire with my install.

    Also, on my install, the view page link (the little icon) does not seem to work under the tools section. My screen flashes but that is about all that happens. I checked my pop-up blocker and that's not the problem. Again, I couldn't swear that it isn't something that I did in tweaking, but most of what I did was in css. If yours works fine, then I will need to recheck everything.

    BTY, I love your town (if you are still in the Springs, that is)! Worked in Denver several years and made a few trips down your way. Enjoyed the 90 mile jaunt!

    Just another Jones
    Do you have a link to the site where you have Testimonial Manager installed?

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

    Default Re: Testimonial Manager Support Thread

    Check here for information on how to implement this:


    Quote Originally Posted by lextechs View Post
    in the install_testimonials_manager.txt file there is a section that says
    metatags

    //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;


    What does this do, and what file does it go into?

  7. #857
    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
    Do you have a link to the site where you have Testimonial Manager installed?
    I was playing with the purpose, just to see if it was feasible to use it as a psuedo ads mgmt sys. The link is


    http://www.stamphelp.info/stamphelp/

    As I said, the name, country, etc is turned off in config but the info still shows.

    Thanks for looking.

    DJ
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

  8. #858
    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
    I was playing with the purpose, just to see if it was feasible to use it as a psuedo ads mgmt sys. The link is


    http://www.stamphelp.info/stamphelp/

    As I said, the name, country, etc is turned off in config but the info still shows.

    Thanks for looking.

    DJ
    Turning off the country, state, company in admin -> configuration -> testimonial manager only keeps those fields from showing on the testimonial submission form.
    If that information is already present in the database table then it will be displayed.

    By default, The Ads By: NAME will display at all times.

    make sure you've uploaded the following stylesheets
    testimonials_manager.css
    testimonials_add.css
    display_all_testimonials.css

    Also add the following declarations to your stylesheet.css

    .testimonial {
    color: #000;
    padding: 0 5px 5px 5px;
    text-align:left;
    }
    .testimonial p {
    margin: 0; padding: 5px 0;
    }
    .testimonial span {
    float:right;
    }
    .testimonialImage {
    margin: 0;
    padding: 0;
    text-align: center;
    }

  9. #859
    Join Date
    Mar 2005
    Location
    Tempe, AZ
    Posts
    324
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    You the man Clyde Thanks again for you help
    Lextechs.com Powered By ZenCart

  10. #860
    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
    Turning off the country, state, company in admin -> configuration -> testimonial manager only keeps those fields from showing on the testimonial submission form.
    If that information is already present in the database table then it will be displayed.

    By default, The Ads By: NAME will display at all times.

    make sure you've uploaded the following stylesheets
    testimonials_manager.css
    testimonials_add.css
    display_all_testimonials.css

    Also add the following declarations to your stylesheet.css

    .testimonial {
    color: #000;
    padding: 0 5px 5px 5px;
    text-align:left;
    }
    .testimonial p {
    margin: 0; padding: 5px 0;
    }
    .testimonial span {
    float:right;
    }
    .testimonialImage {
    margin: 0;
    padding: 0;
    text-align: center;
    }

    They were already there. Been trying to get things centered up using those css files but so far no luck. That's one of my knit picks is to have things not centered on a page or in a box. Not really up on css yet so I've been fighting it all afternoon. Tried the old html and it worked on the titles but I guess the options in css are overriding most any html that I try to use.

    That was good to know about those fields. I didn't even try to add another after I turned them off, or I might had noticed what happened and saved a question. Guess I need a crash course on css, if I can find one somewhere.

    Thanks again,
    DJ
    Dennis
    www.stampdays.com
    Over 80,000 stamps and still growing!

 

 

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