Comments Emelia started the conversationMay 31, 2021 at 10:49amIs there a way to remove the images from box grid view all together. The project I am working on doesn't need images anymore. 877Zhivko repliedMay 31, 2021 at 3:46pmHi,Open your theme or child-theme functions.php file and apply following filter: add_filter('stec_event_get_front_data', function($data) { $data['images'] = []; $data['images_meta'] = []; return $data;}); Stachethemes Developer Sign in to reply ...
Is there a way to remove the images from box grid view all together. The project I am working on doesn't need images anymore.
Hi,
Open your theme or child-theme functions.php file and apply following filter:
Stachethemes Developer