Hi,
I want to put the subscribe form to all of my posts by adding it to the single.php of my theme.
Somehow I can't get it working. Hope you can help.
Thx in advance
Lucia
Hi,
I want to put the subscribe form to all of my posts by adding it to the single.php of my theme.
Somehow I can't get it working. Hope you can help.
Thx in advance
Lucia
Hi Lucia. You can try adding this code at the end of functions.php of your theme:
if ( ! function_exists( 'easymail_add_form_in_single' ) ) :
function easymail_add_form_in_single( $content ) {
if ( is_single() ) { // conditional tags
$content .= "[ALO-EASYMAIL-PAGE]";
}
return $content;
}
add_filter('the_content', 'easymail_add_form_in_single');
endif;
If you want more conditional tags see the WP codex.
Then, remember to not use together to the EasyMail widget: otherwise they don't work properly, so disable the widget.
@ alo
thx for the tip. It works but how do I change the formating now?
In the alo-easymail/css/jquery.ui.tabs.css?
You must log in to post.