I am sure this is simple but can not figure it out. I want to limit the number of characters to display from the products name in the new, featured and specials sideboxes.
Any suggestions?
I am sure this is simple but can not figure it out. I want to limit the number of characters to display from the products name in the new, featured and specials sideboxes.
Any suggestions?
You can customize each of the sideboxes and limit the length of the products_name that is displayed ...
Example, using your templates and overrides, you could customize the specials sidebox for the tpl_specials.php by changing the:
to use:Code:$content .= '<br />' . $random_specials_sidebox_product->fields['products_name'] . '</a>';
Code:$content .= '<br />' . substr($random_specials_sidebox_product->fields['products_name'],0,5) . '</a>';
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
That is so cool, Thank you!
Sorry for sending the private message but I figured if anyone could figure it out you could.
Thanks Again
You are most welcome ... thanks for the update that this works for you ...![]()
Linda McGrath
If you have to think ... you haven't been zenned ...
Did YOU buy the Zen Cart Team a cup of coffee and a donut today? Just click here to support the Zen Cart Team!!
Are you using the latest? Perhaps you've a problem that's fixed in the latest version: [Upgrade today!]
Officially PayPal-Certified! Just click here
Try our Zen Cart Recommended Services - Hosting, Payment and more ...
Signup for our Announcements Forums to stay up to date on important changes and updates!
update!
For some reason it make the name disappear in the featured side box. Any Suggestions!
I figured it out.
With the featured sidebox, you need to remove "sidebox"
change this:
to this:Code:$content .= '<br />' . substr($random_featured_sidebox_product->fields['products_name'],0,5) . '</a>';
Thanks again AjehCode:$content .= '<br />' . substr($random_featured_product->fields['products_name'],0,5) . '</a>';