Hi,
Inside loop-single.php:
<?php osc_run_hook('item_detail', osc_item() ); ?>
Inside loop-single-premium.php, problem is that in the plugin osc_item_id() is hardcoded, nothing about osc_premium_id(), so you need to make both equal before invoking the plugin, try:
<div align="left" style="margin-right:5px;">
<?php View::newInstance()->_exportVariableToView('item', View::newInstance()->_current('premiums'));
osc_run_hook('item_detail', osc_item() ); ?>
<span class="category"><?php echo osc_premium_category(); ?></span>
Regards