How to Limit Image Upload Size on Your...
Preserve MyListing website performance and disk storage by limiting image upload size...

WPCodeBox
341

Learn how to easily hide taxonomies, such as categories, regions, and tags, from the quick search feature on your website. This snippet provides the code to customize your search results for a cleaner user experience.
<?php
/**
* Author: MyListing Club
* Author URI: https://mylisting.club
*/
// HIDE CATEGORIES
add_filter( 'mylisting/quicksearch/show-categories', '__return_false' );
// HIDE REGIONS
add_filter( 'mylisting/quicksearch/show-regions', '__return_false' );
//HIDE TAGS
add_filter( 'mylisting/quicksearch/show-tags', '__return_false' );



Check it a URL parameter exists in Oxygen Builder.


