Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #355368

    I have a question about translating the word “all” when browsing categories on portfolio page. I am using the Polish version. I uploaded the pl_PL.po and .mo files to the theme, but the word “all” did not appear there. How to translate the word “All”?

    #355375

    Hi mwesolowski!

    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;
    }

    Cheers!
    Yigit

    #355432

    Thank you! It works :).

    Cheers!

    Mac

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Translation of "all" on Portfolio page’ is closed to new replies.