aalexandros Posted January 14, 2012 Share Posted January 14, 2012 Hi, I would like to know if and if yes how is possible to change the sequence of the product footer. Currently I have: MORE INFO | WE ALSO HAVE | ACCESSORIES I would like to have accessories to show up first instead of the more info. Thank you Link to comment Share on other sites More sharing options...
nadie Posted January 14, 2012 Share Posted January 14, 2012 Hi, I would like to know if and if yes how is possible to change the sequence of the product footer. Currently I have: MORE INFO | WE ALSO HAVE | ACCESSORIES I would like to have accessories to show up first instead of the more info. Thank you Yes, modify product.tpl In the file find this: {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if} {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if} {if $attachments}<li><a id="more_info_tab_attachments" href="#idTab9">{l s='Download'}</a></li>{/if} {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if} For example if you change that for this: {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if} {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if} {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if} {if $attachments}<li><a id="more_info_tab_attachments" href="#idTab9">{l s='Download'}</a></li>{/if} Then you will see first accessories Link to comment Share on other sites More sharing options...
aalexandros Posted January 14, 2012 Author Share Posted January 14, 2012 Yes, modify product.tpl In the file find this: {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if} {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if} {if $attachments}<li><a id="more_info_tab_attachments" href="#idTab9">{l s='Download'}</a></li>{/if} {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if} For example if you change that for this: {if isset($accessories) AND $accessories}<li><a href="#idTab4">{l s='Accessories'}</a></li>{/if} {if $product->description}<li><a id="more_info_tab_more_info" href="#idTab1">{l s='More info'}</a></li>{/if} {if $features}<li><a id="more_info_tab_data_sheet" href="#idTab2">{l s='Data sheet'}</a></li>{/if} {if $attachments}<li><a id="more_info_tab_attachments" href="#idTab9">{l s='Download'}</a></li>{/if} Then you will see first accessories Done! Thank you for your quick response, issue solved! Link to comment Share on other sites More sharing options...
nadie Posted January 14, 2012 Share Posted January 14, 2012 Done! Thank you for your quick response, issue solved! I'm glad I could help! Link to comment Share on other sites More sharing options...
Recommended Posts