eveums
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Single Post Display – “Reading” Setting Not Workingthanks for the clarification.
Forum: Plugins
In reply to: [Plugin: WP Contact Form] Is This Plug-in Dead?Plugin doesn’t work in 2.8.4. Get the following error:
Warning: main(buttonsnap.php): failed to open stream: No such file or directory in /home/annsarah/public_html/experience/modyssey/wp-content/plugins/wp-contactform.php on line 39 Warning: main(): Failed opening 'buttonsnap.php' for inclusion (include_path='') in /home/annsarah/public_html/experience/modyssey/wp-content/plugins/wp-contactform.php on line 39 Fatal error: Call to undefined function: buttonsnap_dirname() in /home/annsarah/public_html/experience/modyssey/wp-content/plugins/wp-contactform.php on line 45
Forum: Fixing WordPress
In reply to: Add list of category posts to sidebarThank you! Truly, effective searching is an art! ??
This code worked for me:
<?php if ( is_single() ) { $cats = wp_get_post_categories($post->ID); if ($cats) { $first_cat = $cats[0]; $args=array( 'cat' => $first_cat, 'post__not_in' => array($post->ID), 'showposts'=>5, 'caller_get_posts'=>1 ); $my_query = new WP_Query($args); if( $my_query->have_posts() ) { echo 'More'; while ($my_query->have_posts()) : $my_query->the_post(); ?> <p><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ? ></a></p> <?php endwhile; } //if ($my_query) } //if ($cats) wp_reset_query(); // Restore global post data stomped by the_post(). } //if (is_single()) ?>
Forum: Plugins
In reply to: Google Analytics pluginYes, Google Analytics is by invitation only.
It is free to use for up to 5 million hits per month if you’re not an AdWords user, or free to use regardless of hits if you are an AdWords user.Forum: Fixing WordPress
In reply to: RSS problemDavidjg,
Thanks for the tips. I checked the RSS feed in the other readers, and they appeared fine, so it looks like a Bloglines issue.Many thanks to you. I appreciate the time.
Forum: Fixing WordPress
In reply to: Where to include a no-right-click javascript?Forum: Fixing WordPress
In reply to: Password – continuous promptingI’m still looking for some feedback on this issue. If someone could let me know whether this is even correct behavior or not, I would be very appreciative. Please ??
Forum: Fixing WordPress
In reply to: Password – continuous promptingCould someone at least provide some feedback please – is this normal?
Forum: Themes and Templates
In reply to: Multiple themes -problem with post.phpJust wanted to note that another way to solve this problem is to replace the
require <post.php>
line of code with all the code included on the post.php page itself. This worked for me when the above solution didn’t (such as with the Exquisite theme).Forum: Plugins
In reply to: Theme-Switcher issue at activationVaamYob – are you using the Theme Switcher by Ryan Boren? Same version? If you are using a different plugin, can you post a link, please? Thanks!
Forum: Fixing WordPress
In reply to: How do I disable my RSS feed?Thank you! ??
I tried that, but a post still showed up in Bloglines. Is there a way to disable it completely?Forum: Fixing WordPress
In reply to: 2.0 – emails from wrong addressMatt,
Thank you SOOOOOOOOOO much for your help!! This board is very lucky to have someone as knowledgeable and gracious as you helping out.Thanks again for your attention! ??
Forum: Fixing WordPress
In reply to: 2.0 – emails from wrong addressAwesome! Thank you so much for the help… but I’m still confused. Here’s the code, with lines above and below 290…
$wp_email = 'wordpress@' . preg_replace('#^www.#', '', strtolower($_SERVER['SERVER_NAME']));
if ( '' == $comment->comment_author ) {
[line 290] $from = "From: "$blogname" <$wp_email>";
if ( '' != $comment->comment_author_email )
$reply_to = "Reply-To: $comment->comment_author_email";
} else {
$from = "From: "$comment->comment_author" <$wp_email>";
if ( '' != $comment->comment_author_email )
$reply_to = "Reply-To: "$comment->comment_author_email" <$comment->comment_author_email>";
}Am I missing something? I don’t see $wp_admin… Help! ??
Forum: Fixing WordPress
In reply to: 2.0 – emails from wrong addressI tried this, and it didn’t work.
Specifically, the “please moderate comment” message comes from the correct Admin email address. The moderated comment still comes from “[email protected]” instead of the commenter’s email address.
Quite frustrating for a blogger who responds to comments…
I’m assuming there must be one more function to edit, but I don’t know enough about WP to even guess as to which one it would be. Any help would be greatly appreciated.
Forum: Fixing WordPress
In reply to: password protected site1. Try using a Registered Users Plugin. Only Registered Users of your site with a certain registration level can access the info.
2. Use a .htaccess file to restrict anyone without a username and password from accessing that part of your site.
You’ll find all the details by searching on this forum or using Google. ??