Tagged: portfolio items
Hi
My site lists holiday homes (portfolio items) and when I do an ajax search Portfolio items are returned (as well as pages and posts)
How do I change the name Portfolio Items in ajax search to Holiday Homes
I am using enfold child theme
Brian
Hi briandeeney!
Thank you for using Enfold.
Please add this filter in the functions.php file:
add_filter('avf_ajax_search_label_names','avf_ajax_search_label_names_mod', 10, 1);
function avf_ajax_search_label_names_mod($label)
{
if($label == 'Portfolio Items') $label = 'Holiday Homes';
return $label;
}
Regards,
Ismael
Hi Ismael
Thanks for that – worked perfectly
Brian