ilkay Posted March 7, 2022 Share Posted March 7, 2022 (edited) Hi, on my site the wishlist works fine but the wishlist button on the new products page is not working. I checked the demo posted on Prestashop's own site, same problem there too. How can ı fix that problem ? Edited April 6, 2022 by ilkay (see edit history) Link to comment Share on other sites More sharing options...
endriu107 Posted March 7, 2022 Share Posted March 7, 2022 In file modules/blockwishlist/views/templates/hook/displayHeader.tpl you need to change line: {if $context === "index" || $context === "category" || $context === "blockwishlist" || $context === 'search' } to {if $context === "index" || $context === "category" || $context === "blockwishlist" || $context === 'search' || $context === 'new-products' || $context === 'prices-drop' || $context === 'best-sales'} To avoid override this changes on module update you can put this file in your theme folder at same path modules/blockwishlist/views/templates/hook/displayHeader.tpl 1 1 Link to comment Share on other sites More sharing options...
ilkay Posted March 7, 2022 Author Share Posted March 7, 2022 30 minutes ago, endriu107 said: In file modules/blockwishlist/views/templates/hook/displayHeader.tpl you need to change line: {if $context === "index" || $context === "category" || $context === "blockwishlist" || $context === 'search' } to {if $context === "index" || $context === "category" || $context === "blockwishlist" || $context === 'search' || $context === 'new-products' || $context === 'prices-drop' || $context === 'best-sales'} To avoid override this changes on module update you can put this file in your theme folder at same path modules/blockwishlist/views/templates/hook/displayHeader.tpl Thank you so much bro. I changed that and now working very good. Link to comment Share on other sites More sharing options...
ilkay Posted March 7, 2022 Author Share Posted March 7, 2022 I'm having trouble adding the site's logo as .svg. Can you help with this too? 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