Home / Admin / Translating the Total Field’s Order Summary
Duplicate Snippet

Embed Snippet on Your Site

Translating the Total Field’s Order Summary

This code targets specific elements inside the Order Summary and updates the labels to the translated text.

<10
Code Preview
php
<?php
add_action('wpforms_wp_footer_end', function () {
    ?>
    <script>
        (function($) {
            $(document).ready(function() {
                // Replace the text in the Total field and Order Summary to German
                $('th.wpforms-order-summary-item-label').text('<?php echo esc_js( __( 'Artikel', 'wpforms' ) ); ?>');
                $('th.wpforms-order-summary-item-quantity').text('<?php echo esc_js( __( 'Menge', 'wpforms' ) ); ?>');
                $('th.wpforms-order-summary-item-price').text('<?php echo esc_js( __( 'Gesamt', 'wpforms' ) ); ?>');
                $('tr.wpforms-order-summary-preview-total .wpforms-order-summary-item-label').text('<?php echo esc_js( __( 'Gesamt', 'wpforms' ) ); ?>');
                $('tr.wpforms-order-summary-placeholder td').text('<?php echo esc_js( __( 'Es wurden keine Produkte ausgewählt.', 'wpforms' ) ); ?>');
            });
        })(jQuery);
    </script>
    <?php
});

Comments

Add a Comment