Quickly remove WP Bakery (Visual Composer) code from loading on your posts

116
black woman shiv scripts and styles with sword

Thousands of websites use WP Bakery (Visual composer). Most of them use it only on pages, but not on posts. There is an easy way to remove WP Bakery styles and scripts loading on your posts. Add this code to your functions.php:

/* remove wp bakery scripts and styles from posts */
function dequeue_visual_composer_css() {
if (is_single()) {
wp_dequeue_style('js_composer_front');
wp_dequeue_style('td-vc-composer-css-shim');
}
}
add_action('wp_enqueue_scripts', 'dequeue_visual_composer_css', 1003);

Done! Thanks for reading.

Kenobi
Dr. Kenobi holds a Ph.D. in Computer Science and is a seasoned tech writer specializing in Windows, WordPress, hosting, and system optimizations. With an eye for detail and a passion for creating custom websites and tailored hosting environments, he combines rigorous academic insight with practical, hands-on experience. When he isn’t demystifying the latest tech trends, he’s busy with creative projects—from wall painting to woodwork—blending artistry with engineering. His authoritative perspective and diverse skill set make every article a trusted resource for tech enthusiasts and professionals alike.

LEAVE A REPLY

Please enter your comment!
Please enter your name here