Hozzanator Posted December 4, 2020 Share Posted December 4, 2020 Site URL: https://www.pcupgrade.org/competition/8rg4ap6i7a84ojl8alljljnsitsg3o-wddar-wdzta-9f6dt-c8dak I am trying to customize the scarcity text from say "only 150 left in stock" to "only 150 tickets left" or anything else I like really. The custom label is no good as it doesn't add the quantity of items. can anyone helps with this please? Beyondspace 1 Link to comment
Beyondspace Posted December 5, 2020 Share Posted December 5, 2020 49 minutes ago, Hozzanator said: Site URL: https://www.pcupgrade.org/competition/8rg4ap6i7a84ojl8alljljnsitsg3o-wddar-wdzta-9f6dt-c8dak I am trying to customize the scarcity text from say "only 150 left in stock" to "only 150 tickets left" or anything else I like really. The custom label is no good as it doesn't add the quantity of items. can anyone helps with this please? Could you try this method, kindly move the placeholde {remain} anywhere in the string <script> var scarcityMessage = "Only {remain} tickets left"; window.Squarespace.onInitialize(Y, function() { if (document.querySelector(".product-scarcity")) { var text = document.querySelector(".product-scarcity").innerText; var remain = text.match("Only (.*) left"); console.log(remain); if (remain) { remain = remain[1]; } document.querySelector(".product-scarcity").innerText = scarcityMessage.replace("{remain}", remain); } }); </script> Greeting, it's BeyondSpace, I am Squarespace dev focus on provide solutions to enhance feature that squarespace.com can't provide.Feel free to check my current Squarespace Plugins Developement: Enable Pinch/Zoom on lightbox, Delivery Date Picker, Lightbox Studio pluginIf you find my answer fit your need, let's leave a like or upvote so others with the same issue can find their solution. Thank you Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment