Hi,
What plugin are you using for the attachments ?
EDIT: Found this back, so I suppose you still use the same ? (https://bbpress.org/forums/topic/gd-bbpress-attachments-file-size-issue/)
Pascal.
Hi @casiepa – thanks, but I’m not asking about changing the upload size this time.
I just want to remove the notice that says ‘Maximum file size allowed’ (and surrounding yellow box) from the form.
I am still using GD-bbPress Attachments.
Hi,
I have downloaded it and will check it later. I just needed to know what you used to find the correct CSS.
Pascal.
@casiepa thanks very much 🙂
Had a quick look and it’s using standard div naming, so I looked at how I did it in one of my plugins. The below css should hide the message, but not only that one as also these ones will be gone:
– Oh bother! No topics were found here!
– You must be logged in to create new topics
– Your account has the ability to post unrestricted HTML content
.bbp-template-notice {
display: none;
}
.bbp-template-notice.info,
.bbp-template-notice.error,
.bbp-template-notice.important,
.bbp-template-notice.warning {
display: block;
}
Hope you can decide…
Pascal.
^That CSS code should help remove the annoying notices, but keep the important ones.
@casiepa, Excellent! Thanks, really appreciate that. I’ll try it out later and let you know if it works.
Thanks @robkk
Works great. Thank you @casiepa!