Tagged: translate, woocommerce, wpml
I create the product in default language (english)
but when I translate in another language with WPML (payed plugin) the layout is not the same:
please could help me !
Thank you in advance.
Andy
Hey Iaminweb,
Thank you for using Enfold.
I’m sorry but the advance layout builder is incompatible with the WooCommerce Multilingual Translation plugin because it has to use the default editor instead of the builder template.
Unfortunately, not all extensions will work properly if you use the advance layout builder for products.
Please note that the Advanced Layout Builder for products will not work with all WooCommerce Extensions
Best regards,
Ismael
Thank you Ismael !
I made a product without the advance biulder, this is a bookable product so there is the calendar for start day and end day:
the problem is that the calendar dont show properly
Please could help me to fix this problem.
Thank you in advance
Andy
Hi,
We added the following code in the functions.php file.
function add_custom_script(){
?>
<script type="text/javascript">
(function($){
function a() {
var picker = $('.wceb_picker_wrap .picker');
$(picker).detach();
$(picker).prependTo('#main')
}
$(window).load(function() {
a();
});
})(jQuery);
</script>
<?php
}
add_action('wp_footer', 'add_custom_script');
Best regards,
Ismael