Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tamarazuk/fbac05cb34225a543e5e to your computer and use it in GitHub Desktop.
Save tamarazuk/fbac05cb34225a543e5e to your computer and use it in GitHub Desktop.
WooCommerce Measurement Price Calculator - Translate labels
<?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' );
@tamarazuk
Copy link
Author

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.

@Yukyio
Copy link

Yukyio commented Aug 2, 2018

it doesnt work i purchase the plug but i cant translate it

@yosoychicho
Copy link

Same problem

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment