Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter blackears

    (@blackears)

    Well, the test emails are coming through fine and I had no problems receiving any notifications before I had to reinstall WordPress. I’m also using the same configuration I’ve used before to contact my SMTP server.

    I think this is more an issue of WP for some reason not sending the emails in the first place. Maybe I have to enable that somewhere?

    • This reply was modified 8 years, 1 month ago by blackears.
    Thread Starter blackears

    (@blackears)

    I’ve also tried SMTP mailer and a few other SMTP plugins. I’m still not receiving any email.

    • This reply was modified 8 years, 1 month ago by blackears.
    Thread Starter blackears

    (@blackears)

    Yes, that worked. Thanks.

    Thread Starter blackears

    (@blackears)

    Tried that, but it didn’t work. Here is the start of my ComicsPress index.php file:

    global $withcomments;
    get_header();
    if (!comicpress_themeinfo('disable_comic_frontpage') && !comicpress_themeinfo('disable_comic_blog_frontpage') && !is_paged() )  {
    	$wp_query->in_the_loop = true; $comicFrontpage = new WP_Query();
    	$order = 'DESC';
    	if (comicpress_themeinfo('display_first_comic_on_home')) $order = 'ASC';
    	$comicFrontpage->query('showposts=1&order='.$order.'&cat='.comicpress_all_comic_categories_string());
    	while ($comicFrontpage->have_posts()) : $comicFrontpage->the_post();
    		comicpress_display_post();
    		if (comicpress_themeinfo('disable_blog_frontpage') && comicpress_themeinfo('display_comments_on_home')) {
    			$withcomments = 1;
    			comments_template('', true);
    		}
    	endwhile;
    }
Viewing 4 replies - 1 through 4 (of 4 total)