How can I replace the title ‘All’ by another word in the portfolio
Where can I do that ?
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
Tried adding these lines at bottom of Functions.php.
No success though.
I am using a Masonry portfolio. Would that be the issue ?
Tried adding these lines at bottom of Functions.php.
No success though.
I am using a Masonry portfolio. Would that be the issue ?