janeklass Posted April 22, 2022 Share Posted April 22, 2022 How to make prestashop bootstrap text, such as this: http://bestjquery.com/tutorial/accordion/demo78/ Link to comment Share on other sites More sharing options...
abdullacm Posted April 22, 2022 Share Posted April 22, 2022 (edited) please explain your requirement in more detail, you want the bootstrap accordion in what page of prestashop (product, category, cms, home, contact etc.)? Edited April 22, 2022 by abdullacm (see edit history) 1 Link to comment Share on other sites More sharing options...
janeklass Posted April 22, 2022 Author Share Posted April 22, 2022 6 minutes ago, abdullacm said: please explain your requirement in more detail, you want the bootstrap accordion in what page of prestashop (product, category, cms, home, contact etc.)? I want to make a plain text page (like FAQ) Link to comment Share on other sites More sharing options...
abdullacm Posted April 22, 2022 Share Posted April 22, 2022 the easiest way is modify page.tpl and write condition for your cms page with its id and add the accordion html 1 Link to comment Share on other sites More sharing options...
janeklass Posted April 23, 2022 Author Share Posted April 23, 2022 9 hours ago, abdullacm said: the easiest way is modify page.tpl and write condition for your cms page with its id and add the accordion html Ok, but how do you do that? Can you give me a lesson? Link to comment Share on other sites More sharing options...
abdullacm Posted April 23, 2022 Share Posted April 23, 2022 {extends file='page.tpl'} {block name='page_title'} {$cms.meta_title} {/block} {block name='page_content_container'} <section id="content" class="page-content page-cms page-cms-{$cms.id}"> {block name='cms_content'} {$cms.content nofilter} {if $cms.id == 25} your html goes here {/if} {/block} {block name='hook_cms_dispute_information'} {hook h='displayCMSDisputeInformation'} {/block} {block name='hook_cms_print_button'} {hook h='displayCMSPrintButton'} {/block} </section> {/block} replace 25 with your cms id 1 Link to comment Share on other sites More sharing options...
ComGrafPL Posted April 23, 2022 Share Posted April 23, 2022 You could either use Creative Elements page builder to create really great pages. 1 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