Okay
  Public Ticket #2790497
Remove Image from Grid View
Closed

Comments

  • Emelia started the conversation

    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.

  •  799
    Zhivko replied

    Hi,

    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