mweimerskirch / wordpress-qtranslate-support-for-woocommerce

Plugin to make qTranslate work with WooCommerce
wordpress.org/plugins/qtranslate-support-for-woocommerce/
MIT License
6 stars 7 forks source link

Translate product categories #9

Closed cubeweb closed 4 years ago

cubeweb commented 10 years ago

If you want to translate product categories, tags, types just add this in your plugin. It worked for me, except product attributes, thanks.

add_action( 'product_cat_add_form', 'qtrans_modifyTermFormFor' ); add_action( 'product_cat_edit_form', 'qtrans_modifyTermFormFor' );

add_action( 'product_type_add_form', 'qtrans_modifyTermFormFor' ); add_action( 'product_type_edit_form', 'qtrans_modifyTermFormFor' );

add_action( 'product_tag_add_form', 'qtrans_modifyTermFormFor' ); add_action( 'product_tag_edit_form', 'qtrans_modifyTermFormFor' );