diff --git a/classes/admin.class.php b/classes/admin.class.php index a2b5da1d..c8e99934 100644 --- a/classes/admin.class.php +++ b/classes/admin.class.php @@ -212,6 +212,7 @@ function product_meta() { +
' . __( 'You can create different meta groups for different products.', 'woocommerce-product-addon' ) . ''; } @@ -238,6 +239,14 @@ function product_meta() { // existing meta group tables show only ppom main page if ( $action != 'new' && $do_meta != 'edit' && $view != 'addons' && $view != 'changelog' ) { ppom_load_template( 'admin/existing-meta.php' ); + + // NOTE: Allow only for Tier 1 Plan or lower if license is present. + $should_load_banner = NM_PersonalizedProduct::LICENSE_PLAN_1 >= NM_PersonalizedProduct::get_license_category( intval( apply_filters( 'product_ppom_license_plan', 0 ) ) ); + + if ( $should_load_banner ) { + do_action( 'themeisle_sdk_load_banner', 'ppom' ); + } + } echo ''; diff --git a/css/ppom-admin.css b/css/ppom-admin.css index f308359e..5f086b18 100644 --- a/css/ppom-admin.css +++ b/css/ppom-admin.css @@ -1862,3 +1862,7 @@ header.ppom-modal-header { .ppom-wrapper a.ppom-upsell-condition:hover{ text-decoration: none; } + +.ppom-banner:has(.tsdk-banner-cta) { + margin: 20px 0; +} diff --git a/images/black-friday.jpg b/images/black-friday.jpg new file mode 100644 index 00000000..2484b472 Binary files /dev/null and b/images/black-friday.jpg differ