Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #313238

    Hi there,

    I used the Accordion for the FAQ. I set for every question a toggle tag.

    Now I would like to change this ‘all’ to ‘Alle’.
    But i don’t find any configuration to change this one?

    BR Timon

    #313370

    bump :)

    #313947

    Hi!

    Normally the German language files should translate this word. If it does not work on you website add this code to the child theme functions.php file (or enfold/functions.php). I recommend to insert the code at the very bottom.

    
    add_filter('avf_toggle_sort_first_label','avia_change_toggle_label', 10, 2);
    
    	function avia_change_toggle_label($all, $params)
    	{
    		$all =  "Alle";
    		return $all;
    	}
    

    Cheers!
    Peter

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