Hide the meta prices of the product shopify

Viewed 15

In Shopify.

My site hides prices if the user is not logged in. And I have hidden prices everywhere, but I only have to do it in window.ShopifyAnalytics.meta (meta prices), which is displayed as a json.

I end up seeing this structure:

<script>
window.ShopifyAnalytics = window.ShopifyAnalytics || {};
window.ShopifyAnalytics.meta = window.ShopifyAnalytics.meta || {};
window.ShopifyAnalytics.meta.currency = 'USD';
var meta = {"product":{

...

};
for (var attr in meta) {
  window.ShopifyAnalytics.meta[attr] = meta[attr];
}
</script>

But how do I hide the prices here?

0 Answers
Related