- Can “tags” be renamed in the filter sidebar for listings?
- Can you set placeholder text for the tags search in the filter sidebar?
I can’t find an existing snippet for either of these.
Thanks, SM
I can’t find an existing snippet for either of these.
Thanks, SM
Tags can be renamed only by admins in Listings/Tags or vendors can add new tags while creating/editing a listing
Please try this PHP snippet
add_filter(
'hivepress/v1/forms/listing_filter',
function ($form){
if(isset($form['fields']['tags'])){
$form['fields']['tags']['placeholder'] = 'Your custom text here';
}
return $form;
},
1000
);
Thanks. For tags, I meant renaming the label for Tags on the filter form. Can I do that?
If you want to change the Tags label only in the listing filter form then please try this PHP snippet
add_filter(
'hivepress/v1/forms/listing_filter',
function ($form){
if(isset($form['fields']['tags'])){
$form['fields']['tags']['label'] = 'Your custom text here';
}
return $form;
},
1000
);
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.