Page 11 of 151 FirstFirst ... 9101112132161111 ... LastLast
Results 101 to 110 of 1501
  1. #101
    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.

  2. #102
    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

  3. #103
    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)?

  4. #104
    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:');
    ?>

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

    Default Re: Testimonial Manager 1.3.7

    Quote image names:

    lftquote.png and rgtquote.png

    and there are here: includes\templates\apple_zen\images

  6. #106
    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, maybe that is part of my problem - I don't see the testimonials_manager.php file under admin: admin/testimonials_manager.php
    double check the custom ZIP file I provided; there should be an admin folder which you should have uploaded.

    If you uploaded it then testimonials_manager.php should be in your admin folder.

    You wouldn't have the necessary options under admin -> tools -> Testimonial Manager otherwise.

  7. #107
    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
    Quote image names:

    lftquote.png and rgtquote.png

    and there are here: includes\templates\apple_zen\images
    AAH HAH!

    Thats why they aren't showing up.

    open

    testimonials_manager_all_testimonials.css

    and

    testimonials_manager.css

    change the following declarations

    blockquote {
    margin:0 !important;
    padding:0 !important;
    background: url(../images/lftblockquote.png) top left no-repeat;
    border:1px solid navy;
    height:1%;
    }

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

    change the highlighted portions so they match your quote image filenames

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

    Default Re: Testimonial Manager 1.3.7

    testimonials_manager.css

    here is the coding...(the names are already correct)

    #testimonialDefault{margin:0 5px;padding:8px;font-size:1.2em;text-align:left;}
    #testimonialDefault h1{margin:0;padding:10px 0;font-size:1.5em;font-weight:700;}

    blockquote {
    margin:0 !important;
    padding:0 !important;
    background: url(../images/lftblockquote.png) top left no-repeat;
    height:1&#37;;
    }
    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    #testimonialImage {
    text-align: center;
    }

    -----------------
    testimonials_manager_all_testimonials.css


    #testimonialDefault{margin:0 5px;padding:8px;font-size:1.2em;text-align:left;}
    #testimonialDefault h1{margin:0;padding:10px 0;font-size:1.5em;font-weight:700;}

    blockquote {
    margin:0 !important;
    padding:0 !important;
    background: url(../images/lftblockquote.png) top left no-repeat;
    height:1%;
    }
    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    #testimonialImage {
    text-align: center;
    }

  9. #109
    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
    testimonials_manager.css

    here is the coding...(the names are already correct)

    #testimonialDefault{margin:0 5px;padding:8px;font-size:1.2em;text-align:left;}
    #testimonialDefault h1{margin:0;padding:10px 0;font-size:1.5em;font-weight:700;}

    blockquote {
    margin:0 !important;
    padding:0 !important;
    background: url(../images/lftblockquote.png) top left no-repeat;
    height:1%;
    }
    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    #testimonialImage {
    text-align: center;
    }

    -----------------
    testimonials_manager_all_testimonials.css


    #testimonialDefault{margin:0 5px;padding:8px;font-size:1.2em;text-align:left;}
    #testimonialDefault h1{margin:0;padding:10px 0;font-size:1.5em;font-weight:700;}

    blockquote {
    margin:0 !important;
    padding:0 !important;
    background: url(../images/lftblockquote.png) top left no-repeat;
    height:1%;
    }
    blockquote div {
    padding:8px 6px;
    background: url(../images/rgtblockquote.png) bottom right no-repeat;
    height:1%;
    }

    #testimonialImage {
    text-align: center;
    }
    Look closely at the highlighted portions and compare them to your quote image filenames. ( lftquote.png and rgtquote.png )

  10. #110
    Join Date
    Jul 2006
    Posts
    248
    Plugin Contributions
    0

    Default Re: Testimonial Manager 1.3.7

    Hi there,

    I've uploaded testimonials manager and have a problem! None of the text is displaying correctly.

    Here is a link to my page: http://www.handcrafteduk.com/

    Would it be because I am using 1.3.6? I'm scared up upgrading!!!

 

 
Page 11 of 151 FirstFirst ... 9101112132161111 ... LastLast

Similar Threads

  1. v150 Testimonial Manager Support Thread (for ZC v1.5.x)
    By countrycharm in forum All Other Contributions/Addons
    Replies: 257
    Last Post: 7 Mar 2023, 03:40 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