Hi @grumo64,
Seem we need to use “Polylang for WooCommerce” but we don’t have it. Could you please give us a staging environment (with the same configuration of your site) then we’ll work on it? If yes, please contact us via Support Forum on our website.
Regards,
I installed Polylang for woocommerce and everything works now.
One more thing is it possible to show product variation when using th woocommerce shortcode(I know that’s anather topic but…)
I found by myself how to display production variation with native woocommerce shortcode.
Simply paste the following code:
add_filter( 'woocommerce_shortcode_products_query', 'woocommerce_shortcode_products_query_post_type');
function woocommerce_shortcode_products_query_post_type($query_args){
$query_args['post_type'] = array('product', 'product_variation');
return $query_args;
}
-
This reply was modified 4 years, 8 months ago by
grumo64.