Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #393555

    Servus,

    ich möchte das auf der Blogseite und auf den Singl Posts “kein” Avatarbild zu sehen ist…also neben dem Beitrag soll gar nichts erscheinen…wie bekomme ich das hin?

    Gruss und Danke im Voraus

    #393606

    Hi CBessler!

    Danke dass Du unser Theme verwendest.

    In functions.php am Ende:

    
    add_filter('avf_loop_index_blog_meta', 'my_avf_loop_index_blog_meta', 10, 1);
    
    function my_avf_loop_index_blog_meta ($blog_meta_output)
    {
    	if( is_blog()) $blog_meta_output = '';
    	
    	return $blog_meta_output;
    }
    

    LG
    Günter

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