Hi
How to change text “Portfolio Items” in search panel to other text?
Thanks in advance
Hi foxtrotstudio!
Thank you for visiting Kriesi’s support forum.
Please use this on functions.php:
add_filter('avf_ajax_search_label_names','avia_change_pt_label_name', 10, 1);
function avia_change_pt_label_name($label)
{
if($label == 'Portfolio Items') $label = 'NEW LABEL HERE';
return $label;
}
Remove browser cache then reload the page a few times.
Regards,
Ismael
That works, awesome thanks! :)
Is it also possible to change its title in wordpress admin?
OK i did it using plugin admin menu editor. Thanks again! :)