Osclass v8.3.0 html errors after upgrade.
/oc-content/plugins/banner_ads/admin/configure.php Line 98 <a/> tag intead </a>
/oc-content/plugins/banner_ads/functions.php Line 19:
.ba-banner .ba-advert {display:block;width:auto;height:auto;max-width:100%;overflow:hidden;margin:10px auto;text-align:center;}
no need 10px margin
correct style:
.ba-banner .ba-advert {display:block;width:auto;height:auto;max-width:100%;overflow:hidden;margin:auto;text-align:center;}
osp_banner_button not showing on delta theme
/oc-content/themes/delta/functions.php after Line 3417
missed code:
if(osp_param('banner_hook') == 1 && function_exists('osp_banner_button')) {
$html .= osp_banner_button($banner_id, false);
}