JQuery If Statement: If Price = 0, Display Message – Magento
Working on a file that displays/overlays pricing for Magento 2.3.3 and I have the following JQuery statement: if(price != 0){ $('#product-price-'+product_id+' .price').html(price); } I want to change that so that if the price = 0, it displays a message to…