Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #570687

    Hallo,

    wie kann ich die Funktion “avia_ampersand” abschalten. Gibt es eine andere Möglichkeit, außer die enfold_function.php zu ändern bzw. einfach die css-Style anzupassen?
    Ich habe es in der function.php meines child themes mit
    remove_filter('avia_ampersand','avia_ampersand');
    versucht. Das funktioniert nur leider nicht.

    • This topic was modified 8 years, 10 months ago by davinc.
    #570693

    Hey davinc!

    Try this code:
    add_filter('avia_ampersand','__return_false');
    Best regards,
    Josue

    #570715

    Ich habe das nun in meine function.php gesetzt. Dadurch wurde die komplette Überschrift entfernt in der das “&” steht.

    #570949

    Ich habe den Code von oben weggelassen und in meiner function.php nun einfach die Funktion nochmal aufgerufen und das klappt. Ist das so OK?

    function avia_ampersand($content)
    	{
    		return $content;
    	}
    #571184

    Yes that would work too.

    Best regards,
    Josue

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