bera_ramazan Posted June 13, 2017 Share Posted June 13, 2017 {foreach from=$product.extraContent item=extra key=extraKey} ... {/foreach} How to add moddule product page ps 1.7x I want to add a tab to the product page without changing the default theme Link to comment Share on other sites More sharing options...
shokinro Posted June 14, 2017 Share Posted June 14, 2017 You will need to use new hook DisplayProductExtraContent of PrestaShop 1.7x See here for more reference info - https://github.com/PrestaShop/PrestaShop/pull/6216 here is sample code. public function hookDisplayProductExtraContent($params) { ................ $content = $this->display(__FILE__, '/views/templates/hook/hookdisplayextracontent.tpl'); $array[] = (new PrestaShop\PrestaShop\Core\Product\ProductExtraContent()) ->setTitle('Seller Info') ->setContent($content); return $array; } 1 Link to comment Share on other sites More sharing options...
Shwetab55 Posted June 1, 2020 Share Posted June 1, 2020 Hello, I want to add bundle module into the additional product tab. Please help Thanks Link to comment Share on other sites More sharing options...
pedepot Posted June 1, 2020 Share Posted June 1, 2020 Hello, If you are a seller, you should ask for a specific development. If you are a developer, you need to create a new hook as described above. Good luck. Link to comment Share on other sites More sharing options...
jeanluc.12 Posted June 2, 2020 Share Posted June 2, 2020 PrestaShop is provding the option to add the pack products in the version 1.7.7. You can find the details on the link given below: https://build.prestashop.com/news/the-new-order-pages-in-prestaShop-1-7-7/ In this article go to the Pack & customized products. 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