Allow users to select gift orders over $100 on a cart page?

Hi. It is possible to allow users to select a free gift if the cart value is more than $100 on a cart page? Thanks in advance.

Hi Mate!

Yes, that’s possible in Shopify.

You can either use an App or use a custom code for it on the cart page.

You may inbox me if you need custom coding for it coz you have to pay every month if you add an app for this in your store

Always backup themes before making changes

You can do this crudely by modifying the gift-wrap customization to only show when cart.total_price is equal to or more than $100

https://shopify.dev/tutorials/customize-theme-add-gift-wrap-option

Example only , change the opening logic, here using pennies

{% if linklists.gift-wrapping.links.size > 0 and
linklists.gift-wrapping.links.first.type == 'product_link' %}
{% if cart.total_price >= 100000 and linklists.gift-wrapping.links.size > 0 and
linklists.gift-wrapping.links.first.type == 'product_link' %}

Can you please guide me?

If you need to get this customization contact me paull.newton+shopifyforums@gmail.com with store url, theme name, and problem description so I have context.

If you just want contributors to be able to help you on the forums show the problem you are having or ask clarifying questions, don’t ask to ask.