Hello
You need to edit modues/boonex/ads/classes/BxAdsModule.php file -> AddNewPostForm function. Find and comment out the following lines of code.
1.
'allowView' => $aAllowView,
'allowRate' => $aAllowRate,
'allowComment' => $aAllowComment,
2.
$aForm['inputs']['allowView']['value'] = $aAdUnitInfo['AllowView'];
$aForm['inputs']['allowRate']['value'] = $aAdUnitInfo['AllowRate'];
$aForm['inputs']['allowComment']['value'] = $aAdUnitInfo['AllowComment'];
3.
if (empty($aForm['inputs']['allowView']['value']) || !$aForm['inputs']['allowView']['value'])
$aForm['inputs']['allowView']['value'] = BX_DOL_PG_ALL;
if (empty($aForm['inputs']['allowRate']['value']) || !$aForm['inputs']['allowRate']['value'])
$aForm['inputs']['allowRate']['value'] = BX_DOL_PG_ALL;
if (empty($aForm['inputs']['allowComment']['value']) || !$aForm['inputs']['allowComment']['value'])
$aForm['inputs']['allowComment']['value'] = BX_DOL_PG_ALL;
Then go to Dolphin's DB -> bx_ads_main table and make 3 as default value for AllowView, AllowRate and AllowComment fields. I checked it and looks like it's working fine.