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

    How can I replace the title ‘All’ by another word in the portfolio
    Where can I do that ?

    #405739

    Hi valentin!

    Please add following code to Functions.php file in Appearance > Editor

    add_filter('avf_portfolio_sort_first_label','new_first_label');
    function new_first_label() {
    $first_item_name = "New All Text";
    return $first_item_name;
    }

    Best regards,
    Yigit

    #405769

    Tried adding these lines at bottom of Functions.php.
    No success though.

    I am using a Masonry portfolio. Would that be the issue ?

    #405771

    Tried adding these lines at bottom of Functions.php.
    No success though.

    I am using a Masonry portfolio. Would that be the issue ?

    #405772

    Hi!

    Yes, please use following code instead

    add_filter('avf_masonry_sort_first_label','new_first_label');
    function new_first_label() {
    $first_item_name = "New All Text";
    return $first_item_name;
    }

    Regards,
    Yigit

Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.