Gr8, almost perfect !!! How can I …
-
Hello,
your plugin is gr8, almost perfect.Is there any chance to pick different image in different pages ??
For example:
one page i have hearts
second page i have thumbs
third page i have stars
fout page i dont want to have ratingI managed to change the position to put it into my widget.
The ansewer was in internet.
For those who need this:put this into yourtheme/function.php
<?php
add_shortcode( ‘vote’, ‘vote_custom_ratings’ );
function vote_custom_ratings() {
$return_text = ”;
if ( class_exists( ‘Custom_Ratings_Public’ ) ) {
$return_text .= Custom_Ratings_Public::vote();
}
return $return_text;
}
?>
then put [vote] where you want it on page or widget.
(Make sure to set the Vote Display Position to None in the Custom Ratings Settings).
- The topic ‘Gr8, almost perfect !!! How can I …’ is closed to new replies.