How to Set a Minimum Order Amount in W...
Easily set a minimum order amount for your WooCommerce store. This snippet displays a...

WPCodeBox
349

This code snippet helps WordPress website owners control how product thumbnail images behave on single product pages, preventing unwanted lightbox pop-ups.
/**
* Author: WP Turned UP
* Author URI: https://wpturnedup.com
*/
// REPLACE TEXT THAT LOCO TRANSLATE CAN'T REACH
jQuery(document).ready(function ($) {
$(".item-property").each(function () {
var text = $(this).text();
$(this).text(
text.replace("enter-your-original-text", "enter-your-new-text")
);
});
});





