WP Favorite Posts 1.3.3 Released!

Author: Huseyin Berberoglu
16 March 2010

WP Favorite Posts 1.3.3 Released. Don’t forget to clear browser’s cacha after upgrading.

Changelog
Detailed Post

If you find a bug in version 1.3.3 please write a comment about it.

Thanks for using :)

Tags: ,

Category: Wordpress | RSS 2.0 | Give a Comment | trackback

One Comments

  • Joel

    Heya, what a remarkable plugin, really like it! :-)

    If I pay you $75, can you show me how to insert the favourite image with an excerpt of the favourite post. I know I need to modify the following: (from the wpfp-page-template file)

    <?php
    echo "”;
    if (!empty($user)):
    if (!wpfp_is_user_favlist_public($user)):
    echo “$user’s Favorite Posts.”;
    else:
    echo “$user’s list is not public.”;
    endif;
    endif;

    if ($wpfp_before):
    echo “”.$wpfp_before.”";
    endif;

    echo “”;
    if ($favorite_post_ids):
    foreach ($favorite_post_ids as $post_id) {
    $p = get_post($post_id);
    echo “”;
    echo “post_title .”‘>” . $p->post_title . “ “;

    echo “”;
    wpfp_remove_favorite_link($post_id);
    }
    else:
    echo “”;
    echo $wpfp_options['favorites_empty'];
    echo “”;
    endif;
    echo “”;
    wpfp_clear_list_link();
    echo “”;
    wpfp_cookie_warning();
    ?>

    But cant for the life of me figure out how…

    Any help appreciated!

Leave a Reply