helpmeplease Posted July 29, 2010 Share Posted July 29, 2010 Hi, I understand I can add an image for each category page in the admin section.In addition I'd like to be able to add an additional jpg / gif to every page under the Category headingFor example 'FREE Shipping on all items' - the same image on every pageI don't understand php at all, but I guess there must be a way to add a line of php code to display a graphic by updating the product.tpl and the category.tpl files in my themes folder.Hope someone can point me in the right direction on this one?Also what the code needed would be to display for example - freesshipping.gifThanks in advanceBrian Link to comment Share on other sites More sharing options...
rocky Posted July 29, 2010 Share Posted July 29, 2010 Edit category.tpl in your theme's directory and add the following after line 15 (in PrestaShop v1.3.1) to add an image just below the title: <img src="{$img_dir}free-shipping.gif" alt="Free Shipping" /> Then put free-shipping.gif in the img directory in your theme. Link to comment Share on other sites More sharing options...
helpmeplease Posted July 30, 2010 Author Share Posted July 30, 2010 Hi Rocky,Thanks again - that sorted the problem perfectly!Best wishesBrian Link to comment Share on other sites More sharing options...
pasko Posted August 28, 2010 Share Posted August 28, 2010 Edit category.tpl in your theme's directory and add the following after line 15 (in PrestaShop v1.3.1) to add an image just below the title: <img src="{$img_dir}free-shipping.gif" alt="Free Shipping" /> Then put free-shipping.gif in the img directory in your theme. Hi rocky,And to have a different "animated GIF" image per category?Thanks! Link to comment Share on other sites More sharing options...
rocky Posted August 28, 2010 Share Posted August 28, 2010 Put all the animated GIFs in a directory like img/c/anim/, then use the following code in category.tpl: <img src="{$img_cat_dir}anim/{$id_category}.gif" alt="" /> Link to comment Share on other sites More sharing options...
pasko Posted August 28, 2010 Share Posted August 28, 2010 Hi rocky, does not work.What I need is to have different animated gif or flash images, for each category. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now