Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Shopify + CartJS updating total price with JS?

I'm trying to update some data with AJAX on my Shopify theme, I'm also using the CartJS plugin. I have the counter working find but when I come to update the price it doesn't format correctly. It does add all the correct numbers but misses out any currency symbol or decimal point.

Here's the code snippet:

<div id="mini-cart">
    <h2>Basket Updated <span class="btn-close">x</span></h2>
    <p><strong class="item-count">{{ cart.item_count }}</strong> item(s). Costing <strong class="total-price">{{ cart.total_price | money }}</strong></p>
</div>

<script>
    $(document).on('cart.requestComplete', function(event, cart) {

        $('.item-count').html(cart.item_count);
        $('.total-price').html(cart.total_price);
    });
</script>

I think it has something to do with {{ cart.total_price | money }} but whenever I add the | money bit into the JS the whole thing breaks. Is there a way to format that in the script?

Thanks!

like image 649
user1406440 Avatar asked Dec 09 '25 01:12

user1406440


1 Answers

You should be sure to load also the option_selection.js library in your theme.liquid here is the string to add:

{{ 'option_selection.js' | shopify_asset_url | script_tag }} 

Ref. https://cartjs.org/pages/guide#getting-started-setup

like image 84
Giovanni Mazzuoccolo Avatar answered Dec 11 '25 14:12

Giovanni Mazzuoccolo



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!