Skip Navigation

Resolved

Resolved in: 4.5.6

Overview of the issue

When you create a page using Divi page builder and use Woo Title or Woo Description modules and translate the page, the selected product will not be translated on the translated page.

Workaround

Our developers are working on implementing a feature to fix this issue. As a workaround, you can add the following snippet to your child theme’s functions.php file

 add_filter( 'et_pb_module_shortcode_attributes', function( $props ) { if ( isset( $props['product'] ) && !is_product() ) { $props['product'] = apply_filters( 'wpml_object_id', $props['product'], 'product', true ); } return $props; } ); 

Once added, the translate product title/description will be displayed on the translated page.

комментария 4 на “Divi Woo Title and Woo Description modules don't display the translated product”

    • Hello!
      I am sorry that this workaround creates a problem for your site.
      Could you please create a new ticket in our support forum, so that we can investigate the problem and adjust the workaround?
      It would help tremendously if when you open the ticket, that you provide debug log from WordPress that shows the error.