substa
Forum Replies Created
-
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsmmm… no, no errors at all
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsRUM is Real User Monitoring, page load timing monitoring with new relic.
Maybe this option add some javascript code that conflict with your code…And yes, now I’m using the last stable version. Thank you again ??
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsHi,
I tried the current dev version, but the problem persists, so I made different test and…
I found the “real” bug, different from what I thought earlier…So, it’s not related to admin language, but it depends on a W3TC option…
Instructions to replicate the problem:
– Enable W3 Total Cache plugin
– In W3TC general setting enable new relic monitoring
– Take a look at the option “Use RUM only for following user roles” in the monitoring subpage of W3TCIf “Use RUM…” is checked, adminimize menu setting are bypassed.
If the option is unchecked, everyting work fine!At the moment I disabled the option so I can deploy the website, but now we know exactly the problem, so I think it will be easier to fix.
Thank you for your support and your great work Frank ??
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsHi,
I hope you’re good now ??This month I have to go online with my project. Any chance to use your plugin or I need to find something else?
Thank you ??
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsAny news?
The problem is reproducible also on previuos releases…
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsThe screenshot is from version 1.10.3-dev, sometimes the admin page hang and freeze, so maybe it was the case…
I made another screenshot, with “select all” checkboxes, but I think there is a problem anyway, because as you can see, “pink background” is not only alternate, but it is irregular:
https://dl.dropboxusercontent.com/u/209810/adminimize2.png
(2th, 4th, 6th and 8th column is all pink, 10th column is not all pink but alternate horizontally, 12th column head is grey…)
Of course colors are not important, but maybe this is the same problem that freeze page on safari ??Anyway, returning on topic: the language problem!
It worked with previous releases or it was simply a coincidence?
I need this functionality as soon as possible, so, if the problem occurs only on new releases, I can restore a previous version if it helps…Thank you for your work and your availability
Forum: Plugins
In reply to: [Adminimize] Menu settings ignored with last versionsHi,
I think I have found the problem, and it’s related to the translation.
If users uses “WordPress default” as admin language, menu items are hidden properly, but if they select a different language, rules are ignored.It’s a multilingual website, and users need to select different versions for the admin dashboard, so… how can I fix it?
Other minor problems/doubts:
– If I activate debug option on adminimize setting, when I save any page on WordPress admin dashboard I receive a blank page, with the following warning:
Warning: Cannot modify header information – headers already sent by (output started at /httpdocs/wp-content/plugins/adminimize/inc-setup/helping_hands.php:94) in /httpdocs/wp-includes/pluggable.php on line 1228– What is the meaning of the red background on the option page? Because for some roles all column is red, for other is alternate, and for other ones it’s only white/grey… (https://dl.dropboxusercontent.com/u/209810/adminimize.png)
Thank you
Ok, perfect, it works! Thank you!
Ok, the is_admin clause is perfect, thanks.
However, still no error on user registration form.
After several tests, now I’m able to interrupt the registration if checkbox is not checked, but no errors are displayed.This is the code in theme-my-login-custom.php:
function tml_validate_user_signup ( $result ) { if ( is_admin() ) return; if (!($_POST['acceptdisclaimer']) ) { $result['errors']->add('no_disclaimer', 'NO DISCLAIMER'); } return $result; } add_filter('wpmu_validate_user_signup', 'tml_validate_user_signup');
No, it doesn’t work.
But I noticed a strange thing:
If I try to add an user in the site admin dashboard, it returns the “NO DISCLAIMER” error, so it seems “tml_validate_user_signup” works for the admin dashboard, and not for the thememylogin registration form…I need the exact opposite behaviour (No error for administrators, and validate forms for normal users)
No solution to suggest?
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Get email after user activactionOk, the function to use is get_userdata, and not get_user, but it works! ??
Thank you Jeff ??