This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// copy and past to the bottom of theme.scss.liquid | |
.spr-badge[data-rating="0.0"] { | |
visibility:hidden; display: none; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% comment %} | |
replace ligne 265 to 270 | |
and 'something' by the name of the collection | |
{% endcomment %} | |
{% if section.settings.show_quantity_selector and collection.title != 'something'%} | |
<div class="product-form__item product-form__item--quantity"> | |
<label for="Quantity">{{ 'products.product.quantity' | t }}</label> | |
<input type="number" id="Quantity" name="quantity" value="1" min="1" class="product-form__input" pattern="[0-9]*"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = { | |
webpack: (config, { isServer }) => { | |
// Fixes npm packages that depend on `fs` `net `empty` module | |
if (!isServer) { | |
config.node = { | |
fs: 'empty', | |
net: 'empty', | |
tls: 'empty' | |
} | |
} |
OlderNewer