Malemi Posted December 8, 2016 Share Posted December 8, 2016 Hello, I am running PS 1.7.0.2: I do not see any option to disable product QuickView, as on PS 1.6. Might you please clear this out: is this option going to be enables during 1.7 development ? As a fix, is there any way to manually disble product quick view on home and category pages ? Thanks in advance Link to comment Share on other sites More sharing options...
templatin Posted December 8, 2016 Share Posted December 8, 2016 There isn't any option to disable Quick View from back-office. But you can delete its code manually from below file in your themes folder. /templates/catalog/_partials/miniatures/product.tpl 1 Link to comment Share on other sites More sharing options...
Malemi Posted December 8, 2016 Author Share Posted December 8, 2016 Hi templatin, Works perfect, Thank you 1 Link to comment Share on other sites More sharing options...
peter4stra Posted January 5, 2017 Share Posted January 5, 2017 I deleted serveral codes in /templates/catalog/_partials/miniatures/product.tpl but this didnt work. Can u tell me what i must delete ? Link to comment Share on other sites More sharing options...
templatin Posted January 5, 2017 Share Posted January 5, 2017 Try recompiling template files or clear cache from Back-office. Go to BO > Advanced Parameters > Performance. Click on "Clear cache" button in top-right corner. Now check your shop. The quick view option should be removed if you have deleted proper code. Link to comment Share on other sites More sharing options...
mysho Posted January 5, 2017 Share Posted January 5, 2017 (edited) Try to remove (or comment them out) lines 73-87 in this file: /web/themes/xxYOUR-THEMExx/templates/catalog/_partials/miniatures/product.tpl This will also remove product´s variants. Don't forget to cleare cache as mentioned before. Or turn the "Force compilation" on. Edited January 5, 2017 by mysho (see edit history) Link to comment Share on other sites More sharing options...
rl_lucian Posted July 6, 2017 Share Posted July 6, 2017 There isn't any option to disable Quick View from back-office. But you can delete its code manually from below file in your themes folder. /templates/catalog/_partials/miniatures/product.tpl I just used this css command in theme.css or custom.css, instead of altering any .tpl files: .thumbnail-container .quickview a { display: none; } 2 Link to comment Share on other sites More sharing options...
Vilius PromoApranga Posted July 17, 2017 Share Posted July 17, 2017 Just make some changes in /themes/classic/templates/catalog/_partials/miniatures/product.tpl Link to comment Share on other sites More sharing options...
skansa Posted October 5, 2018 Share Posted October 5, 2018 Hi everyone, can you explain me the exact line to comment out? My template is a bit different... seems. Thank you. Link to comment Share on other sites More sharing options...
need2011 Posted October 15, 2019 Share Posted October 15, 2019 (edited) On 7/6/2017 at 1:13 AM, rl_lucian said: I just used this css command in theme.css or custom.css, instead of altering any .tpl files: .thumbnail-container .quickview a { display: none; } I tried this method and it did not work. I tried it in both the css files and then cleared the cache. Any reason why? Edited October 16, 2019 by need2011 Solved-see the next post. (see edit history) Link to comment Share on other sites More sharing options...
need2011 Posted October 16, 2019 Share Posted October 16, 2019 I found this and it worked great in the custom. css .highlighted-informations { display: none; } #products .thumbnail-container:hover .product-description::after, .featured-products .thumbnail-container:hover .product-description::after, .product-accessories .thumbnail-container:hover .product-description::after, .product-miniature .thumbnail-container:hover .product-description::after, #products .thumbnail-container:focus .product-description::after, .featured-products .thumbnail-container:focus .product-description::after, .product-accessories .thumbnail-container:focus .product-description::after, .product-miniature .thumbnail-container:focus .product-description::after { border-top: none; } 1 Link to comment Share on other sites More sharing options...
ecentury Posted August 25, 2020 Share Posted August 25, 2020 This works in prestashop 1.7.7 .quick-view { display: none !important; } 3 Link to comment Share on other sites More sharing options...
Gezel Posted September 23, 2020 Share Posted September 23, 2020 On 10/16/2019 at 3:40 AM, need2011 said: I found this and it worked great in the custom. css .highlighted-informations { display: none; } #products .thumbnail-container:hover .product-description::after, .featured-products .thumbnail-container:hover .product-description::after, .product-accessories .thumbnail-container:hover .product-description::after, .product-miniature .thumbnail-container:hover .product-description::after, #products .thumbnail-container:focus .product-description::after, .featured-products .thumbnail-container:focus .product-description::after, .product-accessories .thumbnail-container:focus .product-description::after, .product-miniature .thumbnail-container:focus .product-description::after { border-top: none; } Thx for this one works for me. Link to comment Share on other sites More sharing options...
Tomi14 Posted October 13, 2022 Share Posted October 13, 2022 I tried in 1.7.8.7, but changes in custom.css not work Quote .quick-view { display: none !important; } Also Quote .highlighted-informations { display: none; } #products .thumbnail-container:hover .product-description::after, .featured-products .thumbnail-container:hover .product-description::after, .product-accessories .thumbnail-container:hover .product-description::after, .product-miniature .thumbnail-container:hover .product-description::after, #products .thumbnail-container:focus .product-description::after, .featured-products .thumbnail-container:focus .product-description::after, .product-accessories .thumbnail-container:focus .product-description::after, .product-miniature .thumbnail-container:focus .product-description::after { border-top: none; } Link to comment Share on other sites More sharing options...
thx2012 Posted January 17, 2023 Share Posted January 17, 2023 On 10/13/2022 at 4:37 AM, Tomi14 said: I tried in 1.7.8.7, but changes in custom.css not work Also Any solution? I'm using 1.7.8.7 also and want to hide the 'quick-view' and 'add-to-cart' from the product lists. I tried the using custom css as per this thread to no prevail. 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