Results 1 to 10 of 1501

Hybrid View

  1. #1
    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?

  2. #2
    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%;
    }

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

  4. #4
    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>

  5. #5
    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

  6. #6
    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>

  7. #7
    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: 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