One other thing you could try (although you might not want to) is to reduce the logo images by half.
Printable View
Here's a fix for this.
open admin/testimonials_manager.php
Find this line of code (around line 185)
change it as followsCode:<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>
Save the file and upload to your serverCode:<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>
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: %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:');
?>
Quote image names:
lftquote.png and rgtquote.png
and there are here: includes\templates\apple_zen\images
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.
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
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;
}
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!!! :blush:
Sorted it!
Added this into the stylesheet:
#testimonials-managerContent {
padding: 0em; margin-bottom: 0em; line-height: 1em; font-weight: bold}
#testimonials-managerContent a:hover{
color: #ffffff;
background-color: #494a44;
}
And, I know....I'll have to upgrade someday!!!! :smile:
Dear Clyde,
I don't know how you put up with me! I figured both things out and now my URLs are staying put and my quote images are showing up. I guess I shouldn't try to fix things when I am tried and sleepy.
Now I need your help adjusting the padding around the text so that the quote image do not over lap the text when I don't have a logo image at the top.
http://www.horse-logos.com/testimoni...timonials.html
Me again!
I've got the module working perfectly now - Thank you :-)
I have downloaded the special mod you did where I could upload an image to the testimonial. However, I'ved noticed that, should I need to delete an image I am unable to do so. Where are the images saved? I could then go in and delete it manually!
Also, although the image is displayed on the testimonials page is there any way of getting it to show in the sidebox? (Above all the writing)
gary :smile:
OK I figure out the padding thing and now the quote images are not touching the text. Thanks for all your wonderful and fast help Clyde!
By the way, if you do make a way to put the image in the sidebox I would need a way to post a smaller image for that spot or have it resize it self.
The filename is stored in the database table (_testimonials_manager)
I'll work on adding a switch to enable a delete option.
Possible, yes. It will require some work to get the image to re-size to fit the sidebox.Quote:
Also, although the image is displayed on the testimonials page is there any way of getting it to show in the sidebox? (Above all the writing)
HandcraftedUK, jonisolis,
Here's the image handling update for Testimonial Manager.
Unzip the file.
Change the YOUR_TEMPLATE folder(s) to match the name of your custom folder.
Upload both the admin and includes folders to your server.
Also add the following to your stylesheet.css
#testimonialImage {
margin: 0;
padding: 0;
text-align: center;
}
Note: the sidebox uses your small image height and width to scale the image to fit.
Attachment 1736
Thanks Clyde - that was brill :smile:
I do really love this zencart stuff. Everyone is so helpful. I would try to help out on the forums myself but I don't know even half of it!!!!
Gary :smile:
Glad to help.
WOW and Super WOW -- Clyde, how you do what you do! Looks great and works like a charm. Thank you so much for all your work on this special Zen addon. As soon as I have this cart making some money I am going to give you some.
By the way, how do I bold the text, "View All Testimonials"? And can this text and link be added to the bottom of each single testimonial page?
Add the following declaration to your stylesheet.cssQuote:
By the way, how do I bold the text, "View All Testimonials"?
.bettertestimonial {
font-weight: 700;
}
I'll create something for this and post back with the result (probably tomorrow)Quote:
And can this text and link be added to the bottom of each single testimonial page?
Dear Clyde, I would like to add just a bit more space between the bottom of the image and the top of the text on the testimonals pages.
http://www.horse-logos.com/testimoni...ls.html?page=3
Here you go.Quote:
Originally Posted by jonisolis
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
Hi Clyde, :smile:
Great stuff you have here -- a lot of potential.
Quick question: I'd like to have 2 of these sideboxes going on. One for testimonials, as usual; second for "usage tips" from users.
Say I'm selling rocks. The testimonial sidebox would say the usual stuff "great rocks! thx for the sale" etc. The Tips box would say something like "Here's a tip: I stack my flat rocks on top of my desk for great decorations."
How would I go about doing this?
Thx
-Alex
Hello Clyde
is your template are a standard zen cart template , or it is somthing you purchase some where?
i am looking to purchase a template similar to yours.
what i am looking is for template is wide page logo all across the top flyout catagories, puting teh ssl log and pay pal log in a box like yours
after strugling with my zen card for a while with no much sucsess i like to find a site that i can purchase template that will work with my zen cart
hope you read it and responed quick ( am over a week asking Q with out any answer)
thank you in advance
hi clyde
the one on your signature
http://mysticmountainnaturals.com/
Ty
Thx again clyd
I assume all this stuff make it what it look
Expanded Category List - Contact Information Sidebox - Logo Sidebox
Order Steps (Tableless) - Links Manager - Return Authorization - Testimonial Manager
am trying for over a week get some help on of the thinks you did my main issue is to expend my site like urs with out messing up the header logo, at this time whan my page wide shrink my right boxes go out of the page
any way you can direct me to where to do it right? like a step by step way
i truley like the zen classic cart , but just had hard time getting help in here on modify it. i dont even start on new stuff i try fix what i start already like what i say on top and the fly catgory issue ( dosent look right)
dont know if that te right approch but it is possible for you to publish your template, it will be an easy start for getting what i like and a short cut too lol
hope it is aint a rude request
thank you any way for your reply
Hi again
wow that will be great.
Tahnk You very much:smile:
Thank Youuuuu:clap:
that is very nice of you thank you again
Unzip the Package and upload the includes folder to your server.
In your admin panel, go to admin -> tools -> template selection click the edit button, choose the template from the dropdown menu and click update.
Now go to admin -> tools -> layout boxes controller Scroll down to the bottom of the screen and click the reset button.
Attachment 1776
Ty Clyde
i will do it later tonight whan the store not busy , can't wait to see it :smile:
again Thank You
hi
I just had to try it so i install it and that what i got
and whan i try open it on the web i got an error page
Parse error: syntax error, unexpected T_STRING in /home/tiledepo/public_html/store/includes/languages/english/mystic/index.php on line 61
i look in to it and i also change the store name to my title and still got some error
Open index.php and find line the following code (starting at line 61)
replace these lines with the following:PHP Code:
define('HEADING_TITLE', '<h1>Welcome to ' .STORE_NAME'</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
} elseif ($category_depth == 'nested') {
// this will also be used on Top Level
define('HEADING_TITLE', '<h1><h1>Welcome to ' .STORE_NAME'</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
PHP Code:
define('HEADING_TITLE', '<h1>Welcome to ' .STORE_NAME . '</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
} elseif ($category_depth == 'nested') {
// this will also be used on Top Level
define('HEADING_TITLE', '<h1><h1>Welcome to ' .STORE_NAME . '</h1>'); /*Replace this line with the headline you would like for your shop. For example: Welcome to My SHOP!*/
Tyyyyyyyy it work BUT
my whole site is a mess text over pics
boxes over text
mayby it not going to work for me , i sure like it ( not the color)
any way ty you so much for your help
I finished a Hints and Tips contribution (which, as I said, is basically a clone of Template Manager)
Here the description:
Hints Manager is Zen Cart 1.3.X compatible and allows users and shop administrators to add Hints and Tips. This version optionally allows administrators to add an image as well as a link to the author's site.
Features:
* Shop administrators can add an image as well as a link to the author's site
* Submission of Hints can be restricted to registered customers
* Random display of Hints in side box
* Display Hints title in sidebox
* Display Hints text in sidebox
* Display Hints submission date
You can see it in action here:
mysticmountainnaturals.com/testsite/index.php
I haven't put it in the downloads section yet.
The hints mod looks great!
Wow, it looks great, Clyde! :smile:
Exactly the kind of stuff I was looking for!
Thx for the contribution.
-Alex
>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!
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.
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.
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">
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.
>get me an SQL dump of your testimonial_manager table
How do I do that?
I will try to get to that tomorrow. Thanks for the info Clyde!
OK I am totally lost: I have Plesk 7.5.4 and I don't see any phpmyadmin
but it has all of this other stuff...
Domain Administration
This page give access to the administrative functions available for this domain.
The two icons that precede the domain name at the top of the page have the following meanings:
1. ok.gif: the left icon indicates the status of the domain. If the disk space or traffic limitations are exceeded under this domain, the icon will display as "!". The Plesk system evaluates traffic and disk space every 24 hours.
2. on.gif: the right icon indicates whether the domain is Enabled or Disabled. If a domain is turned off, it will not be provided with any service.
The buttons on this page help you perform the following operations:
Up Level Return to the previous page or go one level up in the Plesk system.
Enable/Disable Turn the domain on or off.
Report View and send by email a detailed domain report.
Limits Set the domain level limitations and domain validity period.
Preferences Change the 'www' prefix requirement for the domain, enable the webmail, and define the traffic statistics retention settings.
Domain Administrator Create a domain administrator's account or change its properties.
Extras Access additional domain tools (this option can be deactivated).
Backup Access the backup/restoring capabilities for the domain.
Custom Buttons Set up and manage multiple additional buttons that will be displayed in the control panel.
Mail Manage mailing service, create and manage e-mail accounts: POP3, redirects, groups, and autoresponders.
DNS Administer or check the DNS settings for the domain.
Databases Create and manage databases and database users.
Certificates Manage the certificates repository for the domain.
Tomcat Add and manage Tomcat web applications deployed on the domain.
Setup Set up the domain hosting and configure the hosting account.
Delete Delete the hosting configuration for this domain.
Web Users Set up additional web users for the domain (available only for physical hosting accounts).
Subdomains Create and manage subdomains (available only for physical hosting accounts).
Directories Create password-protected directories (available only for physical hosting accounts).
Anonymous FTP Manage anonymous FTP service on domain (available only for physical hosting accounts).
Log Manager Log files management and log rotation parameters adjustment (available only for physical hosting accounts).
File Manager Access to file manager control panel. Allows you to handle all your files and directories in a convenient way (available only for physical hosting accounts).
SSH Terminal Opens the terminal client to access your account at Plesk server over the secure shell (available only for physical hosting accounts).
FP Webadmin Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
FP-SSL Webadmin Microsoft FrontPage over SSL access. Opens Microsoft FrontPage Web Administrator in a separate browser window (available only for physical hosting accounts).
Crontab Manager Crontab tasks management (available only for physical hosting accounts).
Mambo CMS Deploying and editing web sites (available only for physical hosting accounts).
Application Vault Deploying and configuring web applications (available only for physical hosting accounts).
Site Preview Web site preview prior to DNS propagation (available only for physical hosting accounts).
At the bottom of the page a resource usage report is displayed.
The hints and tip manager is available in the downloads section:
www.zen-cart.com/index.php?main_page=product_contrib_info&cPath=40_47&products_id=556
I started a separate support thread.
www.zen-cart.com/forum/showthread.php?p=362880#post362880
I tested and triple tested using various combinations of going from page to page and couldn't duplicate what you described.
I can only think that some part of the file might be corrupt.
try this patch and see if it helps.
Attachment 1800
as always unzip the file and upload the entire admin folder to your server.
The patch only made things worst, now I can not select and edit any testimonial past page one. Maybe it is my computer. Now how do I get back to where I was before the patch. Thanks. Sorry for all this work Clyde.
Is there a way to just list all the testimonials on the first (one) page? Make one long page?
HI clyde
i just instal again the Expanded Category List, after giving up on the category fly css , could not get responed on my Q for over 2 weeks.
any way i can't find a thread abut the Expanded Category List, and th eone i fund was not much info
are their is any going on , can u please direct me to it please
thank you
If you still have your original download of the mod just upload the admin folder from that and that will take you back to where you were.
As I said, I tested it out with your 42 testimonials plus the ones I already had.
I tested it going forward using the >> then tested it backward using the <<
Then I tested it going forward using the dropdown then tested it backward.
I did over 150 of these tests and couldn't duplicate the problem you described.
Dear Clyde, It is probably my computer, so don't worry about it if no one else has the same trouble.
Dear Clyde, OK I got to where I was before the patch. Thanks for the help in back tracking.
Now it is back to not keeping the URL address in the box when I go back to edit a testimonial. How do I fix that again? Testimonials URL:####################__* Required
Sorry about the trouble and thanks for the help!
I think this is the same information from a previous post several pages back
open admin/testimonials_manager.php
Find this line of code (around line 185)
change it as followsCode:<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>
Save the file and upload to your serverCode:<td class="main"><?php echo zen_draw_input_field('testimonials_url', zen_not_null($bInfo->testimonials_url) ? $bInfo->testimonials_url : 'http://', 'maxlength="255"', false); ?></td>
That is it; it is keeping the URL address now. Thanks for everything Clyde! Someone just told me that they love my Testimonial set up.
Hi Clyde,
The new manager you came up with is working perfectly. Thanks again for the help.
Quick question: what font did you use to generate the gif buttons for the hintsntips manager? (I'm talking about the 3 graphics you made: button_hints.gif, button_submit_hints.gif, button_view_hints.gif)
Thanks again!
-Alex
[FONT=Times New Roman]Hi Clyde[/FONT]
[FONT=Times New Roman]I had first customer post a testimonial on my site, he also include his phone number,[/FONT]
[FONT=Times New Roman]But for some reason the phone number showing for few second and than it gone[/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]Thank You[/FONT]
[FONT=Times New Roman]Missed my 7 minutes Sorry
[/FONT][FONT=Times New Roman]Don’t know if it important, on my admin I don’t have the button logo for the “new testimonial item” look like the pic is missing, /public_html/store/admin/includes/languages/english/images/buttons/ none their, I check the zip file I unzip and nothing their either [/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]Thank You[/FONT]
Hi
He enter it just after his name at the button
I can see it for few second and than its gone, if you refresh you can see it
I spend over an hour now removing the mod and installing the it , reading from post no 1 until here, I could not get the quote button to work check my site you can see it,
And now i am missing another button, I am checking my buttons names and make sure the are their, and it is all in place
Thank You
Sorry misspelling He enter it just after his name at the bottom
try making the following change to your testimonials_manager_all_testimonials.css and testimonials_manager.css
blockquote{background:url("../images/blockquote.png")0 0 no-repeat;border:1px solid navy;padding:38px 0 5px 10px;}
I had no problem viewing the phone number in the last line of the text.
[FONT=Times New Roman]Hello Clyde [/FONT]
[FONT=Times New Roman]I log in my site thru another computer and it look fine , Thank you and sorry driving you crazy abut it[/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]To my other issue how can I get my quote button to work also, I did make sure the are in place , and I already try the part you explain in page No 4 abut renaming it to gif.[/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]P.S the button on my admin came back earlier after I re install the mod and you where right it is called “new_file” but earlier it was called differed any way it is fixed now.[/FONT]
[FONT=Times New Roman][/FONT]
[FONT=Times New Roman]Saying it just so other can read too[/FONT]
[FONT=Times New Roman]I really appreciate your time[/FONT]
Hi clydejones,
hope you are doing well.
thank you very much again for the great mod and sorted me out before.
here is another question: the page can't display GB Pounds sign £ correctly. http://www.ajdirect.co.uk/testimonia...timonials_id=2
any idea of that?
cheers
www.ajdirect.co.uk
Hi Clyde - As always, thanks for your endlessly useful Mods and the detailed support you give.
Questions: In IE there tends to be quite a bit of dead space above and below the
Less in FF. Is there a way to alleviate that? View here >>> BeadedLily <<< Lower left-hand corner.Quote:
"[FONT="Georgia"]Thank you - wonderful...[/FONT]
Read More ->
View All Testimonials
Also, I'd like to change the font size (smaller) of the
How would I achieve that?Quote:
Read More ->
View All Testimonials
Thanks!
Tim
Clyde - You da man! (Or so I assume from the name and beard. If not, please accept my sincerest apologies and may I suggest looking into electrolysis)
Seriously, thanks for that bit of code - It did the trick.
Tim
Clyde,
as usual, you solved my problem again.
you are really helpful!!
How do i adjust the margin of the text so it's not on the block quotes?
make the following change in the testimonials_manager_all_testimonials.css
Find:
and change as indicated in red.Code:blockquote{background:url("../images/blockquote.png")0 0 no-repeat;border:1px solid navy;padding:5px 5px 0;}
Code:blockquote{background:url("../images/blockquote.png")0 0 no-repeat;border:1px solid navy;padding:38px 56px;}
Thanks the worked perfect.
Clyde,
This is probably something simple but I've been working on it for hours now with no luck :frusty:
I've followed the install directions and I can't get a box in my box controls or on my pages. I've added the YOUR_TEMPLATE info to both my custom and then the default template info both with nothing showing in the boxes area.
Any ideas would be great.
Thanks
Chris
http://wccomputers.sashbox.net/
Its not live yet. I'm getting everything working and lined out before it goes live so if we need to change anything just let me know.
Thanks
Chris
Clyde,
Thanks for your time but it was something dumb like I figured. I missed one file coping over to the template folder.
Thank You
Chris
Hello,
We are using ZC 1.3.7 and your latest TM. How can we change the date of the testimonials?
Today I noticed a spelling error and decided to add in the City and State of the customers that left testimonies. In doing this, the date of their testimonies changed to reflect today's date.
To other customers viewing this looks really funny. Is there an option to change the date on each testimony to reflect their true date?
I look forward to your reply. Thank you for your plugin by the way.
Thanks Clyde. We just started using your plugin. Our comments were given on different days but they reflect the same date in our system (which is the date we added them at first, then the dated we corrected them for the missed spelling.)
Yes, having a way to adjust the date would be nice because I too added a bunch of old testimonials to my site and they all have the date that I added them. Then when I found the images I wanted to add to them the date changes to the date I added the image to the testimonials. The date changes whenever you edit the testimonial. It would be great to add a date and have it stay the same. Thank you for a great addition to Zen Cart. Testimonials are more important than most businesses realize. I also read that adding audio and images to your testimonials makes them work even better, so you might want to consider a way that one could add audio files.