Hi
We have identified the cause of the console error. This issue is occurring because the “Missed Section” feature has not been enabled. Additionally, we found a minor conditional check error in our code that contributes to this.
We will correct this issue in our next update. Thank you for your patience, and please feel free to reach out if you have any further questions.
To fix the issue now follow the given below instruction.
1 Find the functions.php file located in your child theme Newsblogger directory.
2 Open the file and find the below line of code on line no 49.
wp_enqueue_script('newsblogger-custom', NEWSBLOGGER_TEMPLATE_DIR_URI . '/assets/js/custom.js', array('jquery'), '',true);
3 And repalce it with below line of code.
if(get_theme_mod('hide_show_missed_section',true)==true):
wp_enqueue_script('newsblogger-custom', NEWSBLOGGER_TEMPLATE_DIR_URI . '/assets/js/custom.js', array('jquery'), '',true);
endif;
Let me know if you have any confusion.
Thanks&Regard
The Newsblogger support team