Title: Stop Comment Bubble from Scrolling
Last modified: January 3, 2021

---

# Stop Comment Bubble from Scrolling

 *  Resolved [miinalee](https://wordpress.org/support/users/miinalee/)
 * (@miinalee)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/stop-comment-bubble-from-scrolling/)
 * Hi the comment bubble super great to increase my blog engagement, but the behaviour
   that automatically scrolled to the bottom of the page are making users kinda 
   have to work their work up to the last part in the article that they read, it
   taking too much time sometimes in the long content article. Is it possible to
   stop the bubble from scrolling down and make it static?

Viewing 1 replies (of 1 total)

 *  Plugin Support [gVectors Support](https://wordpress.org/support/users/gvectorssupport/)
 * (@gvectorssupport)
 * [5 years, 5 months ago](https://wordpress.org/support/topic/stop-comment-bubble-from-scrolling/#post-13866054)
 * [@miinalee](https://wordpress.org/support/users/miinalee/),
 * Please follow the steps below.
 * 1 Put this code in the active theme functions.php file:
 *     ```
       add_action('wp_enqueue_scripts', function () {
           $wpdiscuz = wpDiscuz();
          wp_enqueue_script( 'wpd-custom-js', get_template_directory_uri() . '/assets/js/custom.js', array($wpdiscuz->options->general["loadComboVersion"] ? 'wpdiscuz-combo-js' : 'wpdiscuz-ajax-js'), null, true);
       });
       ```
   
 * 2. Create a new file called custom.js in the active theme /assets/js/ folder.
 * 3. Put the code below in the custom.js file (created in step 2):
 *     ```
       jQuery('#wpd-bubble').on('click', function (e) {
           e.preventDefault();
           e.stopPropagation();
           return false;
       });
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Stop Comment Bubble from Scrolling’ is closed to new replies.

 * ![](https://ps.w.org/wpdiscuz/assets/icon-256x256.png?rev=1076265)
 * [Comments - wpDiscuz](https://wordpress.org/plugins/wpdiscuz/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/wpdiscuz/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/wpdiscuz/)
 * [Active Topics](https://wordpress.org/support/plugin/wpdiscuz/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/wpdiscuz/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/wpdiscuz/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [gVectors Support](https://wordpress.org/support/users/gvectorssupport/)
 * Last activity: [5 years, 5 months ago](https://wordpress.org/support/topic/stop-comment-bubble-from-scrolling/#post-13866054)
 * Status: resolved