How can I add text such as "Click paperclip to upload media" beside the paper clip icon. Too many folks are asking how to upload images on my sites and all comment pages show the same "paper clip" but no text.
Thank you.
How can I add text such as "Click paperclip to upload media" beside the paper clip icon. Too many folks are asking how to upload images on my sites and all comment pages show the same "paper clip" but no text.
Thank you.
Hi @4720pmt,
Please follow the steps below:
1. Add the following JS code in your current active theme JS files.
jQuery( ".wmu-add" ).before( "Click paperclip to upload media" );
Here is a good example on how to add JS code: https://www.wpbeginner.com/wp-tutorials/how-to-easily-add-javascript-in-wordpress-pages-or-posts/
2. Please navigate to the Dashboard > Comments > wpDiscuz > Settings > Styles and Colors admin page, put the following CSS code in the "Custom CSS Code" textarea:
#comments #wpdcom .wmu-upload-wrap{
display:flex;
}
In any case please don't forget to delete all caches and press CTRL+F5(twice) on the frontend before checking.
Hi there... I added the JQ line to the footer on every page.
I modified the wpDiscuz CSS using the code provided.
I cleared every cache I could find, cleared browser history, cleared the DNS, and the text line does not appear.