Removing "In Stock" from all products on Electro Theme

Topic summary

A user is attempting to remove the green “In Stock” indicator from all products on their Electro theme store but cannot locate the relevant code in the theme sections despite finding it via Chrome’s inspect element.

Proposed Solution:

  • Navigate to Online Store → Themes → Edit Code
  • Access Assets tab → product-items.css file
  • Add CSS code at the end: .product-extended-template .product_details_inventory { display: none !important; }

Implementation Issues:

  • User’s Assets tab lacks product-related files
  • Creating a new asset file resolved the “In Stock” text removal
  • However, the green dot indicator remains visible

Current Status:
The discussion remains open with the user seeking additional guidance to remove the remaining green dot. A link to Electro theme documentation for product templates was provided as a reference resource.

Summarized with AI on November 9. AI used: claude-sonnet-4-5-20250929.

Hi @hofmann09 ,

May I suggest to update code these steps:

  1. Go to Store Online-> theme → edit code

  1. Assets/product-items.css
  2. Add code below to end of file
.product-extended-template .product-details_inventory{
  display: none!important;
}