Snippet: Remove the Image Grid Thumbnails in the WPBakery Backend Editor
The following snippet can be used to remove the image previews (thumbnails) that display in the WPBakery backend editor for the Image Grid element.
add_action( 'vc_after_mapping', function() {
vc_map_update( 'vcex_image_grid', [
'admin_enqueue_js' => '',
'js_view' => '',
] );
}, PHP_INT_MAX );
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)
We recommend Code Snippets (100% Free) or WPCode (sponsored)