Thread Starter
ypark
(@ypark)
Chasil,
Thanks for the reply. This issue was resolved by me actually re-doing the png file. I believe the alignment was off, which threw off the overlaying of the actual image on top of the “outgrayed” image.
I believe the site will go live soon and I will post the URL here for you to see. Again, thank you for the plugin!
I understand this is an old post but I had to address the same requirement for a client. I used Advanced Customer Fields plugin to create custom field “rating” so the client can input a number value for the rating when creating new posts. Then I edited the template to include the rating next to the post title.
<?php $rating_value = get_field('rating');
$rating_shortcode = "[usr={$rating_value}]"; ?>
<?php echo do_shortcode( $rating_shortcode ); ?>
The end product will be more comprehensive than this here (will include different categories) but I wanted to give others something to work off of.