camelian77 Posted November 13, 2012 Share Posted November 13, 2012 Hi, I'm using fantastic prestashop 1.5.2. Here is the product's page: http://autopartsaftermarket.us/index.php?id_product=8&controller=product I want to add more details right above price but don't want to use the short description section. Say all information from `datasheet` should come up here. Any ideas? Anoosh Link to comment Share on other sites More sharing options...
yaniv14 Posted November 13, 2012 Share Posted November 13, 2012 Did you modified product.tpl? Do you want the data sheet to show at the bottom also? Do you want the title (Data Sheet) to show also above the price or just the description of the data sheet? Do you have some basic skill in editing files? Link to comment Share on other sites More sharing options...
camelian77 Posted November 13, 2012 Author Share Posted November 13, 2012 Haven't yet edited the file. I want the datasheet (or at least some features field / attribute field) to show up right near product's image. Can edit files tho. Link to comment Share on other sites More sharing options...
ihkwyh Posted November 13, 2012 Share Posted November 13, 2012 You could also use a custom mod to pull the data you want. Link to comment Share on other sites More sharing options...
yaniv14 Posted November 13, 2012 Share Posted November 13, 2012 Try to add to themes/default/product.tpl after </div> in line 361: {if isset($features) && $features} <ul style="margin-left:20px;padding:10px 0 0 0;"> <!-- product's features above price --> {foreach from=$features item=feature} {if isset($feature.value)} <li><span>{$feature.value|escape:'htmlall':'UTF-8'}</span></li> {/if} {/foreach} </ul> {/if} Link to comment Share on other sites More sharing options...
Recommended Posts