Dear Support,
A while back you gave me a piece of code that I added to my functions.php that added the author box to the bottom of all my Blog post pages.
This was it:
function display_author_action( $content ) {
if ( is_singular('post') && !is_single( array(61669, 61670, 11449) ) ) {
$content.=do_shortcode('[x_author title="About the Author"]');
}
return $content;
}
add_filter( 'the_content', 'display_author_action', 20 );
Recently, I added a Modal popup for my optin form, and that Author box started showing in my popups (Check screenshot)
How can i stop the author box from showing in my popups ?
Thanks
