Results 1 to 10 of 1501

Hybrid View

  1. #1
    Join Date
    Jan 2006
    Location
    Kentwood, Louisiana, United States
    Posts
    117
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Dear Clyde,

    >You can see how the testimonials look with images here:
    http://mysticmountainnaturals.com/te...l_testimonials

    I see on your test site that your quote images are showing up and the image in the middle too. But now on my site the quote images have disappeared. But it looks OK with or without them.

    http://www.horse-logos.com/testimoni...timonials.html

    The quote images were showing up before I added the new custom image code.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by jonisolis View Post
    Dear Clyde,

    >You can see how the testimonials look with images here:
    http://mysticmountainnaturals.com/te...l_testimonials

    I see on your test site that your quote images are showing up and the image in the middle too. But now on my site the quote images have disappeared. But it looks OK with or without them.

    http://www.horse-logos.com/testimoni...timonials.html

    The quote images were showing up before I added the new custom image code.
    What is the size of your quote images?

  3. #3
    Join Date
    Jan 2006
    Location
    Kentwood, Louisiana, United States
    Posts
    117
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    36 px wide x 24 px high are my quote images in size.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by jonisolis View Post
    36 px wide x 24 px high are my quote images in size.
    Try working with the padding

    blockquote div {
    padding:38px 56px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    testimonials_manager.css

    testimonials_manager_all_testimonials.css

    Change them in increments of 10.

    See if that helps

  5. #5
    Join Date
    Jan 2006
    Location
    Kentwood, Louisiana, United States
    Posts
    117
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    I tried a bunch of different padding sizes but the quote images never did show up again.

    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    to

    blockquote div {
    padding:108px 106px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    But it is OK; it looks good with or with out the quote images.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by jonisolis View Post
    I tried a bunch of different padding sizes but the quote images never did show up again.

    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    to

    blockquote div {
    padding:108px 106px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    But it is OK; it looks good with or with out the quote images.
    One other thing you could try (although you might not want to) is to reduce the logo images by half.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by jonisolis View Post
    Dear Clyde,

    WOW, you are so sweet to do this custom work for me. I do hope many other people will find your custom work helpful for their sites. They could add a photo of the person leaving the testimonial. That is suppose to make the testimonial more believable.

    I did notice that if I have to re-edit a testimonial that the URL disappears and then I have to edit it again and add the URL back in the URL spot.

    http://www.horse-logos.com/testimoni...timonials.html
    Here's a fix for this.

    open admin/testimonials_manager.php

    Find this line of code (around line 185)

    Code:
    <td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($iInfo->testimonials_url) ? $iInfo->testimonials_url : 'http://', 'maxlength="255"', true); ?></td>
    change it as follows
    Code:
    <td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($bInfo->testimonials_url) ? $bInfo->testimonials_url : 'http://', 'maxlength="255"', true); ?></td>
    Save the file and upload to your server

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by jonisolis View Post
    I tried a bunch of different padding sizes but the quote images never did show up again.

    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    to

    blockquote div {
    padding:108px 106px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    But it is OK; it looks good with or with out the quote images.
    one other thing crossed my mind.

    What is the file name for your quote image(s)?

  9. #9
    Join Date
    Jan 2006
    Location
    Kentwood, Louisiana, United States
    Posts
    117
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Dear Clyde, maybe that is part of my problem - I don't see the testimonials_manager.php file under admin: admin/testimonials_manager.php

    I do have a file named: testimonials_manager.php here...
    admin\includes\languages\english\testimonials_manager.php

    but it doesn't have a 185 line that reads:
    <td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($iInfo->testimonials_url) ? $iInfo->testimonials_url : 'http://', 'maxlength="255"', true); ?></td>

    here is it:

    <?php
    //
    // +----------------------------------------------------------------------+
    // |zen-cart Open Source E-commerce |
    // +----------------------------------------------------------------------+
    // | Copyright (c) 2003 The zen-cart developers |
    // | |
    // | http://www.zen-cart.com/index.php |
    // | |
    // | Portions Copyright (c) 2003 osCommerce |
    // +----------------------------------------------------------------------+
    // | This source file is subject to version 2.0 of the GPL license, |
    // | that is bundled with this package in the file LICENSE, and is |
    // | available through the world-wide-web at the following url: |
    // | http://www.zen-cart.com/license/2_0.txt. |
    // | If you did not receive a copy of the zen-cart license and are unable |
    // | to obtain it through the world-wide-web, please send a note to |
    // | [email protected] so we can mail you a copy immediately. |
    // +----------------------------------------------------------------------+
    // Original contrib by Vijay Immanuel for osCommerce, converted to zen by [email protected] - http://www.open-operations.com
    // $Id: links_manager.php 2006-12-22 Clyde Jones
    //

    define('HEADING_TITLE', 'Testimonials Manager');
    define('TABLE_HEADING_TESTIMONIALS', 'Testimonials Title');
    define('TABLE_HEADING_NAME', 'Testimonials Name');
    define('TABLE_HEADING_MAIL', 'Testimonials Mail');
    define('TABLE_HEADING_ACTION', 'Action');
    define('TABLE_HEADING_SORT_ORDER', 'Sort Order');
    define('TEXT_TESTIMONIALS_TITLE', 'Testimonials Title:');
    define('TEXT_TESTIMONIALS_NAME', 'Testimonials Name:');
    define('TEXT_TESTIMONIALS_URL', 'Testimonials URL:');
    define('TEXT_TESTIMONIALS_MAIL', 'Testimonials Mail:');
    define('TEXT_TESTIMONIALS_HTML_TEXT', 'Testimonials:');
    define('TABLE_HEADING_DATE_ADDED', 'Date Added:');
    define('TEXT_TESTIMONIALS_STATUS_CHANGE', 'Status Change: &#37;s');
    define('TEXT_INFO_DELETE_INTRO', 'Are you sure you want to delete this Testimonial?');
    define('SUCCESS_PAGE_INSERTED', 'Success: The Testimonial has been inserted.');
    define('SUCCESS_PAGE_UPDATED', 'Success: The Testimonial has been updated.');
    define('SUCCESS_PAGE_REMOVED', 'Success: The Testimonials item has been removed.');
    define('SUCCESS_PAGE_STATUS_UPDATED', 'Success: The status of the Testimonial item has been updated.');
    define('ERROR_PAGE_TITLE_REQUIRED', 'Error: Testimonials title required.');
    define('ERROR_UNKNOWN_STATUS_FLAG', 'Error: Unknown status flag.');
    define('TABLE_HEADING_STATUS', 'Status');
    define('TEXT_DISPLAY_NUMBER_OF_TESTIMONIALS', 'Displaying <b>%d</b> to <b>%d</b> (of <b>%d</b> testimonials items)');
    define('IMAGE_NEW_PAGE', 'New Testimonials Item');
    define('TEXT_INFO_PAGE_IMAGE', 'Image');
    define('TEXT_INFO_CURRENT_IMAGE', 'Current Image:');
    ?>

 

 

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 262
    Last Post: 26 Jun 2025, 10:42 AM
  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

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