Jorge_Mosquera
Excursionist
Contact Me
Status
Offline
Last Activity
‎04-21-2021 02:15 PM
Topic Started
0
Topics Started
Topic Solutions
1
Solution
Post Count
16
Posts
Post Kudos
2
Likes

Community Badges

No content to show

User Activity

Hello @will-silveira,Using cart.js is the way to go. Don't forget to reload the page once is done in order to see the changes.fetch('/cart/add.js', {method: 'POST',headers: {'Content-Type': 'application/json',},body: JSON.stringify({ quantity: 1, id:...
hey @sjtrials,I checked Venture theme, and if you are comfortable with javascript you can modify theme.js to hide the text when the variant changes.look for _updateVariantChange. In this function you can add some code to first check the product type ...
hi @Kodamo,You need to change:{{ item.product.type }}to {{ line.item.product.type }}
Hi @sjtrials,I'm glad you got it working. I'm assuming the problem you are seeing is when, for example, the page loads in size 7 (with no stock), so the text is showing ant then you change from size 7 to size 6, and then text still there. Am I correc...
Hello @sjtrials depends on the property you want to use to identify the products.For example if you want to apply the inventory rule to the products of type "shoes", you can do something like this:{% if product.type == 'Shoes' or product.type == 'sho...
yes @sjtrials it will apply to all the products. If you can identify the products ( for example by type, collection,..) you can add another condition so the inventory rule only applies to the matched products. Hope it helps. 
Hello @sjtrials ,In your product.template.liquid you could add something like this:{% assign current_variant = product.selected_or_first_available_variant %}{% if current_variant.inventory_quantity < 1 %}<p>special order usually dispatches within 2-3...
hello @BLouie700,change your footer to:"<p>Bottega Louie employees work in a team environment where everyone strives for excellence. We employ a variety of positions in the Front of House, Back of House, Patisserie, Pastry Production, and Corporate O...
hello @pthrasher The search call is looking for the word mazzamuto in the fields title, vendor, product_type, variants.title of your products. It looks like is not finding any. I will suggest to verify that you have this word in any of the fields of ...
Yes, you need to add {{ line.product.type }}
look for  {% for line in subtotal_line_items %}, You will see the code that shows the products of the order.  
hello @kevinjwiles You can access the collections that a product belongs to using the product object.{% for collection in product.collections %}      {{ collection.title }}      {{ collection.handle }}{% endfor %}
Hello @Kodamo,Yes, you just need to modify the Order Confirmation Email Template. You can find it in Settings / Notifications / Order Confirmation from your admin panel.  
If your store has a Shopify Plus Plan, you can apply a discount automatically by using javascript in the checkout.js file.If not, you can add a discount code as a url paramenter. The discount will be automatically applied when the user reaches the ch...
My Accepted Solutions
This widget could not be displayed.
This widget could not be displayed.
Helpful From