Hi everyone. I’m looking to disable/hide the “Notify me when ___ comes back in stock” button. My theme is Flow and my url is epheadcovers.com. I saw another response with a code to type into base.css, but I do not have that file under Assets. Any help is appreciated.
Topic summary
A user running the Flow theme wants to remove the “Notify me when back in stock” button from sold-out product pages.
Problem: The user doesn’t have a base.css file in their Assets folder, which ruled out one suggested solution.
Solutions offered:
- Add CSS code to hide the out-of-stock form by inserting it into theme.liquid above the
</head>tag - Alternative approach: Add the code to base.css file (not applicable in this case)
Resolution: The theme.liquid method successfully solved the issue. The user confirmed this approach worked for their Flow theme setup.
This is Richard from PageFly - Shopify Page Builder App
Please add this code to your theme.liquid above the to get this solved
Step 1: Online Stores > Themes > More Actions > Edit code
Step 2: click on theme.liquid and paste the code above the
Hope this can help you solve the issue
Best regards,
Richard | PageFly
@epheadcovers , do this to fix it in 20 seconds:
- In your Shopify Admin go to: online store > themes > actions > edit code
- Find Asset > base.css and paste this at the bottom of the file:
.out-of-stock-form {
display: none !important;
}
If it helps you please click on the “like” button and mark this answer as a solution!
Thank you.
Kind regards,
Diego
Yes, I am!
Unfortunately I don’t have base.css in my Assets
Thank you so much, this did the trick!

