clarkwinkelmann Now I see it, after 10-15 minutes....
I cleared the cache several times of course.
Maybe it was caused by Uncache by Reflar

FriendsOfFlarum

HI, please can you help me, how to remove the header from this page, because I want to use my header.

and how to correctly set the link in the extension of the created pages:
now is:
https://mysite.com/p/1-home
I need:
https://mysite.com/home

Thanks in advance

    clarkwinkelmann
    Thanks for the quick response. Yes, that would save me. What combination in CSS can turned off?

    And about the link - how can do it at least without “1-” so that it would be at least “mysite.com/p/home” if impossible in another way? Thanks again

      EvgeniySotnikov

      .Pages-page .Hero { display: none; }

      You can access a page via:

      • /p/<id>
      • /p/<id>-<slug>
      • /p/<slug>
      • / (if set as homepage)

        fanzoan 's CSS piece of code increases the width of the page but not fully as shown in the picture below.

        I want to increase the width on both sides and also remove the Top strip marked by number 3

        I am embedding an iframe and it doesn't look good.

        if anyone knows any solution, please

          25 days later

          r4nchy You can change the CSS to remove the padding. I can't remember what element adds that space off the top of my head.

          datitisev I don't see any issue 😇.

          You mean you aren't getting the same issue?

          datitisev Please make an issue on GitHub so we can keep track of it 🙂.

          Sure, I'll do this tomorrow. Btw, this issue is using beta.13 Dark Mode and not the fof extension.

            Ralkage No, I'm using the built in dark mode. It is the admin panel, so the extension doesn't work there anyway.

            @datitisev I discovered two bugs. Below I send you a link to the video where I present them.

            I will describe here quickly what is on the film.
            Before showing the bug I refreshed the page.
            On the first tab of the browser I show what are the pages (slug, name, etc), on the second tab I show the first bug, and on the third tab I show the second bug.

            https://youtu.be/TEInlSW7zPc

            EDIT: I think the error lies with js, but I'm not sure.

            EDIT: I think the whole problem lies here.
            I added console.log() command and returned me this.

              Artuu I'm presenting a sample solution, you can use it unless you have a better idea. I hope I helped 😺

                id() {
                  const id = m.route.param("id").split("-")[0];
                  if (!isNaN(id)) {
                    return id;
                  } else {
                    return m.route.param("id");
                  }
                }