Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)
  • Hi dompl,

    Thanks!

    I actually just added a slightly cleaner version of your code and it works perfectly. I actually ashamed to admit that I’ve been planning on doing this for a while.. ??

    Sometimes plug-ins are great for a quick fix, but you’re right, most are bloated and only add to taxing the overall system.

    <?php
    //for use in the loop, list 5 post titles related to first tag on current post
    $tags = wp_get_post_tags($post->ID);
    if ($tags) {
      echo 'Related Posts';
      $first_tag = $tags[0]->term_id;
      $args=array(
        'tag__in' => array($first_tag),
        'post__not_in' => array($post->ID),
        'showposts'=>5,
        'caller_get_posts'=>1
       );
      $my_query = new WP_Query($args);
      if( $my_query->have_posts() ) {
        while ($my_query->have_posts()) : $my_query->the_post(); ?>
          <p><a>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></p>
          <?php
        endwhile;
      }
    }
    ?>

    I’ll add that I’ve been using YARP without error for a few years now.. so this is definitely not typical for the plug-in.

    Yup, YARP is definitely DOA with WP 3.4.

    I’m using manually placed code with no template. Tried switching to auto and changing the parameters. All I’m getting is “No related posts.”

    It’s such a great plug-in. Would love to see a fix for this..

    Thanks!
    Dan

    Thanks Otto!

    I need to pay more attention to those settings. Which I’m sure you would appreciate! That took care of it..

    Now having strange problem posting to app. Publishes fine to profile page but not to fb app… sure I’ll be able to resolve it though.

    Also, I really appreciate your work on this. The new version (or should I say first version) does seem more stable overall and love the slimmed down number of plugins.

    I’m having the same problem, except with me, it’s pulling the images from my footer’s “social icon” section. I didn’t have this problem with SFC pre v1.0.

    I always thought SFC used the FB application icons for the post.

    Thread Starter danno63

    (@danno63)

    Hi Joost,

    Ok, seems to be an auto-update error.

    I downloaded WordPress SEO 0.3.3 from www.ads-software.com and replaced the directory.

    Everything seems Ok now..

    Maybe not everything was downloaded completely via the update manager the first time around.

    Sorry for the false alarm and thanks again for the wonderful work you’re doing on the plug-in..

    Dan

    Thread Starter danno63

    (@danno63)

    Hi Matthew,

    Thanks for the quick response. I also posted on your website, then I realized from the previous posts that this issue had been going for a bit..

    To fill in the blanks:

    I’m not positive which version I had installed previously. Initially, I think it was 0.4.4 (I installed it within the past two months). However, you released a bunch of updates over the past few days (weeks?). I ran each upgrade as it became available. I’m certain I didn’t make the jump from 0.4.4 to 0.5.5.

    Furthermore, I’m not sure at which point it broke.. The map I had in my database was working and I hadn’t needed to edit anything.

    I use Media Temple as my hosting provider. My PHP v. 5.2.14, MySQL v. 5.1.26

    I wish I could be more help.. It’s a really great plugin. Very user-friendly and with the new options, I don’t feel as compelled to jump into KML or the Google Maps API.

    I really appreciate all the hard work you put into this!

    Good luck and let me know if there’s anything else I can do to help..

    Dan

    Thread Starter danno63

    (@danno63)

    For anyone else having the same problem:

    I turned off the “Save data when disabling plugin” option on the plugin options page, disabled and deleted the plugin, re-installed and ever-thing’s working as advertised.

    Thanks for this great plugin and the all the new options!

    Thread Starter danno63

    (@danno63)

    BTW I’m using the most recent version of WordPress 3.1

    I would like to see everyone in the WordPress community have a healthy, happy and prosperous 2011. Could you get that into the pipeline asap? ??

    As for me, I would LOVE to see custom write panels in core!

    The ability to configure various types of fields and assign them to post types (post, page, custom) would be out of this world. For me, this is the missing link to make WordPress a better CMS. It’s one of the few features that Drupal (CCK) and a few other CMS packages have over WordPress.

    Sure we can build them by hand, or use a plug-in, but each of these solutions has shortcomings.

    Aside from that, I would like to see the Plug-in Repository include more search options esp version compatibility.

    Thread Starter danno63

    (@danno63)

    Hi kalstrom,

    Thanks for getting back to me.. You’re one of the developers of More Fields right?

    I actually figured this out. I ended up using the get_meta() method to define the variables, then ran some conditional statements using empty() to check if a value had been set or not.. It worked like a charm!

    My main problem was that I couldn’t remember the methods for pulling data from More Fields. As I remember, they weren’t WP methods, but specific to More Fields. Is that correct? Is get_meta() a More Fields method?

    I remember you used to have some documentation on your old site. It would be great if you could add it to your new site.. I noticed you have the pages set-up, there just wasn’t anything there yet..

    Thanks for all the hard work you put into the More plugins.. I really do appreciate it!

    Dan

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