claybourg Posted March 25, 2012 Share Posted March 25, 2012 In the product page the "product category" and "cross selling" blocks are positioned above the main product description. I would like to move them below the product description (see image) as this is more important information than cross selling. Problem is that product info block seems to be fixed, in live edit mode you can't grab that block to move it. Any solution to that? Link to comment Share on other sites More sharing options...
Valérie Assetskaya Posted March 26, 2012 Share Posted March 26, 2012 Hello claybourg, Product page template is in category / themes / prestashop / product.tpl. You have to correct little bit this pattern. Blocks are replaced where {$ HOOK_PRODUCT_FOOTER} is placed. You move it down the block {if $ product-> description | | $ features | | $ accessories | | $ HOOK_PRODUCT_TAB | | $ attachments} <div id="more_info_block" class="clear"> ... </ div> {/ if} which is right after it and before <! - Customizable products -> So you just should change block place. Best regards. Link to comment Share on other sites More sharing options...
claybourg Posted March 27, 2012 Author Share Posted March 27, 2012 Valerie, thank you for your response. I see the descriptions and features block but I do not see reference to the "other products in same category block" and "cross selling" in that template file. These are the two blocks that I'd like to move below the "descriptions and features". This being said, I'm not convinced this is the correct file as I deleted the whole block and it did not change anything. Link to comment Share on other sites More sharing options...
Valérie Assetskaya Posted March 27, 2012 Share Posted March 27, 2012 Hello claybourg, Both extentions are registered in the hook "productfooter". This means that they will check instead of {$ HOOK_PRODUCT_FOOTER}. Is it possible to cache the changes. You must go to Preferences-> Perfomance and enable the Force compile: Yes. Maybe try to temporarily disable the cache. As soon as the changes are viewed cache can be enabled again. You should disable Force compile: No. Regards Link to comment Share on other sites More sharing options...
Recommended Posts