title = __('Custom Notification', 'notificationx'); $this->module_title = __('Custom Notification', 'notificationx'); $this->popup = [ "denyButtonText" => __("More Info", "notificationx"), "confirmButtonText" => __("Upgrade to PRO", "notificationx"), "html"=> __(' Display custom conversion notifications as pop up. ', 'notificationx') ]; } /** * Get data for CustomNotification Extension. * * @param array $args Settings arguments. * @return array */ public function get_data( $args = array() ){ return 'Hello From Custom Notification'; } public function doc(){ /* translators: %1$s: documentation link URL, %2$s: video tutorial link URL, %3$s: Display Custom Notification Alerts link URL */ return sprintf(__('
You can make custom notification for its all types of campaign. For further assistance, check out our step by step documentation.
🎦 Watch video tutorial to learn quickly
Recommended Blog:
🔥 How to Display Custom Notification Alerts On Your Website Using NotificationX
', 'notificationx'), 'https://notificationx.com/docs/custom-notification/', 'https://www.youtube.com/watch?v=OuTmDZ0_TEw', 'https://wpdeveloper.com/custom-notificationx-alert-fomo/' ); } }