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

    Hello,
    I’d like to have Dutch version of “All” – “Alles” in portfolio section? How can I do it?
    Appreciated for your help!

    #234691

    Hey Soapmarine!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on functions.php:

    add_filter('avf_portfolio_sort_first_label', 'avf_change_portfolio_sort_first_label', 10, 1);
    
    function avf_change_portfolio_sort_first_label($first_item_name) {
    	$first_item_name = __('Todo','avia_framework' );
    	return $first_item_name;
    }

    Best regards,
    Ismael

    #234765

    Thank you very much, Ismael!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘How to change in portfolio "All"?’ is closed to new replies.