Hello,
I am trying to get Wp Super Cache & WP Post-ratings to work together. I have found a thread on WP post-ratings (http://forums.lesterchan.net/index.p...ic,4281.0.html) saying:
Replace your normal <?php the_rating() ?> function in your theme for <?php get_rating_ajax ($post->ID) ?>
I cannot find <?php the_rating() ?> in Atahualpa's files. The only thing I have found is in bfa_postinfo.php:
// For the "WP-PostRatings" plugin
if ( strpos($postinfo_string,'%wp-postratings%') !== FALSE ) {
$wp_postratings = ( function_exists('the_ratings') ?
the_ratings($start_tag = 'span', $custom_id = 0, $display = FALSE) : "" );
$postinfo = str_replace("%wp-postratings%", $wp_postratings, $postinfo);
}
But I cannot figure how to insert the above modification.
Many thanks in advance for your help.