Hello Frosticek,
At the moment, the plugin appears for all users (registered and unregistered), as it automatically hooks to the item details page.
I would like to show the plugin (buttons and stars) only for items added by registered users.
It's easy for the manual placement of the buttons, with:
if(function_exists('ur_show_rating_stars') && osc_item_user_id() !== 0) { echo ur_show_rating_stars(); }
if(function_exists('ur_add_rating_link') && osc_item_user_id() !== 0) { echo ur_add_rating_link(); }
But for the item details where the hook is automatically added, the plugin needs to be moded.
Can you please instruct us how to do it?
Thanks!