Is there a way to make the footer links hidden?

Is there a way to make the footer links hidden?

The following code snippet should help resolve this. You can add the following script to your console in your body. Once added to your code, publish the changes.

<script>
function hideFooterRowBottom() {
  var footers = document.getElementsByClassName('footer-row-bottom');
  for (var i = 0; i < footers.length; i++) {
    footers[i].style.setProperty('display', 'none', 'important');
  }
}

// run once
hideFooterRowBottom();

// keep enforcing (in case of re-render)
setInterval(function () {
  hideFooterRowBottom();
}, 500);
</script>

1 Like

Looks nice!

I just want to highlight that in the code snippet posted by @Ella the lines highlighted below is quite important. It tries to run the function 0.5 second after the site is loaded in order to avoid site rerendering on ReactJS to override this.

1 Like