admin_url('admin-ajax.php'), 'nonce' => wp_create_nonce('wt_dismiss_smart_coupon_cta_banner_nonce'), 'action' => 'wt_dismiss_smart_coupon_cta_banner' )); } /** * Add the meta box to the coupon edit screen */ public function add_meta_box() { if ( !defined( 'WT_SMART_COUPON_DISPLAY_BANNER' ) ){ add_meta_box( 'wbte_coupon_import_export_pro', self::$is_bfcm_season ? ' ' : __( 'Smart Coupons for WooCommerce Pro', 'users-customers-import-export-for-wp-woocommerce' ), array($this, 'render_banner'), 'shop_coupon', 'side', 'low' ); define( 'WT_SMART_COUPON_DISPLAY_BANNER', true ); } } /** * Render the banner HTML. */ public function render_banner() { // Check if banner should be hidden based on option $hide_banner = get_option('wt_hide_smart_coupon_cta_banner', false); $plugin_url = 'https://www.webtoffee.com/product/smart-coupons-for-woocommerce/?utm_source=free_plugin_cross_promotion&utm_medium=marketing_coupons_tab&utm_campaign=Smart_coupons'; $wt_admin_img_path = plugin_dir_url( __FILE__ ) . 'assets/images'; if ($hide_banner) { echo ''; return; } ?>