Important security update, please update to Osclass 3.7.4
At Osclass we have changed our Privacy Policy and Terms of Use in order to adapt them to the new General Data Protection Regulation (GDPR). We want you to know what user data we store, what we need them for, and who we share them with in each specific case. Furthermore, we are making it even easier for you to exercise your right to manage your own data.
Our goal is that you enjoy the best possible experience with our website. As the GDPR comes into force, legislation requires us that you grant us permission—both to us and our partners—to store cookies in your browser. Remember you can find more information about what we do with your data by clicking here.
I accept Osclass SL’s Terms of Use and Cookies Policy and grant them permission to manage my data.
osc_run_hook('item_detail', osc_item() );
Hi,Inside loop-single.php:Code: [Select]<?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:Code: [Select] <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
<?php osc_run_hook('item_detail', osc_item() ); ?>
<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>