Page 15 of 151 FirstFirst ... 513141516172565115 ... LastLast
Results 141 to 150 of 1501
  1. #141
    Join Date
    Apr 2007
    Posts
    8
    Plugin Contributions
    0

    Idea or Suggestion On Hints and Tips

    Wow, it looks great, Clyde!

    Exactly the kind of stuff I was looking for!
    Thx for the contribution.

    -Alex

  2. #142
    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 alexlee View Post
    Wow, it looks great, Clyde!

    Exactly the kind of stuff I was looking for!
    Thx for the contribution.

    -Alex
    I'll upload it to the downloads section (other modules) should be available there in a day or two.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    Here you go.

    as alwasy, unzip the file.

    rename the YOUR_TEMPLATE folder(s) to match your custom folder name.

    upload the entire includes folder to your server

    Attachment 1749
    >text, "View All Testimonials" can this text and link be added to the bottom of each single testimonial page?

    Dear Clyde, I downloaded and installed the zip file and now the text, "View All Testimonials" is showing up on the testimonial pages. Thank you so much for all your help!

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    Open the "testimonial *.css" stylesheets both of them.

    find the following declaration and make the changes highlighted in red

    #testimonialImage {
    margin: 0;
    padding: 0 0 10px 0;

    text-align: center;
    }

    Change the 10px if you want more space.
    Dear Clyde, I did try that before but for some reason the space shows up in the sidebox but not in the testimonial pages. View this page:
    http://www.horse-logos.com/testimoni...ls.html?page=4

    Could it be that I need to add <P> before the testimonial text when I enter it?
    I am not too good with figuring out CSS stuff.

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

    Default Re: Testimonial Manager 1.3.7

    Dear Clyde, I am having a problem that is showing up in both IE and Firefox when I click to go on to page 2 of the testimonial list here: http://www.horse-logos.com/admin/tes...nials=2&bID=18

    What is happening is that the Testimonials Manager info table is spreaing across the whole PC screen and there is no edit box on the right hand side of the page.

    This page shows up fine: http://www.horse-logos.com/admin/tes...ger.php?page=2

    BUT when I click on a name to select it to edit then the page opens without the edit box (edit and delete box). Can you check into this. Thanks!

    I have three pages of testimonials - total of 42.

  6. #146
    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, I did try that before but for some reason the space shows up in the sidebox but not in the testimonial pages. View this page:
    http://www.horse-logos.com/testimoni...ls.html?page=4

    Could it be that I need to add <P> before the testimonial text when I enter it?
    I am not too good with figuring out CSS stuff.
    From what I can see, this declaration is conflicting with the sidebox and the page. I've indicated the change to make in red

    From stylesheet.css
    #testimonialImage {
    margin: 0;
    padding: 4px 0 0 0;
    text-align: center;
    }

    Change this as follows:
    .testimonialImage {
    margin: 0;
    padding: 4px 0 0 0;
    text-align: center;
    }



    From testimonials_manager_all_testimonials.css
    This one you don't have to change.
    #testimonialImage {
    margin: 0;
    padding: 0 0 10px 0; /* change the 10px to get more spacing*/
    text-align: center;
    }

    The only other change to make is to open
    includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

    find the following code:
    <p id="testimonialImage">

    and change it as follows:
    <p class="testimonialImage">

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

    Default Re: Testimonial Manager 1.3.7

    When I am on page 2 of the Testimonial Manager in the Zen Cart Admin and click on a name to select it I am brought back to page one of the name list. But then if I click to go back to page 2 the right name has been selected and I can then edit it. Strange.

  8. #148
    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, I am having a problem that is showing up in both IE and Firefox when I click to go on to page 2 of the testimonial list here: http://www.horse-logos.com/admin/tes...nials=2&bID=18

    What is happening is that the Testimonials Manager info table is spreaing across the whole PC screen and there is no edit box on the right hand side of the page.

    This page shows up fine: http://www.horse-logos.com/admin/tes...ger.php?page=2

    BUT when I click on a name to select it to edit then the page opens without the edit box (edit and delete box). Can you check into this. Thanks!

    I have three pages of testimonials - total of 42.
    I don't have access to your admin panel.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    From what I can see, this declaration is conflicting with the sidebox and the page. I've indicated the change to make in red

    From stylesheet.css
    #testimonialImage {
    margin: 0;
    padding: 4px 0 0 0;
    text-align: center;
    }

    Change this as follows:
    .testimonialImage {
    margin: 0;
    padding: 4px 0 0 0;
    text-align: center;
    }



    From testimonials_manager_all_testimonials.css
    This one you don't have to change.
    #testimonialImage {
    margin: 0;
    padding: 0 0 10px 0; /* change the 10px to get more spacing*/
    text-align: center;
    }

    The only other change to make is to open
    includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

    find the following code:
    <p id="testimonialImage">

    and change it as follows:
    <p class="testimonialImage">
    Dear Clyde, now I don't need the 10px padding. I have the following code in the two testimonial css files:

    #testimonialImage {
    margin: 0;
    text-align: center;
    }

    The problem must have been the <p class thing.

    Thanks for the help with this.

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

    Default Re: Testimonial Manager 1.3.7

    Quote Originally Posted by clydejones View Post
    I don't have access to your admin panel.
    Anyone else have more than 20 testimonials? Testimonial Manager second and third page working/showing up OK for you when you tried to edit?

 

 

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