Hello,
I’d like to have Dutch version of “All” – “Alles” in portfolio section? How can I do it?
Appreciated for your help!
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
Thank you very much, Ismael!