Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I upgraded to 2.3.1 and began having comment notification e-mail errors. The e-mail is supposed to be going to the admin e-mail address, but there’s some reference to a wordpress@xxx.com e-mail address. Also, the non-moderated comment doesn’t seem to show up on the single-item page as it did before. Seems like the upgrade changed something, but not sure what–or if it’s related to jaero’s problem.

    Sounds like you had “Comments Off” set before you turned them “On.” In that case, all the previously created, individual entries are turned “Off” for comments when they were created. You would have to go back and turn them “On” individually within WordPress in order to allow visitors to now enter comments for them. You could also do a mass “turn on” using phpMyAdmin. All entries you create after turning on the comment feature will have their comment flag set to “On.”

    Thread Starter gdallen

    (@gdallen)

    Thanks for the tip, and I’ve created a text-only Web page for low-bandwidth, usually portable devices that displays just the unformatted text of my Web site, and only the first seven items. Here’s the code in a file I named “mobile.php” and placed in the same folder as the main index.php file:

    <?require(‘wp-blog-header.php’);?>
    <?php query_posts(‘posts_per_page=7&&what_to_show=posts’); ?>
    <?php if (have_posts()) : ?>
    * MyWebSiteName *<br><br>
    <?php while (have_posts()) : the_post(); ?>
    <?php the_date(‘M j, \’y’) ?><br>
    <?php the_title(); ?>
    <?php the_content(‘more »’); ?>
    <?php endwhile; ?>
    <?php endif; ?>

Viewing 3 replies - 1 through 3 (of 3 total)