May 22, 2019 at 10:53 am
#63606
Keymaster
Hi there,
For this you have to add below code into your child theme function file which will flow the page sidebar without stopping.
if ( !function_exists('newscard_dequeue_script') ) {
function newscard_dequeue_script() {
wp_dequeue_script( 'jquery-sticky' );
wp_dequeue_script( 'newscard-jquery-sticky' );
}
}
add_action( 'wp_enqueue_scripts', 'newscard_dequeue_script' );
Thank you!