Replies: 1 comment 1 reply
-
It looks like you are in edit mode in the first entry, based on some of the items that you see. There isn't really any way to "trim" the structure except for theme/container related items to try and optimize. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm trying to reduce the depth of the DOM in DNN, for example the most commonly used basic module is HTML:
Default xpath to content of html module:
Xpath:
/html/body/form/main/div[2]/div[2]/div[2]/div/div[2]
After modified:
Xpath:
/html/body/form/main/div[2]/div[2]
reducing the depth of Dom makes the web run faster, lighter, browsers render faster, Search Engines also like it more
What I want to ask is, is there anything similar to what I want in DNN?
Is there a more general solution in DNN?
Beta Was this translation helpful? Give feedback.
All reactions