I am using the edume theme of online courses and when making a purchase of a course from my website give the following error. how could I solve it?
Warning: Missing argument 2 for ufwp_widget_text () in /home/basic340/public_html/wp-content/plugins/wp-udemy/includes/widgets.php online 63
Warning: Missing argument 3 for ufwp_widget_text () in /home/basic340/public_html/wp-content/plugins/wp-udemy/includes/widgets.php online 63
The code starts from line 62 on 63 has nothing.
62 private function setup_constants () { 63 // Plugin name define ('UFWP_NAME', 'Online Learning Courses');
// Plugin version
define( 'UFWP_VER', '1.0.7' );
// Plugin path
define( 'UFWP_DIR', plugin_dir_path( __FILE__ ) );
// Plugin URL
define( 'UFWP_URL', plugin_dir_url( __FILE__ ) );
// Debug
$options = get_option('ufwp_settings');
$debug = ( isset ( $options['developer_mode'] ) && $options['developer_mode'] == '1' ) ? true : false;
define( 'UFWP_DEBUG', $debug );
}