I’ve read so many posts about how to do this but when I go to edit product pages (DEBUT theme), there are not any selection options such as:
uncheck the box that says ‘Show Availability’ (its just not there)
There also isn’t a Quick view page edit option.
Many of our products are made to order with long lead times so I do not want customers thinking the item is stock and ready to ship.
I sort of wished there was a variable in the .cvs sheet that can toggle this on or off.
Please help!
What’s your store URL if you can share.
Can you share a preview URL or direct message me the password?
I’m afraid I do not know how to provide a preview URL.
I’m the store owner. Site is being developed by others and they are sooooooo slow in getting back with me.
They also indicated that this cannot be removed but I cannot accept that. I KNOW it can somehow.
Please see attached.
Ah…
https://bor0lyl16lso1dd2-28058288259.shopifypreview.com
Please delete this link after you get it. Thank you.
Add this snippet to the bottom of your assets/theme-style.scss.css (can also have a liquid suffix, depends on theme) un Theme Code editor:
.product-single__alb {
display: none;
}
I cannot edit your posts, so you can edit your post and remove the preview URL if it bothers you.
Thanks! We will try this and let you know if it works for us!
af18
June 14, 2020, 8:47am
10
Hi can you help me with my website too? I need to hide the stock status as well. Much appreciate your help!
https://divesea.com.sg/
I need to remove this (see the yellow highlight), thank you.
@af18 add this snippet to the bottom of your assets/theme.scss.liquid file:
div#stock {
display: none;
}
1 Like
af18
June 15, 2020, 2:55pm
12
It’s working! Thank you so much for your kind help! Really appreciate it.
Much gratitude
@gsssjax please share your store URL.
Hi there,
I’ve been facing an issue for the past few weeks with our products availability section on the store… Any products don’t display the availability at all, i.e it’s completely blank. When it used to display the quantity in the past, it would always show up as being in ‘undefined terms’ - is there any way I would be able to fix this in your knowledge, or if we could just remove the availability all together by adding a snippet into the code? Our store URL is: focusbookshop.com
I would appreciate any help/guidance with this issue.
thank you
@FocusBookshop can you share a couple of URLs to product pages where you have blank availability or that odd message instead of the actual availability?
geojose
November 22, 2020, 11:48pm
17
Hi!
Can you please help me with the same issue? I want to remove the Availability from my product page. I have tried the codes from your previous posts but probably I need to put different ones.
https://sharefresh.org/collections/boxes/products/veg-box
Thank you so much!
Either find the liquid code in the themes product templates that reference product.availability and similar.
Or use CSS to hide the area by adding the following to your themes CSS file
.template-product .availability {
display: none;
}
If you need this customization you can reach me at paull.newton+shopifyforums@gmail.com
Hi, I have the same issue in this store and trying to remove products availability. https://www.flavorsofceylon.com/collections/spices/products/black-peper-powder
could you please tell me how?
Hi @Priyanga
Welcome to Shopify community and thanks for posting this question.
Please use this below code at the bottom of your Settings > Online Store > Themes > Action > Edit Code > theme.css file
.product-inventory { display: none; }
Try and let me know if that works. Hope this helps.