Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
937 B
2
Indexable
Never
function change_product_text() {
    if ( is_cart() || is_checkout() ) {
        ?>
        <script type="text/javascript">
            jQuery(document).ready(function($) {
                // Reemplaza el texto en el bloque de revisión del checkout
                $('.woocommerce-checkout-review-order-table .product-name strong:contains("Inserisci la larghezza (m):")').each(function() {
                    $(this).text($(this).text().replace('Inserisci la larghezza (m):', 'Larghezza:'));
                });

                // Reemplaza el texto en el carrito
                $('.woocommerce-cart-form .product-name strong:contains("Inserisci la larghezza (m):")').each(function() {
                    $(this).text($(this).text().replace('Inserisci la larghezza (m):', 'Larghezza:'));
                });
            });
        </script>
        <?php
    }
}
add_action('wp_footer', 'change_product_text');