Page 15 of 26 FirstFirst ... 5131415161725 ... LastLast
Results 141 to 150 of 258
  1. #141
    Join Date
    Oct 2005
    Location
    Chicago, IL USA
    Posts
    1,557
    Plugin Contributions
    28

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by jcrewe View Post
    Hi there :)

    I'm hoping someone might be able to help me with an issue I just noticed. I'm using ZC version 1.5.4. The quotes on my testimonials are HUGE! So big that they cover part of the testimonial text. Any way to either make these smaller or remove them all together?

    Thanks :)
    The quotes are image files. Replace them with smaller images.

  2. #142
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by jcrewe View Post
    Hi there :)

    I'm hoping someone might be able to help me with an issue I just noticed. I'm using ZC version 1.5.4. The quotes on my testimonials are HUGE! So big that they cover part of the testimonial text. Any way to either make these smaller or remove them all together?

    Thanks :)

    Try this download includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default.php
    Go down to line 49 and replace:

    PHP Code:
    <div class="testimonial"
    with

    PHP Code:
    <div id="testimonial"
    See if that will solve your problem.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  3. #143
    Join Date
    Jul 2011
    Posts
    107
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by countrycharm View Post
    Try this download includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default.php
    Go down to line 49 and replace:

    PHP Code:
    <div class="testimonial"
    with

    PHP Code:
    <div id="testimonial"
    See if that will solve your problem.
    Thanks, Countrycharm! While the quotes are still on the large size, at least they are no longer impeding on the actual testimonial so now it's all legible :)

  4. #144
    Join Date
    Jan 2007
    Location
    Los Angeles, California, United States
    Posts
    10,023
    Plugin Contributions
    32

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by jeking View Post
    The quotes are image files. Replace them with smaller images.
    IMHO, this is the BEST solution.. One of these days I gonna look into an option to replace the images with an Awesome Font glyph.. or even a Google Fonts quote..
    Quote Originally Posted by countrycharm View Post
    Try this download includes/templates/YOUR_TEMPLATE/templates/tpl_display_all_testimonials_default.php
    Go down to line 49 and replace:

    PHP Code:
    <div class="testimonial"
    with

    PHP Code:
    <div id="testimonial"
    See if that will solve your problem.
    Or.. one could adjust the CSS for the class to reflect whatever the CSS for the ID is..
    Last edited by DivaVocals; 3 Sep 2015 at 04:32 PM.
    My Site - Zen Cart & WordPress integration specialist
    I don't answer support questions via PM. Post add-on support questions in the support thread. The question & the answer will benefit others with similar issues.

  5. #145
    Join Date
    Oct 2015
    Location
    Cornwall, UK
    Posts
    41
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Hi Everyone.

    I've been using this plugin for years & love it. I've found a weird problem with mine though. Googlebot & bingbot amongst others cannot see the sidebox on my homepage. Fine on every other page of my website but the homepage shows all sideboxes with the exception of Testimonials Manager. You can see this if you look at my homepage www.koolbadges.co.uk in googles cache. I can't for the life of me figure out why it doesn't display on the homepage but is fine on every other page. Your input would be much appreciated.

    If you fetch as bingbot or googlebot in webmater tools you will see it simply doesn't render.

    Thanks in advance

  6. #146
    Join Date
    Jan 2012
    Posts
    89
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    I am getting spam testimonials even though I have set 'Only registered customers may submit a testimonial', when I look at the customer submitting it I can't find it in my customer database, how is this happening, I tried to submit a testimonial the system tells me you need to be registered.

    Any idea why how to fix this issue, I have google captcha but it's not set up for testimonials.

    Any suggestions?

  7. #147
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Not sure why I didn't see this before, but I just finished updating my form layout and did a test. Got an error to pop-up even through all worked as expected.

    Server OS: Linux
    Database: MySQL 5.6.23
    PHP Version: 5.4.45

    error log states at line 13, PHP Warning: mysql_insert_id(): Access denied for user

    in /includes/modules/pages/testimonials_add/header_php.php look for the following three lines

    Code:
    13  require(DIR_WS_FUNCTIONS . 'testimonials.php');
    
    29  $testimonials_id = zen_db_prepare_input($_POST['testimonials_id']);
    
    93  $testimonials_id = zen_db_insert_id();
    you can comment them out or delete all three lines, no need for them. If for some reason you want to keep the id, use
    Code:
    $db->Insert_ID()
    instead of
    zen_db_insert_id()
    you can Remove the file /functions/testimonials.php it's not needed and calls to mysql_insert_id() which creates the error. This may not be an issue with older PHP versions.
    Dave
    Always forward thinking... Lost my mind!

  8. #148
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    You don't say which version of Zen Cart you're using, but having that direct mysql_ function call isn't going to "play nice" with Zen Cart v1.5.2 or later (since those later versions use mysqli_ function calls).

  9. #149
    Join Date
    Dec 2007
    Location
    Payson, AZ
    Posts
    1,076
    Plugin Contributions
    15

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by lat9 View Post
    You don't say which version of Zen Cart you're using, but having that direct mysql_ function call isn't going to "play nice" with Zen Cart v1.5.2 or later (since those later versions use mysqli_ function calls).
    Zen Cart 1.5.4

    Missed adding that bit... the id is not used at all in the way the code is asking, so removing it completely wouldn't heart anything even for later versions.
    Dave
    Always forward thinking... Lost my mind!

  10. #150
    Join Date
    Sep 2009
    Location
    Stuart, FL
    Posts
    12,478
    Plugin Contributions
    88

    Default Re: Testimonial Manager Support Thread (for ZC v1.5.x)

    Quote Originally Posted by davewest View Post
    Zen Cart 1.5.4

    Missed adding that bit... the id is not used at all in the way the code is asking, so removing it completely wouldn't heart anything even for later versions.
    FWIW, that's what I've been doing on installations that require this plugin.

 

 
Page 15 of 26 FirstFirst ... 5131415161725 ... LastLast

Similar Threads

  1. Link Manager 3.0 Support Thread
    By clydejones in forum Addon Sideboxes
    Replies: 1987
    Last Post: 6 Aug 2021, 02:56 PM
  2. Testimonial Manager Support Thread
    By clydejones in forum All Other Contributions/Addons
    Replies: 1500
    Last Post: 4 Feb 2021, 04:12 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