Sorry, it looks like a bug in our theme that is going to be fixed asap. Try to edit the file woodmart/inc/integrations/visual-composer/maps/images-gallery.php
and replace the following code
woodmart_get_vc_animation_map( 'wd_animation' ),
woodmart_get_vc_animation_map( 'wd_animation_delay' ),
woodmart_get_vc_animation_map( 'wd_animation_duration' ),
with this one
function_exists( 'woodmart_get_vc_animation_map' ) ? woodmart_get_vc_animation_map( 'wd_animation' ) : '',
function_exists( 'woodmart_get_vc_animation_map' ) ? woodmart_get_vc_animation_map( 'wd_animation_delay' ) : '',
function_exists( 'woodmart_get_vc_animation_map' ) ? woodmart_get_vc_animation_map( 'wd_animation_duration' ) : '',