skip to Main Content

Woocommerce – jQuery – Wrong price calculation

I have this code in elementor custom code, it's loaded at the end of the body tag. <script> jQuery(document).ready(function($){ var productPrice; var finalProductPrice; var shippingPrice; var servicePrice; var result; var output; // $('#ship-price-a').on('click', function(){ if( typeof productPrice === 'undefined' ){…

VIEW QUESTION

Woocommerce – jQuery – Unable to select value of an element added using elementor

I have this code in elementor custom code <script> jQuery(document).ready(function($){ $('#ship-price').on('click', function(){ var originalPrice = $('#product-price').val(); console.log(originalPrice); // var shipPrice = $('#ship-price').val(); console.log(shipPrice); }); }); </script> I'm trying to select two elements that I've added using elementor and where I…

VIEW QUESTION

Elementor – Named entity expected, got none

Please check the below code <!-- Calendly inline widget begin --> <div class="calendly-inline-widget" data-url="https://calendly.com/example/chat?text_color=202a3b&primary_color=4eaf4e" style="min-width:800px;height:800px;"></div> <script type="text/javascript" src="https://assets.calendly.com/assets/external/widget.js"></script> <!-- Calendly inline widget end --> I am trying to add this code as an HTML block in my WordPress website powered…

VIEW QUESTION
Back To Top
Search