Arnd030
Forum Replies Created
-
Forum: Plugins
In reply to: [Safe Paste] Disable functionality for adminsThank you very much for Safe Paste.
But now, it does not work for editors and admins.
My client is Admin in his blog – it’s his! I can not reduce his role to Author or less.
I patched the plugin and commented out
/*&& ! current_user_can( 'unfiltered_html' )*/Maybe that should be made optional.
Arnd
Forum: Plugins
In reply to: [Polylang] Another case of Polylang unable to translate stringsI have exactly the same problem, but it makes no difference which button I click. All checkboxes disabled. See other thread, https://wordpress.org/support/topic/string-translation-disabled?replies=1 (opened that before I found this, sorry)
Forum: Plugins
In reply to: [Polylang] Polylang and random header imageOkay, it appears I have to add translations for all media and then add header images for every language separately.
Forum: Plugins
In reply to: [Contact Form 7] Place contact form next to page contentYou either a) wrap the text before in a box and assign a fixed width and float:left to it or b) you set the form first with a fixed width and float:right. Keep in mind what happens on small screens and use media queries to limit floating to wide screens.
But this is no CF7-specific topic. Look the web for HTML/CSS basics.
Forum: Plugins
In reply to: [Contact Form 7] How to get hover glove cursor on submit button?The class is already there, look into your HTML – im my case it’s
“wpcf7-submit”.So all you need is to look that up in your css (or add it there) and
add cursor:pointerSee
http://www.w3schools.com/cssref/pr_class_cursor.asp
for details.