No content to show
User Activity
02-23-2024
Would you by chance know how to approach this if you only wanted to remove pagination from a specific collection?
I would really like to be able to do this as well. I haven't found anything that works properly. Seems like it would be such a simple change.
Sorry, just got around to messing with the code again. Looks like I was just missing an else tag. Just change the first line to this - {% if discount_application.title != blank %} {% else %} I checked orders both with and without discounts and it's w...
Using the bulk editor for pricing is not effective when you can't sort by price first. You'd have to make price changes one at a time. How is this not a simple filter??
12-26-2023
Thanks so much for the help, that worked perfectly!
12-26-2023
How is this not possible?? We sell products from many vendors and a lot of them have specific release dates when we are allowed to post products publicly. By chance, I just realized we had a new release being shown through the Shop app despite having...
12-15-2023
I used this code and it worked great on desktop but the _tags still show up in mobile view. Would you happen to know what I need to add or change to fix that?
Good idea, this seems to be working for me. Just update the original code I posted with this (or add in the the first and last line) {% if discount_application.title != blank %}Discount {% for discount_application in order.discount_applications %}{{ ...
This is the code I used in mine and it shows discount name followed by amount on the same line Discount {% for discount_application in order.discount_applications %}{{ discount_application.title }} -{{ discount_application.total_allocated_amount | m...
Is there a setting or code so that all shipping options are displayed instead of a dropdown with the cheapest shipping being the default? Or even expanded by default? It shows both if you aren't signed in to an account but as soon as you are it becom...
11-09-2023
any luck figuring this out? We are facing the same issue. With thousands of products to update with complementary products, doing this one by one is pretty daunting.
Thank you. I have limited coding knowledge and have tried making some adjustments to the standard code added to display percentage but haven't had any luck.
I am using the Dawn theme and have updated the sale badge to show the percentage of the discount but is there a way to set it so it only shows up if the discount is something like 5% or greater? By default all of our products end in .77 so something ...