Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #394094

    Hi,

    How do I translate default sorting tag – ALL – in accrodion element?

    It seems to be hard-coded

    <div class=”taglist”>
    All

    #394326

    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

    #397644
    This reply has been marked as private.
    #397656

    Hey!

    Are you using Portfolio Grid element? If so, please use following

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.