Plugin Breaks Another Plugin's Featured Image – It's Back
-
Hey Mark,
We chatted about three years ago on a Featured Image issue, and it was happening again recently so I wanted to bring it to your attention.
Below is the original thread, but the summary is I am using a ThemeFuse them that does not use Featured Images, I have enabled it through the child theme functions.php using:
add_theme_support('post-thumbnails');Last time the issue was some code, listed below, in Team Rosters that was a conflict with Simple Staff List.
‘add_action( ‘after_setup_theme’, ‘mstw_tr_add_feat_img’ );
function mstw_tr_add_feat_img( ) {
if ( function_exists( ‘add_theme_support’ ) )
add_theme_support( ‘post-thumbnails’, array( ‘player’ ) );
}’As the symptoms were exactly the same this time I checked the original thread and found the current version has this code again:
add_action( 'after_setup_theme', 'mstw_tr_add_feat_img' ); function mstw_tr_add_feat_img( ) { add_theme_support( 'post-thumbnails', array( 'mstw_tr_player' ) ); }Removing that code fixes the issue.
Here is our original thread:
https://ww.wp.xz.cn/support/topic/plugin-breaks-another-plugins-featured-image?replies=12
Love the plugin, and thanks again. Also, this recent thread may be related.
https://ww.wp.xz.cn/support/topic/cannot-set-featured-image-4?replies=2
The topic ‘Plugin Breaks Another Plugin's Featured Image – It's Back’ is closed to new replies.