Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello, I am using the Pipeline theme. I'd like to create a wholesale application and then provide those approved with a login where they can shop our store with wholesale pricing. I'd like to do this without using a paid app. Can anyone help? Thank you!
Hi @stevenunstick 👋
Here's my recommended stack (works with any theme from Shopify's Theme store so no worries there!)
{% if customer and customer.tags contains 'wholesale' %}
{% assign discount_rate = 0.80 %} {# 20% off for wholesale customers #}
{% assign wholesale_price = product.price | times: discount_rate %}
<p>Wholesale Price: {{ wholesale_price | money }}</p>
{% else %}
<p>Regular Price: {{ product.price | money }}</p>
{% endif %}
No Shopify Plus needed! We've also got a YouTube video on this topic: https://www.youtube.com/watch?v=6VC7Z1KeU7Q
Sorry for the duplicate reply! There was an error when I hit "Post" and then it ended up submitting 3 times, and I'm unable to delete my replies 🙃
Sorry for the duplicate reply! There was an error when I hit "Post" and then it ended up submitting 3 times, and I'm unable to delete my replies 🙃
Hey @stevenunstick, let me tell you one thing: I tried to do the same without paid apps, and it was great until every time there was a theme update, I had to hire a web dev for that as my store grew.
I would recommend, if you're in mid-stage, using manual codes, but recently I have started using EasyB2B: https://apps.shopify.com/easy-wholesale, which seems very promising as I am a manual code lover, but this just makes things easier.
But it's up to you, and you can always research and have a dev team.