Questions aren't showing in quiz results

Home Forums Legacy Support Support queries Other issues Questions aren't showing in quiz results

Viewing 6 posts - 16 through 21 (of 21 total)
  • Author
    Posts
  • #19548
    annalivia
    Spectator
    Have you had a chance to look at this problem? Also will using the wplms woocommerce plugin fix the problem? ie: using wplms woocommerce plugin instead of the groups plugin. I am happy to buy it if it will integrate better with the LMS, not only for this problem but looking forward it is probably a better solution, do you agree?    
    #19674
    Anshuman Sahu
    Keymaster
    It seems there is some third party plugin that is causing this issue . Please try deactivating this third party plugin and check the issue again .
    #19676
    annalivia
    Spectator
    Yes. We have worked out that a 3rd party plugin is causing the problem. groups plugin I gave Mr Vibe admin login to see if he can find a fix. or ............ will using the wplms woocommerce plugin fix the problem? ie: using wplms woocommerce plugin instead of the groups plugin. I am happy to buy it if it will integrate better with the LMS, not only for this problem but looking forward it is probably a better solution, do you agree?
    #19810
    MrVibe
    Keymaster
    I discovered that the Questions post type was under the Groups management. However, it also states that even removing questions from groups management, the setting would not apply.   So it clearly means the groups plugin is causing the issue, Try pasting this code in theme function.php file :   if(!function_exists('wplms_remove_groups_from_question')){ add_action('wp','wplms_remove_groups_from_question'); function wplms_remove_groups_from_question(){ global $post; if( 'question' == get_post_type() ) { if(class_exists('Groups_Post_Access')){ $groups = Groups_Post_Access::init(); remove_filter( "the_content", array( $groups, "the_content" ), 1 ); } } } }
    #19814
    annalivia
    Spectator
    Still no good. I put it at the bottom of the file as shown....   // Options Panel get_template_part('vibe','options'); // Code from Mr Vibe to fix group plugins issue if(!function_exists('wplms_remove_groups_from_question')){ add_action('wp','wplms_remove_groups_from_question'); function wplms_remove_groups_from_question(){ global $post; if( 'question' == get_post_type() ) { if(class_exists('Groups_Post_Access')){ $groups = Groups_Post_Access::init(); remove_filter( "the_content", array( $groups, "the_content" ), 1 ); } } } }
    #20032
    H.K. Latiyan
    Participant
    For this we need to have all the information about the groups plugin(that we don't have). So please contact your plugin author for this.
Viewing 6 posts - 16 through 21 (of 21 total)
  • The topic ‘Questions aren't showing in quiz results’ is closed to new replies.