This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Hiding Search Bar

#51697
Ernest MarcinkoErnest Marcinko
Keymaster

Sure, we can try that!

Okay, so with this, the first search (ID=1) on pages 13702 and 2428 should be hidden. Should no affect any other search bars:

add_filter( 'asp_shortcode_output', function( $output, $id ){
	if ( $id != 1 ) {
		return $output;
	}
	if ( get_the_ID() == 13702 || get_the_ID() == 2428 ) {
		return '';
	}

	return $output;
}, 10, 2 );