The_Style_Platform Posted November 16, 2019 Share Posted November 16, 2019 How do you hide the 'all' category in the pages menu. There is not option to turn it off. I just want to show my individual categories only Thanks T_S_P Link to comment
tuanphan Posted November 19, 2019 Share Posted November 19, 2019 Can you share link to your site? @The_Style_Platform Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted November 23, 2019 Share Posted November 23, 2019 On 11/19/2019 at 2:00 AM, tuanphan said: Can you share link to your site? @The_Style_Platform I am also interested in this! My site is: https://www.supercoffeefood.com/shopfood Link to comment
tuanphan Posted November 23, 2019 Share Posted November 23, 2019 42 minutes ago, chriscollinge said: I am also interested in this! My site is: https://www.supercoffeefood.com/shopfood add to home > design > custom css .ProductList-filter-list-item:first-child { display: none !important; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Guest Posted November 24, 2019 Share Posted November 24, 2019 15 hours ago, tuanphan said: add to home > design > custom css .ProductList-filter-list-item:first-child { display: none !important; } Thank You Soo Much! It worked! Link to comment
Brig Posted December 19, 2019 Share Posted December 19, 2019 Hi! Is it possible to change the "all" category with another name, like featured for example? Thank you! Link to comment
tuanphan Posted December 19, 2019 Share Posted December 19, 2019 19 minutes ago, Brig said: Hi! Is it possible to change the "all" category with another name, like featured for example? Thank you! Yes. You can use CSS or JavaScript to edit text. Can you share link to your site? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan sorry I was away for the holidays. Here is the link: https://orange-emu-7zlr.squarespace.com/config/ Thank you! Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 1 hour ago, Brig said: @tuanphan sorry I was away for the holidays. Here is the link: https://orange-emu-7zlr.squarespace.com/config/ Thank you! Add to Home > Design > Custom CSS a.category-filter-link.category-filter-link-all { display: none; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan Thank you but it says Missing closing } although there is one at the end (see screenshot attached); what should I do? Thank you! Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 14 minutes ago, Brig said: @tuanphan Thank you but it says Missing closing } although there is one at the end (see screenshot attached); what should I do? Thank you! Can you share all code in Custom CSS Box? I think other code is missing. Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan attached are all the codes but the previous ones work. Thanks! Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 10 minutes ago, Brig said: @tuanphan attached are all the codes but the previous ones work. Thanks! Line 9,5, It should be , not { Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan Thanks but now the text next to the POA artworks has disappeared... does the , need to be next to the word details? Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 (edited) 5 minutes ago, Brig said: @tuanphan Thanks but now the text next to the POA artworks has disappeared... does the , need to be next to the word details? Line 9.5 was missing so Line 9 - Line 12 didn't work. If you changed } to , Line 9 - Line 12 will work. and there is another problem, you should check what Line 9 - Line 12 is doing on the website. Edited December 31, 2019 by tuanphan Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan all the previous lines were just to hide the pice for certain artworks with the Tag POA on both the home page and on each product page that had that tag. I have changed Line 9,5 with a , at the end instead of { like you said but I don't know how to get the text back on the POA artworks, which is more important than getting rid of the All category... Let me know what I should do exactly, otherwise I'll just change it the way it was. Thank you! Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 8 minutes ago, Brig said: @tuanphan all the previous lines were just to hide the pice for certain artworks with the Tag POA on both the home page and on each product page that had that tag. I have changed Line 9,5 with a , at the end instead of { like you said but I don't know how to get the text back on the POA artworks, which is more important than getting rid of the All category... Let me know what I should do exactly, otherwise I'll just change it the way it was. Thank you! Can you paste all code here? Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan here you go: .tag-poa .product-price:before { content: 'POA'; } .tag-poa .product-price .sqs-money-native { display: none; } .tag-poa .ProductItem-summary .ProductItem-details , .sqs-add-to-cart-button-wrapper, .product-quantity-input { display: none; } a.category-filter-link.category-filter-link-all { display: none; } Link to comment
tuanphan Posted December 31, 2019 Share Posted December 31, 2019 11 minutes ago, Brig said: @tuanphan here you go: .tag-poa .product-price:before { content: 'POA'; } .tag-poa .product-price .sqs-money-native { display: none; } .tag-poa .ProductItem-summary .ProductItem-details , .sqs-add-to-cart-button-wrapper, .product-quantity-input { display: none; } a.category-filter-link.category-filter-link-all { display: none; } insert this code .tag-poa .product-price:before { content: 'POA'; } .tag-poa .product-price .sqs-money-native { display: none; } .tag-poa .ProductItem-summary .ProductItem-details { .sqs-add-to-cart-button-wrapper, .product-quantity-input { display: none; } } a.category-filter-link.category-filter-link-all { display: none; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Brig Posted December 31, 2019 Share Posted December 31, 2019 @tuanphan great thank you for your help! Link to comment
SnatchedWears Posted February 1, 2020 Share Posted February 1, 2020 I need help with this also I want the categories hidden http://www.snatchedwears.com/products Link to comment
Lorym Posted May 15, 2020 Share Posted May 15, 2020 Hello! I need help! I tried this code out but the thin line in between each of my categories is still there. Code and screenshot:a.category-filter-link.category-filter-link { display: none; } Link to comment
jacksonoven Posted September 25, 2020 Share Posted September 25, 2020 Hey, guys - I'm looking to do the same at my site: https://deer-elk-ep7m.squarespace.com/config/ Just trying to delete the "All" category from my product page. Thank you all. Link to comment
zachwellman Posted November 1, 2020 Share Posted November 1, 2020 (edited) I am also interested in this., want to remove the all category. My site is oregonbistro.com/takeout. Edited November 1, 2020 by zachwellman Link to comment
tuanphan Posted November 2, 2020 Share Posted November 2, 2020 15 hours ago, zachwellman said: I am also interested in this., want to remove the all category. My site is oregonbistro.com/takeout. To hide "All", add to Home > Design > Custom CSS #categoryNav ul li [href="/takeout"] { display: none; } Email me if you have need any help (free, of course.). Answer within 24 hours. Or send to forum message Contact Customer Care - Learn CSS - Buy me a coffee (thank you!) Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment