Preview Cards not displayed

Hello, Without more information I’m afraid I cannot really help. But you can send me the login of your site in private reply and I will see whether I can solve the issue.

Direct Message Button (Redirect on Mobile)

Hi Christiaan! I use wp rocket, cloudflare with caching, and redis cache. Can you suggest how I can exempt your elements? We don’t want to turn off our cache. Thanks! Chris

Direct Message Button (Redirect on Mobile)

Hello christofir, I have found the issue, the message button does not work well with caching enabled. Since the cache contains the logged in version, the logged out will also get that link since its cached. If you turn off performance cache it should work.

How to hide preview card leftover space?

I refer you to the snippet from the mylisting helpdesk: https://helpdesk.27collective.net/questions/question/exclude-one-listing-type-from-global-search/ add_filter( 'mylisting/get-listings/before-query', function( &$args, $type ) {     if ( $type->is_global() ) {         $args['meta_query']['listing_type_query'] = [             'key' => '_case27_listing_type',             'value' => 'YOUR-EXCLUDED-LISTING-TYPE-SLUG',             'compare' => 'NOT IN',         ];     }       return $args; }, 150, 2 );