Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › Hiding Search Bar › Reply To: Hiding Search Bar
November 4, 2024 at 12:55 pm
#51697
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 );