I use the Portfolio.
Can I change the Word “All” to “Portfolio” ?
Hey royaltask!
Are you talking about the “All” link that get’s displayed with the Masonry element when you enable sorting? If so then try adding this to the bottom of your /enfold/functions.php file.
add_filter( 'avf_masonry_sort_first_label', 'enfold_customization_change_all_text' );
function enfold_customization_change_all_text( $text ) {
return 'Portfolios:';
}
Cheers!
Elliott