Last active
April 30, 2021 14:20
-
-
Save tamarazuk/fbac05cb34225a543e5e to your computer and use it in GitHub Desktop.
WooCommerce Measurement Price Calculator - Translate labels
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // only copy this line if needed | |
function sv_mpc_measurement_label( $label ) { | |
if ( 'fr_FR' === get_locale() ) { | |
$label = str_replace( 'Required Width', 'Largeur requise', $label ); | |
$label = str_replace( 'Width', 'Largeur', $label ); | |
} | |
return $label; | |
} | |
add_filter( 'wc_measurement_price_calculator_label', 'sv_mpc_measurement_label' ); | |
add_filter( 'wc_measurement_price_calculator_unit_label', 'sv_mpc_measurement_label' ); |
Hey Connie, I'm sorry I'm over 2 years late to answer the above! Comments don't trigger a notification I'm afraid. It would be best to use a plugin like Code Snippets to add this code. We have a full tutorial discussing adding custom code to your WordPress site that I would recommend reviewing.
it doesnt work i purchase the plug but i cant translate it
Same problem
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks for the function. So far quite easy to understand.
The only thing I don't understand yet:
Thanks in advance, with kind kind regards,
connie