• Could you please translate “Items Subtotal :” in to Slovak “Medzisú?et:” I would do it, i translated multiple other words in your page to help translate but I cant find this one. Thank you

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello @dadka03,

    Thanks for reaching out to us.

    To change the Item Subtotal text to Medzisú?et, please use the code snippet below in your theme’s functions.php file or with a code snippet plugin:

    add_filter('woo_invoice_filter_template_label', 'woo_invoice_filter_template_label_callback', 10, 3);
    
    function woo_invoice_filter_template_label_callback($label, $order, $template) {
        if ($label == 'Items Subtotal') {
            return 'Medzisú?et';
        }
        return $label;
    }

    This should help you achieve the translation. Let us know if you need any further assistance!

Viewing 1 replies (of 1 total)
  • You must be logged in to reply to this topic.