Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #303447

    Hi
    How to change text “Portfolio Items” in search panel to other text?

    Thanks in advance

    #303650

    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

    #303673

    That works, awesome thanks! :)

    #303674

    Is it also possible to change its title in wordpress admin?

    #303676

    OK i did it using plugin admin menu editor. Thanks again! :)

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘How to change text "Portfolio Items" in search panel to other text’ is closed to new replies.