Skip to content

Snippet: Re-Enable Fallback for Deprecated WPBakery Design Options

Back in version 3.2.0 of Total we removed various singular design options in the WPBakery (formerly Visual Composer) row and column modules and added a fallback to make those options get automatically added to the design options tab. We removed the fallbacks after 3 years giving customers a long time to update their sites. If you have updated from an extremely old version of the the theme and notice some design changes on your site you can either update and fix your site manually or use this function to re-add the fallbacks.

add_filter( 'wpex_vc_parse_deprecated_css_options', '__return_true' );
All PHP snippets should be added via child theme's functions.php file or via a plugin. We recommend Code Snippets (100% Free) or WPCode (sponsored)
Back To Top