Disable built-in progress bar?

I know this is a very old topic but here is the solution in case it will be helpful for someone (I just successfully used it in one of my apps):

  1. Add an HTML element on the page where Bubble’s progress bar should be hidden
  2. Edit the HTML as follows:
    <style>
    #nprogress { visibility: hidden; }
    </style>

This will completely hide the progress bar

20 Likes