Hi, thank you for your reply.
I have found the solution adding the following function in my child theme:
if( ! function_exists( 'woodmart_get_owl_atts' ) ) {
function woodmart_get_owl_atts() {
return array(
'carousel_id' => '5000',
'speed' => '2000',
'slides_per_view' => '1',
'wrap' => 'yes',
'autoplay' => 'yes',
'autoheight' => 'no',
'hide_pagination_control' => '',
'hide_prev_next_buttons' => '',
'carousel_js_inline' => 'no',
'scroll_per_page' => 'no',
'dragEndSpeed' => 200,
'center_mode' => 'no',
'custom_sizes' => '',
);
}
}
Thanks and regards.