Viewing 3 posts - 1 through 3 (of 3 total)
Viewing 3 posts - 1 through 3 (of 3 total)
- The topic ‘Rename "All" category in masonry gallery’ is closed to new replies.
How do I rename the “All” Category in the masonry gallery?
Hi mcraig77!
Please add following code to Functions.php file in Appearance > Editor and adjust as needed
add_filter('avf_masonry_sort_first_label','new_first_label');
function new_first_label() {
$first_item_name = "New All";
return $first_item_name;
}
Regards,
Yigit
Thanks!