ARWD
Forum Replies Created
-
@wpmudevsupport12 That has worked now. Thanks for sorting.
@wpmudevsupport12 I’ve sent the email.
Forum: Plugins
In reply to: [Auto Translator for Polylang] Shortcodes are being translatedHi @uappsk , that appears to have worked but not quite perfect.
1. The space around text links is removed e.g.
This is a text link that goes to a page.
becomes
This is atext linkthat goes to a page.
2. Sometimes a full stop is also placed before the text link.
3. Line breaks between paragraphs are removed so all translated text in a paragraph block merges together.
4. The WP Bakery Builder encodes HTML blocks in the shortcode, so these don’t get translated (which is fine) but sometimes they get corrupted and no further blocks appear after said HTML block, unless that block is fixed or removed.
Forum: Plugins
In reply to: [Auto Translator for Polylang] Polylang Pro not recognised@sebastienserre Yes, it was updated yesterday. It appears to now recognise both the free and pro versions.
Forum: Plugins
In reply to: [Auto Translator for Polylang] Polylang Pro not recognisedI fixed this by changing line 38 in the main plugin file to:
if (in_array('polylang/polylang.php', $active_plugins) || in_array('polylang-pro/polylang.php', $active_plugins)) {But obviously on the next update this will break, so needs to be added.
There’s no issue. I was just suggesting including a check before saving to prevent the honeypot field having the same name as a regular form field. We had a regular field called ‘your-tel’, but the honeypot was also called ‘your-tel’. So when someone entered into the regular ‘your-tel’ field, it triggered the spam block.
CF7 does an immediate AJAX validation check on the form code to prevent errors when you save. You should have something like this too to prevent field names conflicting.
@rsouzaam thanks for the reply. It is an inherited site and yes, I found that code it the theme! I’ve removed it and the option now displays and I’ve turned of the email summaries.
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] default:get checkbox multiple selectionsYes, that works! Thanks
Forum: Plugins
In reply to: [Dashboard To-Do List] Suggestion@chrslcy thanks for spotting this. An update has just been released to fix this bug. Essentially, all the widget settings were being reset when the Editor saved the to-do list.
Forum: Plugins
In reply to: [Dashboard To-Do List] SuggestionHi @chrslcy,
We’ve just released an update to fix the bug where all users were able to view/edit the dashboard widget. This is now limited to Administrators, however, Admins can now also enable/disable editing access for Editors.
Admins can also show/hide the to-do on the frontend for Admins and/or Editors.
We have more ideas in the pipeline and we will take on your suggestion of sending out regular emails to users.
Thanks for your feedback and for using our plugin.
Forum: Plugins
In reply to: [Dashboard To-Do List] php Warning – Somtetimes …Hi @volker0101,
What line is the actual warning on? Could you provide the full error log please?
What version of WordPress are you on?
Are you using the latest version of the plugin (1.2.0)?
How often does this happen? Does it appear after something you’ve done or does it just appear randomly? I just need some more info so I can try to replicate the issue, as I’ve not come across this issue before.
Works perfectly, thank you!
Forum: Reviews
In reply to: [Dashboard To-Do List] One of the best!Thank you for the great review and kind words 🙂
You can add your own styling without using a plugin, using PHP and CSS. The plugin has it’s own hook for adding custom scripts to the head of the page:
password_protected_login_headYou can add the code to your child theme’s functions.php. For example, this will change the logo:
add_action("password_protected_login_head", "custom_login_css"); function custom_login_css() { ?> <style> body.login #login h1 a { background-image: url('https://domain.com/wp-content/uploads/2023/01/logo.png'); width:100%; background-size: contain; } </style> <?php }Adding the following hook as well will apply the CSS to the default WP login page as well:
add_action("login_head", "custom_login_css");@toimisto The plugin has it’s own hook for adding scripts to the head:
password_protected_login_head
add_action(‘login_head’, ‘my_custom_login’); add_action(‘password_protected_login_head’, ‘my_custom_login’);This will apply your CSS to both the password protected page and the WP login page.