페이지 게시

Do share how!

4개의 좋아요

With javascript I removed the element from the page on page load and I added an anchor link to the header after the logo to return back to the forum.

<script type="text/javascript">
  window.addEventListener('load', function() {
    var header = document.querySelector('.published-page-content-header');
    if (header) {
      header.parentNode.removeChild(header);
    }
  });

 window.addEventListener('load', function() {
    var headerWrapper = document.querySelector('.published-page-header-wrapper');
    if (headerWrapper) {
      var backToForumLink = headerWrapper.querySelector('a');
      if (backToForumLink) {
        var customHtml = '<a href="/" >Back </a>&nbsp;&nbsp;';
        backToForumLink.insertAdjacentHTML('afterend', customHtml);
      }
    }
  });
</script>
7개의 좋아요

Yes, I want to put my name on the list for this feature request, too. Adding an imprint/legal note to the forum would be great and it does not make much sense without all the “normal” layout around it. Perfect would be just like with the TOS and about pages.

7개의 좋아요

Can the links to these pages be oneboxed? I don’t see it so.

4개의 좋아요

It would be very useful if they could!

5개의 좋아요

How can I hide the message topic the page was created from? I don’t want or need people to see that.

1개의 좋아요

You can put it in a private category (the page can still be public) or unlist it.

5개의 좋아요

5 posts were split to a new topic: Published Pages for documentation?