ademnefes Posted January 2, 2018 Share Posted January 2, 2018 Dear, In the backoffice of Prestahshop 1.7 are my prices EXCL. Taxes. See attachment. How can is setup the setting so it show the price incl. Taxes in my catalog of BACKOFFICE. Link to comment Share on other sites More sharing options...
Maria del Pino Posted February 24, 2019 Share Posted February 24, 2019 On 1/8/2019 at 8:04 PM, Crezzur said: Works with: Prestashop 1.7+ (tested up to 1.7.5.5) Navigate to: yousite/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/products_table.html.twigFind: <th scope="col" class="text-center" style="width: 9%"> {{ ps.sortable_column_header("Price (tax excl.)"|trans({}, 'Admin.Catalog.Feature'), 'price', orderBy, sortOrder) }} </th> Add below: <th scope="col" class="text-center" style="width: 9%"> {{ ps.sortable_column_header("Final price"|trans({}, 'Admin.Catalog.Feature'), 'price_final', orderBy, sortOrder) }} </th> Navigate to: yoursite/src/PrestaShopBundle/Resources/views/Admin/Product/CatalogPage/Lists/list.html.twigFind: <td class="text-center"> <a href="{{ product.url|default('') }}#tab-step2">{{ product.price|default('N/A'|trans({}, 'Admin.Global')) }}</a> </td> Add below: <td class="text-center"> <a href="{{ product.url|default('') }}#tab-step2">{{ product.price_final|default('N/A'|trans({}, 'Admin.Global')) }}</a> </td> If you guys don't want to make the edits on your own, just copy the files i added to this post.list.html.twigproducts_table.html.twig If this post helped you click the "Like" button to let others know this solution worked for you. Hi Crezzur, there is anyway to add supplier or manufacturer in 1.7.5? Thanks for your help! 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