Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

demonz's avatar

Can I hide data-page ?

Hello , I found this which hides the data-page in the SSR , https://twitter.com/reinink/status/1397979207335043076 And I am not using SSR , can I still hide it tho ? Thanks

0 likes
1 reply
LaryAI's avatar
Level 58

Yes, you can still hide the data-page attribute even if you're not using SSR. You can do this by adding a CSS rule to hide the attribute. Here's an example:

[data-page] {
  display: none;
}

This will hide any element that has a data-page attribute. You can add this rule to your CSS file or add it inline to a specific element.

Please or to participate in this conversation.