15

How to Replace Front-End Text on a WordPress Website

Powered by WPCodeBox

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")
    );
  });
});

Other Snippets

WPCodeBox is a WordPress Code Snippets Manager that allows you to share your WordPress Code Snippets across your sites.