gdallen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Comment alert going to wrong addressI 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.
Forum: Fixing WordPress
In reply to: Only new posts accept commentsSounds 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.”
Forum: Plugins
In reply to: Topic Output for PDA/CellularThanks 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; ?>