(function ($) {
"use strict";
jQuery(document).ready(function ($) {
$('.secific_class').each(function() {
var text = $(this).text();
$(this).text(text.replace('old text', 'New text'));
});
});
}(jQuery));
Jquery Replace specific text in all element
Previous Code
Update WooCommerce Delivery cost with condition
Change Delivery price base on what item in cart ...
Next Code
WooCommerce Discount based on Cart Item
A discount on the total order with condition based ...
0 Comment