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”?
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
Thank you! It works :).
Cheers!
Mac