That file should be loaded only on registration pages, not all over the site.
Are you running v2.5.3 of the plugin?
I did not say it was all over the site. The primary problem is the registration page, where my other plugins are inserting paragraphs, and some of those paragraphs are being hidden because they are first-children of other elements.
It is your css selector which is too broad. It will hide every paragraph on the registration page which is the first child of another element. Is that really what you intended?
Yes, I’m using v2.5.3.
Unluckily yes it is by design.
If you unchecked the “Show username” checkbox to have email only registration that is the best way to remove it.
I understand that may break something else if other plugin added some stuff before the username, but the problem is WordPress didn’t add any id to that paragraph, do you have a better way to do it?
Share it 🙂
form#registerform>p:first-child
will select a child of the identified form which is a paragraph and is also the first child.
It’s not perfect, but it will accomplish your goal and is certainly more selective that just p:first-child. And, most importantly, it will fix my problem 🙂
Ok thank you, will try it and in case it works will apply the patch.
Patch applied, will be in v2.5.4