Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Created July 21, 2022 16:37
Show Gist options
  • Save kimcoleman/7fdab1396da0c5a0c0116b8cb93e93f8 to your computer and use it in GitHub Desktop.
Save kimcoleman/7fdab1396da0c5a0c0116b8cb93e93f8 to your computer and use it in GitHub Desktop.
Hide author avatars in loop views and on single masthead view.
<?php
/**
* Hide author avatars in loop views and on single masthead view.
*/
function my_memberlite_show_author_avatar( ) {
return false;
}
add_filter( 'memberlite_show_author_avatar', 'my_memberlite_show_author_avatar' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment