A space to discuss online store customization, theme development, and Liquid templating.
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
I'm trying to add sezzle widget to the product page for ELLA & DAWN but it isn't adding with sezzle's widget app neither the code. I'm only getting to add zip's widget.
Solved! Go to the solution
This is an accepted solution.
add this code main-product section line 219 to 232
<!-- Sezzle Static Widget -->
<div id="sezzle-widget"></div>
{{ 'sezzle-static-widget.js' | asset_url | script_tag }}
<script>
var renderSezzle = new AwesomeSezzle({
amount: '{{ product.selected_or_first_available_variant.price | money | strip_html }}'
})
renderSezzle.init();
document.onchange = function(){
var newPrice = '{{product.selected_or_first_available_variant.price | money | strip_html}}';
renderSezzle.alterPrice(newPrice);
}
</script>
<!-- End Sezzle Static Widget -->
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community!😊
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
thanks i can see this your Dawn theme
do you have any different theme>?
ok please share your device details
This is an accepted solution.
add this code main-product section line 219 to 232
<!-- Sezzle Static Widget -->
<div id="sezzle-widget"></div>
{{ 'sezzle-static-widget.js' | asset_url | script_tag }}
<script>
var renderSezzle = new AwesomeSezzle({
amount: '{{ product.selected_or_first_available_variant.price | money | strip_html }}'
})
renderSezzle.init();
document.onchange = function(){
var newPrice = '{{product.selected_or_first_available_variant.price | money | strip_html}}';
renderSezzle.alterPrice(newPrice);
}
</script>
<!-- End Sezzle Static Widget -->