Page 119 of 151 FirstFirst ... 1969109117118119120121129 ... LastLast
Results 1,181 to 1,190 of 1501
  1. #1181
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by gbengoose View Post
    I've fixed the View All and Add Testimonials links but still need help with the .php in the link.
    All Fixed. Please ignore my previous posts.

  2. #1182
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread



    How can move the Add My Testimonial text? I looked at the php file but I dont know how to move it down with code.

  3. #1183
    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 gbengoose View Post


    How can move the Add My Testimonial text? I looked at the php file but I dont know how to move it down with code.
    try adding the following rule to includes/templates/YOUR_TEMPLATE/css/testimonials_add.css

    #testimonialDefault h1 {
    margin:10px 0;
    }

  4. #1184
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    try adding the following rule to includes/templates/YOUR_TEMPLATE/css/testimonials_add.css

    #testimonialDefault h1 {
    margin:10px 0;
    }
    Perfetct!!! Thanks

    How do I remove the quotation marks and box that surrounds the testimonial?

  5. #1185
    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 gbengoose View Post
    Perfetct!!! Thanks

    How do I remove the quotation marks and box that surrounds the testimonial?
    open includes/templates/YOUR_TEMPLATE/css
    testimonials_manager.css
    display_all_testimonials.css


    remove the image reference from the following rules

    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;
    height:1%;
    }

  6. #1186
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    open includes/templates/YOUR_TEMPLATE/css
    testimonials_manager.css
    display_all_testimonials.css


    remove the image reference from the following rules

    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;
    height:1%;
    }
    Perfect again!!

    How do I get the name, state and all the other info of the person that wrote the testimonial inside the box?

  7. #1187
    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 gbengoose View Post
    Perfect again!!

    How do I get the name, state and all the other info of the person that wrote the testimonial inside the box?
    open includes/templates/YOUR_TEMPLATE/templates/
    tpl_testimonials_manager_default.php
    tpl_display_all_testimonials_default.php


    find the following section of code:
    PHP Code:
    </blockquote>
      
    <?php
    $testimonial_info 
    '';
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR $page_check->fields[testimonials_country];
    }
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city];
    }
    if ( (empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_country];
    }
    if (!empty(
    $page_check->fields[testimonials_company])) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_company];
    }
    ?>
    and replace with the following:
    PHP Code:
    <?php
    $testimonial_info 
    '';
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR $page_check->fields[testimonials_country];
    }
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city];
    }
    if ( (empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_country];
    }
    if (!empty(
    $page_check->fields[testimonials_company])) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_company];
    }
    ?>
    </blockquote>

  8. #1188
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    I replaced the block of code but it didnt change it. Customers info is still outside the box.

    http://www.internationalentertainmen...l_testimonials

  9. #1189
    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 gbengoose View Post
    I replaced the block of code but it didnt change it. Customers info is still outside the box.

    http://www.internationalentertainmen...l_testimonials
    my error, I neglected to include a line of code.

    The following is the correct section of code place it immediately above the closing </blockquote>
    PHP Code:
    <?php
    $testimonial_info 
    '';
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR $page_check->fields[testimonials_country];
    }
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city];
    }
    if ( (empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_country];
    }
    if (!empty(
    $page_check->fields[testimonials_company])) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_company];
    }
    ?>
      
    <div class="buttonRow back"><?php echo TESTIMONIALS_BY?> <?php echo $page_check->fields[testimonials_name] . $testimonial_info?>
    </div>

  10. #1190
    Join Date
    Jul 2010
    Posts
    101
    Plugin Contributions
    0

    Default Re: Testimonial Manager Support Thread

    Quote Originally Posted by clydejones View Post
    my error, I neglected to include a line of code.

    The following is the correct section of code place it immediately above the closing </blockquote>
    PHP Code:
    <?php
    $testimonial_info 
    '';
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city] . CITY_STATE_SEPARATOR $page_check->fields[testimonials_country];
    }
    if ( (!empty(
    $page_check->fields[testimonials_city])) and (empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_city];
    }
    if ( (empty(
    $page_check->fields[testimonials_city])) and (!empty($page_check->fields[testimonials_country])) ) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_country];
    }
    if (!empty(
    $page_check->fields[testimonials_company])) {
    $testimonial_info .= NAME_SEPARATOR $page_check->fields[testimonials_company];
    }
    ?>
      
    <div class="buttonRow back"><?php echo TESTIMONIALS_BY?> <?php echo $page_check->fields[testimonials_name] . $testimonial_info?>
    </div>
    I put the new block of code in and it now leaves out the name and city. should I be including something else?

 

 

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