• Hi Rahul,

    i have urgent questions / problems with the Plugin and i CANT create a question on aspress.io.
    If i click on Submit Question, NOTHING happens!!!

    Phillip

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • The main issue seems to be that the tinymce script is missing – at lease in our case:

    You can fix this simply doing something like:

    
    // assets ##
    \add_action( 'wp_enqueue_scripts', [ get_class(), 'wp_enqueue_script' ], 100 ); 
    
    /**
    * Enqueue assets
    * 
    * @since 4.5.0
    */
    public static function wp_enqueue_script(){
    
    	// enqueue tinymce script ##
    	if ( 
    		\is_singular('question') 
    		|| \is_singular('answer') 
    	) {
    
    		\wp_enqueue_script( 'wp-tinymce' ); 
    
    	}
    
    }
    • This reply was modified 4 years, 2 months ago by qstudio.
Viewing 1 replies (of 1 total)
  • The topic ‘ANSPRESS.IO ASK QUESTION NOT WORKING’ is closed to new replies.