Forum Replies Created

Viewing 15 replies - 1 through 15 (of 154 total)
  • Thread Starter eveums

    (@eveums)

    thanks for the clarification.

    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
    Thread Starter eveums

    (@eveums)

    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
    In reply to: Google Analytics plugin

    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
    In reply to: RSS problem
    Thread Starter eveums

    (@eveums)

    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.

    Thread Starter eveums

    (@eveums)

    @spencerp: Thanks for the info and the food for thought. I appreciate you sharing your thoughts.

    @donr: I don’t develop browsers, but I’m sure your suggestion’s a good one.

    Thread Starter eveums

    (@eveums)

    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 ??

    Thread Starter eveums

    (@eveums)

    Could someone at least provide some feedback please – is this normal?

    Thread Starter eveums

    (@eveums)

    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).

    Thread Starter eveums

    (@eveums)

    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!

    Thread Starter eveums

    (@eveums)

    Thank you! ??
    I tried that, but a post still showed up in Bloglines. Is there a way to disable it completely?

    Thread Starter eveums

    (@eveums)

    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! ??

    Thread Starter eveums

    (@eveums)

    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! ??

    Thread Starter eveums

    (@eveums)

    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 “[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.

    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)