Re: Post Thumbnail in BP-Default Theme
Whilst I’m not familiar with the plugin I have another suggestion that you use built in featured images that comes with WordPress. Forgive me if you have other reasons for using that plugin but maybe this will work for you.
You can add post thumbnails using featured posts like this for instance in functions.php (adjust size according to what you want):
`if ( function_exists( ‘add_theme_support’ ) ) {
add_theme_support( ‘post-thumbnails’ );
set_post_thumbnail_size( 210,160, true );
}`
Then in the code:
` `
There are many ways to skin the thumbnail cat though this link may help:
https://codex.wordpress.org/Function_Reference/the_post_thumbnail