so it's 2 differents products/groups.
how could the 2 be displayed if customer have not ordered it?
and if they ordered it, that fine if they see it?
But, supposing you need to hidden blesta core display to certain group or product, this can be done within the template code with a condition
code example:
if ($package_group->id == "4" OR $package_group->id == "10" OR $package_group->id == "12" OR $package_group->id == "14" OR $package_group->id == "16" ) {
// LICENSE TRIAL CASE: nothing to display
}
else {
?>
</br><p><right><font color="#2b356e">We accept payment by major credit and debit cards through PayPal | PayPal account is not required.</font></right></p>
<?php
}
?>