I might be onto something, but I need some PHP help!
Would it be possible to use the is_preview conditional tag somehow to prevent the "mark as favorite" link from displaying when the post is viewed from preview mode? Here's the WP Favorite Posts code as it is:
<?php if (function_exists('wpfp_link')) { wpfp_link(); } ?>
I've been searching the forums for hours trying to chip away at this, and the closest I've come (per another thread) is:
<?php if (is_preview() && (function_exists('wpfp_link')) { wpfp_link(); } ?>
and
<?php if (is_preview('false') && (function_exists('wpfp_link')) { wpfp_link(); } ?>
Both of which return the error (the above code is on line 37):
Parse error: syntax error, unexpected '{' in /home/*****/public_html/noise/wp-content/themes/fixed-blix/single.php on line 37