BuddyBoss Home – Web Support Forums Solutions Social Learner Fatal Error when Updated Plugin

Viewing 2 posts - 1 through 2 (of 2 total)
  • Question

    #61974
    @communityartistry

    Buddyboss Support,

    I receive the following Fatal error after updating the plugins:

    Fatal error: Call to undefined function boss_get_option() in /home2/ajayrijh/public_html/wp-content/plugins/boss-sensei/includes/main-class.php on line 2239

    The line 2239 is: $theme_layout = boss_get_option( ‘boss_layout_style’ );

    Please help!!!

    Regards,
    Ajay

    Answers

    #62599

    Anonymous
    @

    Hi @communityartistry, Sorry for the late response..

    You can fix it by adding following codes inside child theme.

    
    function sl_child_dequeue_styles() {
       wp_deregister_style( 'sfwd_template_css' );	
    }
    
    add_action( 'wp_enqueue_scripts', 'sl_child_dequeue_styles', 9999 );
    

    Regards

Viewing 2 posts - 1 through 2 (of 2 total)
  • The question ‘Fatal Error when Updated Plugin’ is closed to new replies.