Home › Forums › WoodMart support forum › FATAL ERROR WITH NEW WOODMART 6.3.1 › Reply To: FATAL ERROR WITH NEW WOODMART 6.3.1
March 9, 2022 at 8:13 am
#359013
Artem Temos
Keymaster
Hi,
Try to edit the file woodmart/inc/integrations/visual-composer/maps/author-area.php
and replace the following code
'category' => woodmart_get_tab_title_category_for_wpb( esc_html__( 'Theme elements', 'woodmart' ) ),
with this one
'category' => function_exists( 'woodmart_get_tab_title_category_for_wpb' ) ? woodmart_get_tab_title_category_for_wpb( esc_html__( 'Theme elements', 'woodmart' ) ) : esc_html__( 'Theme elements', 'woodmart' ),
Kind Regards