is_es_admin_screen() ) { return; } $event = 'plugin.feedback'; $params = array( 'type' => 'feedback', 'event' => $event, 'title' => 'Have feedback or question for us?', 'position' => 'center', 'width' => 700, 'force' => true, 'confirmButtonText' => __( 'Send', 'email-subscribers' ), 'consent_text' => __( 'Allow Icegram Express to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected.', 'email-subscribers' ), 'name' => '', ); ES_Common::render_feedback_widget( $params ); } } add_action( 'admin_footer', 'ig_es_render_general_feedback_widget' ); /** * Render Broadcast Created feedback widget. * * @since 4.1.14 */ function ig_es_render_broadcast_created_feedback_widget() { $event = 'broadcast.created'; $params = array( 'type' => 'emoji', 'event' => $event, 'title' => "How's your experience sending broadcast?", 'position' => 'top-end', 'width' => 300, 'delay' => 2, // seconds 'confirmButtonText' => __( 'Send', 'email-subscribers' ), ); ES_Common::render_feedback_widget( $params ); } // add_action( 'ig_es_broadcast_created', 'ig_es_render_broadcast_created_feedback_widget' ); /** * Render Broadcast Created feedback widget. * * @since 4.1.14 */ function ig_es_render_fb_widget() { if ( is_admin() ) { if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { return; } if ( ! ES()->is_es_admin_screen() ) { return; } $total_contacts = ES()->contacts_db->count(); // Got 25 contacts? // It's time to Join Icegram Express Secret Club on Facebook if ( $total_contacts >= 25 ) { $event = 'join.fb'; $params = array( 'type' => 'fb', 'title' => __( 'Not a member yet?', 'email-subscribers' ), 'event' => $event, 'html' => '
' . __( 'Join', 'email-subscribers' ) . ' ' . __( 'Icegram Express Secret Club', 'email-subscribers' ) . ' ' . __( 'on Facebook', 'email-subscribers' ) . '
', 'position' => 'bottom-center', 'width' => 500, 'delay' => 2, // seconds 'confirmButtonText' => ' ' . __( 'Join Now', 'email-subscribers' ), 'confirmButtonLink' => 'https://www.facebook.com/groups/2298909487017349/', 'show_once' => true, ); ES_Common::render_feedback_widget( $params ); } } } add_action( 'admin_footer', 'ig_es_render_fb_widget' ); if ( ! function_exists( 'ig_es_review_message_data' ) ) { /** * Filter 5 star review data * * @param $review_data * * @return mixed * * @since 4.3.8 */ function ig_es_review_message_data( $review_data ) { $review_url = 'https://wordpress.org/support/plugin/email-subscribers/reviews/'; $icon_url = ES_PLUGIN_URL . 'lite/admin/images/icon-64.png'; $message = __( "

We hope you're enjoying Icegram Express plugin! Could you please do us a BIG favor and give us a 5-star rating on WordPress to help us spread the word and boost our motivation?

", 'email-subscribers' ); $review_data['review_url'] = $review_url; $review_data['icon_url'] = $icon_url; $review_data['message'] = $message; return $review_data; } } add_filter( 'ig_es_review_message_data', 'ig_es_review_message_data', 10 ); if ( ! function_exists( 'ig_es_can_ask_user_for_review' ) ) { /** * Can we ask user for 5 star review? * * @return bool * * @since 4.3.8 */ function ig_es_can_ask_user_for_review( $enable, $review_data ) { if ( $enable ) { if ( ! ES()->is_es_admin_screen() ) { return false; } $total_contacts = ES()->contacts_db->count_active_contacts_by_list_id(); $total_email_sent = ES_DB_Mailing_Queue::get_notifications_count(); // Don't show if - less than 3 post notifications or Newsletters sent OR less than 10 subscribers if ( $total_contacts < 10 && $total_email_sent < 3 ) { return false; } } return $enable; } } add_filter( 'ig_es_can_ask_user_for_review', 'ig_es_can_ask_user_for_review', 10, 2 ); /** * Render Icegram-Email Subscribers merge feedback widget. * * @since 4.3.13 */ function ig_es_render_iges_merge_feedback() { global $ig_es_feedback; if ( is_admin() ) { if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { return; } if ( ! ES()->is_es_admin_screen() ) { return; } $event = 'poll.merge_iges'; // If user has already given feedback on Icegram page, don't ask them again $is_event_tracked = $ig_es_feedback->is_event_tracked( 'ig', $event ); if ( $is_event_tracked ) { return; } $total_contacts = ES()->contacts_db->count_active_contacts_by_list_id(); if ( $total_contacts >= 5 ) { $params = array( 'type' => 'poll', 'title' => __( 'Subscription forms and CTAs??', 'email-subscribers' ), 'event' => $event, 'desc' => '

You use Icegram Express to send email campaigns.

Would you like us to include onsite popups and action bars in the plugin as well? This way you can convert visitors to subscribers, drive traffic and run email marketing from a single plugin.

Why do we ask?

Our Icegram plugin already does onsite campaigns. We are thinking of merging Icegram & Icegram Express into a single plugin.

Will a comprehensive ConvertKit / MailChimp like email + onsite campaign plugin be useful to you?

', 'fields' => array( array( 'type' => 'radio', 'name' => 'poll_options', 'label' => __( 'Yes', 'email-subscribers' ), 'value' => 'yes', 'required' => true, ), array( 'type' => 'radio', 'name' => 'poll_options', 'label' => __( 'No', 'email-subscribers' ), 'value' => 'no', ), array( 'type' => 'textarea', 'name' => 'details', 'placeholder' => __( 'Additional feedback', 'email-subscribers' ), ), ), 'allow_multiple' => false, 'position' => 'bottom-center', 'width' => 400, 'delay' => 2, // seconds 'display_as' => 'popup', 'confirmButtonText' => __( 'Send my feedback to Icegram team', 'email-subscribers' ), 'show_once' => true, ); ES_Common::render_feedback_widget( $params ); } } } add_action( 'admin_footer', 'ig_es_render_iges_merge_feedback' ); /** * Can load sweetalert js file * * @param bool $load * * @return bool * * @since 4.3.13 */ function ig_es_can_load_sweetalert_js( $load = false ) { if ( ES()->is_es_admin_screen() ) { return true; } return $load; } add_filter( 'ig_es_can_load_sweetalert_js', 'ig_es_can_load_sweetalert_js', 10, 1 ); /** * Render Broadcast Created feedback widget. * * @since 4.4.7 */ function ig_es_render_broadcast_ui_review() { if ( is_admin() ) { if ( defined( 'DOING_AJAX' ) && DOING_AJAX ) { return; } if ( ! ES()->is_es_admin_screen() ) { return; } $event = 'broadcast.ui.review'; $params = array( 'type' => 'fb', 'widget_tyoe' => 'success', 'title' => __( 'Broadcast Created Successfully!', 'email-subscribers' ), 'event' => $event, 'html' => '

' . __( 'If you like new Broadcast UI, leave us a 5 stars review.

Do you have a feedback? Contact Us.', 'email-subscribers' ) . '
', 'position' => 'top-right', 'width' => 500, 'delay' => 2, // seconds 'confirmButtonText' => ' ' . __( 'Leave Review', 'email-subscribers' ), 'confirmButtonLink' => 'https://wordpress.org/support/plugin/email-subscribers/reviews/?filter=5', 'showCancelButton' => true, 'cancelButtonText' => __( 'Contact Us', 'email-subscribers' ), 'cancelButtonLink' => 'https://icegram.com', 'show_once' => true, ); ES_Common::render_feedback_widget( $params ); } } add_action( 'ig_es_broadcast_created', 'ig_es_render_broadcast_ui_review' ); if ( ! function_exists( 'ig_es_show_plugin_usage_tracking_notice' ) ) { /** * Can we show tracking usage optin notice? * * @return bool * * @since 4.7.7 */ function ig_es_show_plugin_usage_tracking_notice( $enable ) { // Show notice ES pages except the dashboard page. if ( ES()->is_es_admin_screen() ) { $current_page = ig_es_get_request_data( 'page' ); if ( 'es_dashboard' !== $current_page ) { $enable = true; } } return $enable; } } add_filter( 'ig_es_show_plugin_usage_tracking_notice', 'ig_es_show_plugin_usage_tracking_notice' ); if ( ! function_exists('ig_es_can_load_sweetalert_js') ) { /** * Can load sweetalert js * * @param bool $load * * @return bool * * @since 5.4.12 */ function ig_es_can_load_sweetalert_js( $load = false ) { if ( ES()->is_es_admin_screen() ) { return true; } return $load; } } add_filter( 'ig_es_can_load_sweetalert_js', 'ig_es_can_load_sweetalert_js' ); if ( ! function_exists('ig_es_can_load_sweetalert_css') ) { /** * Can load sweetalert css * * @param bool $load * * @return bool * * @since 5.4.12 */ function ig_es_can_load_sweetalert_css( $load = false ) { if ( ES()->is_es_admin_screen() ) { return true; } return $load; } } add_filter( 'ig_es_can_load_sweetalert_css', 'ig_es_can_load_sweetalert_css' ); if ( ! function_exists( 'ig_es_show_feature_survey' ) ) { function ig_es_show_feature_survey() { if ( ! ES()->is_es_admin_screen() ) { return; } $current_utc_time = time(); $current_ist_time = $current_utc_time + ( 5.5 * HOUR_IN_SECONDS ); // Add IST offset to get IST time $offer_start_time = strtotime( '2022-11-23 12:30:00' ); // Offer start time in IST $offer_end_time = strtotime( '2022-12-01 12:30:00' ); // Offer end time in IST $is_offer_period = $current_ist_time >= $offer_start_time && $current_ist_time <= $offer_end_time; // Don't show survey in offer period. if ( $is_offer_period ) { return; } $can_ask_user_for_review = false; $total_contacts = ES()->contacts_db->count(); if ( $total_contacts >= 10 ) { $can_ask_user_for_review = true; } else { $plugin_activation_time = get_option( 'ig_es_installed_on', 0 ); $feedback_wait_period = 10 * DAY_IN_SECONDS; $feedback_time = strtotime( $plugin_activation_time ) + $feedback_wait_period; $current_time = time(); $can_ask_user_for_review = $current_time > $feedback_time; } if ( ! $can_ask_user_for_review ) { return; } global $ig_es_feedback; $survey_title = __( '📣 Hey! What new feature would you like us to develop?', 'email-subscribers' ); $survey_slug = 'ig-es-feature-survey'; $survey_questions = array( 'email_sending_service' => __( "Icegram's own email sending service (so you don't have to bother with external services / SMTP)", 'email-subscribers' ), 'whatsapp_sms_support' => __( 'WhatsApp & SMS Text Message support (just like you can do email campaigns currently)', 'email-subscribers' ), 'ab_split_testing' => __( 'A/B split testing for campaigns (to figure out which subject / body works better)', 'email-subscribers' ), 'more_workflow_integrations' => __( 'More workflow automations and tighter integration with other plugins (for example - send an email when a subscription is cancelled or renewal is coming up...)', 'email-subscribers' ), 'other' => __( 'Something else? Tell us what do you want...', 'email-subscribers' ), ); $survey_fields = array(); foreach ( $survey_questions as $question_slug => $question_text ) { $survey_fields[] = array( 'type' => 'radio', 'name' => 'feature', 'label' => $question_text, 'value' => $question_slug, ); } // Store default values in field_name => default_value format. $default_values = array( 'feature' => 'email_sending_service', ); $feedback_data = array( 'event' => 'feature_survey', 'title' => $survey_title, 'slug' => $survey_slug, 'logo_img_url' => ES_PLUGIN_URL . '/lite/admin/images/icon-64.png', 'fields' => $survey_fields, 'default_values' => $default_values, 'type' => 'poll', 'system_info' => false, ); $ig_es_feedback->render_feedback_widget( $feedback_data ); } } //add_action( 'admin_notices', 'ig_es_show_feature_survey' );