WP Favorite Posts 1.3.3 Released. Don’t forget to clear browser’s cacha after upgrading.
If you find a bug in version 1.3.3 please write a comment about it.
Thanks for using :)
WP Favorite Posts 1.3.3 Released. Don’t forget to clear browser’s cacha after upgrading.
If you find a bug in version 1.3.3 please write a comment about it.
Thanks for using :)
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!