• I use Better Notifications for WordPress to better control my emails. I end up working in the HTML editor a lot, and it’s horrible. I wish I could get your plugin working on the notification edit pages.

    I tried this snippet:

    		add_action( 'admin_init', array(&$this, 'hesh_set_options') );
    		add_action( 'wp_ajax_'.$this->formProcessName, array(&$this, 'hesh_options_form_process'));
    		// Load only on certain pages
    		// if (
    		//	!strstr($_SERVER['SCRIPT_NAME'], 'post.php') && 
    		//	!strstr($_SERVER['SCRIPT_NAME'], 'post-new.php') &&
    		//	!strstr($_SERVER['SCRIPT_NAME'], 'editor.php')
    		// ) return;
    		add_action( 'admin_enqueue_scripts', array(&$this, 'hesh_admin_enqueue_scripts' ) );
    		add_action( 'admin_footer', array(&$this, 'hesh_output_form') );
    		add_action( 'admin_notices', array(&$this, 'display_survey_notice' ));
    

    This didn’t do anything unfortunately. Any help is appreciated!

  • The topic ‘Better Notifications for WordPress compatibility?’ is closed to new replies.