I use this code for display checkbox
<?php global $wp_subscribe_reloaded; if (isset($wp_subscribe_reloaded)){ $wp_subscribe_reloaded->stcr->subscribe_reloaded_show(); } ?>
Plugin Author
WPKube
(@wpkube)
Hi,
Switch that to:
<?php global $wp_subscribe_reloaded; if (isset($wp_subscribe_reloaded)){ echo $wp_subscribe_reloaded->stcr->subscribe_reloaded_show(); } ?>
So, the change is adding an echo on that function. The function is hooked to a WordPress filter which expects a return, not an echo, so we switched the function to return. It was causing issues with other plugins that also hook into that WordPress filter.