Hi,
How do I translate default sorting tag – ALL – in accrodion element?
It seems to be hard-coded
<div class=”taglist”>
All
Hey axelfx07!
Please add following code to Functions.php file in Appearance > Editor and change it as needed
add_filter('avf_toggle_sort_first_label','new_toggle_tag');
function new_toggle_tag(){
$output = "New title";
return $output;
}
Best regards,
Yigit