Title: eveums's Replies | WordPress.org

---

# eveums

  [  ](https://wordpress.org/support/users/eveums/)

 *   [Profile](https://wordpress.org/support/users/eveums/)
 *   [Topics Started](https://wordpress.org/support/users/eveums/topics/)
 *   [Replies Created](https://wordpress.org/support/users/eveums/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/eveums/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/eveums/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/eveums/engagements/)
 *   [Favorites](https://wordpress.org/support/users/eveums/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 154 total)

1 [2](https://wordpress.org/support/users/eveums/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/eveums/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/eveums/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/eveums/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/eveums/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/eveums/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Single Post Display – “Reading” Setting Not Working](https://wordpress.org/support/topic/single-post-display-reading-setting-not-working/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/single-post-display-reading-setting-not-working/#post-1372340)
 * thanks for the clarification.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: WP Contact Form] Is This Plug-in Dead?](https://wordpress.org/support/topic/plugin-wp-contact-form-is-this-plug-in-dead/)
 *  [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [16 years, 8 months ago](https://wordpress.org/support/topic/plugin-wp-contact-form-is-this-plug-in-dead/#post-1153081)
 * 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add list of category posts to sidebar](https://wordpress.org/support/topic/add-list-of-category-posts-to-sidebar/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [17 years ago](https://wordpress.org/support/topic/add-list-of-category-posts-to-sidebar/#post-1060799)
 * Thank 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Google Analytics plugin](https://wordpress.org/support/topic/google-analytics-plugin/)
 *  [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [19 years, 11 months ago](https://wordpress.org/support/topic/google-analytics-plugin/#post-328971)
 * Yes, 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [RSS problem](https://wordpress.org/support/topic/rss-problem-4/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/rss-problem-4/#post-333453)
 * Davidjg,
    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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Where to include a no-right-click javascript?](https://wordpress.org/support/topic/where-to-include-a-no-right-click-javascript/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/where-to-include-a-no-right-click-javascript/#post-329397)
 * [@spencerp](https://wordpress.org/support/users/spencerp/): Thanks for the info
   and the food for thought. I appreciate you sharing your thoughts.
 * [@donr](https://wordpress.org/support/users/donr/): I don’t develop browsers,
   but I’m sure your suggestion’s a good one.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password – continuous prompting](https://wordpress.org/support/topic/password-continuous-prompting/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 3 months ago](https://wordpress.org/support/topic/password-continuous-prompting/#post-322083)
 * I’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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Password – continuous prompting](https://wordpress.org/support/topic/password-continuous-prompting/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/password-continuous-prompting/#post-322021)
 * Could someone at least provide some feedback please – is this normal?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Multiple themes -problem with post.php](https://wordpress.org/support/topic/multiple-themes-problem-with-postphp/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/multiple-themes-problem-with-postphp/#post-199885)
 * Just 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Theme-Switcher issue at activation](https://wordpress.org/support/topic/theme-switcher-issue-at-activation/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/theme-switcher-issue-at-activation/#post-321073)
 * VaamYob – 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I disable my RSS feed?](https://wordpress.org/support/topic/how-do-i-disable-my-rss-feed/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/how-do-i-disable-my-rss-feed/#post-321583)
 * Thank you! 🙂
    I tried that, but a post still showed up in Bloglines. Is there
   a way to disable it completely?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.0 – emails from wrong address](https://wordpress.org/support/topic/20-emails-from-wrong-address/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/20-emails-from-wrong-address/#post-309888)
 * Matt,
    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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.0 – emails from wrong address](https://wordpress.org/support/topic/20-emails-from-wrong-address/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/20-emails-from-wrong-address/#post-309886)
 * Awesome! 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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [2.0 – emails from wrong address](https://wordpress.org/support/topic/20-emails-from-wrong-address/)
 *  Thread Starter [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/20-emails-from-wrong-address/#post-309883)
 * I 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 “wordpress@server.com” 
   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](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [password protected site](https://wordpress.org/support/topic/password-protected-site/)
 *  [eveums](https://wordpress.org/support/users/eveums/)
 * (@eveums)
 * [20 years, 4 months ago](https://wordpress.org/support/topic/password-protected-site/#post-318480)
 * 1. 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. 🙂

Viewing 15 replies - 1 through 15 (of 154 total)

1 [2](https://wordpress.org/support/users/eveums/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/eveums/replies/page/3/?output_format=md)…
[9](https://wordpress.org/support/users/eveums/replies/page/9/?output_format=md)
[10](https://wordpress.org/support/users/eveums/replies/page/10/?output_format=md)
[11](https://wordpress.org/support/users/eveums/replies/page/11/?output_format=md)
[→](https://wordpress.org/support/users/eveums/replies/page/2/?output_format=md)