Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
shortpixel-image-optimiser
/
class
/
external
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php class visualComp { public function __construct() { add_filter('shortpixel/init/automedialibrary', array($this, 'check_vcinline')); } public function check_vcinline($bool) { if (function_exists('vc_action') && vc_action() == 'vc_inline') { return false; } else { return $bool; } } } $vc = new visualComp();