I used default theme and disabled all plugins and had one error ( another error ).
Then i activated all plugins with the default theme and had the same error.
Then i put my current theme but unmodified and had the same error.
The problem isn’t my plugins or the theme i’m using unmodified.
I compared this with my modified theme. If i use this code <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
two times on the same page ( one at after the title and one in the comment section so people can write a review and rate it, i get this error:
View post on imgur.com
Only one overall score should be marked.
If I use this code <?php echo the_ratings_results( $POST_ID ); ?>
after the title and this code <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
in the comment section i get this error:
View post on imgur.com
No element specified for the evaluation ( it’s my current theme ).
If i just use this code one time on my page <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
after the title and no other wp-postratings codes in the page, i get the same error as default WordPress theme with no plugin enabled,
View post on imgur.com
Please enter a value for the url field
How to use use this code <?php echo the_ratings_results( $POST_ID ); ?>
after the title and this code <?php if(function_exists('the_ratings')) { the_ratings(); } ?>
in the comment section and getting no error?
Thank you.