badget

Biggest Sale! Special Offer!

Get 30% discount on all of our single themes with this coupon code: #30%SALE

Hurry up! *Limited time offer*

Reply To: The progress of the widget sidebar

#63606

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!