Total Theme: Whitelist WPBakery Elements for card builder, grid and flex container
Whitelist in Flex Container add_filter( 'vcex_flex_container_allowed_elements', function( $elements ) { $elements .= ',vcex_image_swap'; //Because of how WPBakery works notice that $elements is a comma separated string, not an array (unlike the cards filter). return $elements; } ); Whitelist in Grid…