planktonwebdesign
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] Auto completion for non-robotsSorry @dnesscarkey I just realised the users are successfully completing the gravity form but getting stuck at the WP registration form which Iām using the Theme My Login plugin and also a captcha.
Does WP Armour work with theme my login?
Forum: Plugins
In reply to: [WP Armour - Honeypot Anti Spam] Auto completion for non-robotsHey @dnesscarkey,
Thanks for replying.
I just updated the plugin and found that GF now just outputs “There was a problem with your submission. Errors have been highlighted below.”
I have also found that if that if they have JS off and recaptcha (I am not a robot) is installed the form doesn’t submit.
Does recaptcha need to be removed too? and honeypot on GF need to be unchecked?
Thanks so much. Seem like silly questions but just trying to make sure I don’t miss any enquiries.
Can I email you a link to my site to check?
Forum: Plugins
In reply to: [Mailgun for WordPress] silent fail after last updateMe too just went through all my sites and did as above on 1.5.12.3 hope it is easy to get the word out to others who have updated to this.
Forum: Plugins
In reply to: [Theme My Login] Recaptcha gravity forms conflictNo different page.
Gravity forms released a new version which mentions quite a few changes to recaptcha. Does TML need to update any recaptcha elements? is there some code I can send that would help?
Forum: Plugins
In reply to: [Import Users from CSV] Customise the New User Notification EmailUPDATE:
This plugin SB Welcome Email Editor was able to do what I needed along with import users from CSV plugin, awesome!
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingOk cool. My workaround is going to be:
The user can register but all extra fields are hidden as they are not saving when I’m using Theme My Login. Once they active their account from the email sent to them upon registering they can then login. Once logged in they can edit their profile which will have all the RPR fields there. I’ve setup a notification to alert me when a user edit’s their profile so I can then login, check their profile and then do what I normally do to add them to the pages etc.
Thanks for your help, it’s been great to have someone to bounce these ideas off of and look forward to the updates to RPR as they come out. Hopefully this can replace Theme My Login.
I also tried http://pippinsplugins.com/front-end-registration-and-login-forms-plugins/ but it didn’t pull in the RPR fields at all so no good š
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingIt’s really just having the login form and register pages in the template:
http://staging.nzmusicteachers.co.nz/login
http://staging.nzmusicteachers.co.nz/join-up/?action=register form is down the bottom of this page
Register Plus has everything except having forms in the front end and some redirect to stop subscribers going to backend on login etc
The old site nzmusicteachers.co.nz has them working together but the versions are old like you said hmm. Might have to sit on this for a bit?
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingBugger just did a test. I disabled Theme my Login (6.2.3) and the extra fields all save as expected.
So there must be a conflict once you click register, I’ll try disabling some of the redirection and email notification things I have setup in Theme My Login and try using the options available in RPR and see if I can get it to work.
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingHey Radiok,
I’ll look into this when I update to 3.9.2 saw the upgrade notice š
I’ve pushed the site to a testing server, bugger is the registration process isn’t saving any of the additional extra fields š I can go in an edit my profile and save them which is great but the initial registration isn’t saving anything.
I’m using theme my login too. Do you reckon there is a conflict when you register?
staging.nzmusicteachers.co.nz
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingGrr I just whacked that example together so shouldn’t have made that mistake on my actual template. If you have it working I’ll need to try looking harder at my code as it might be something like that that is stopping it from working.
Thanks so much for taking the time to look at this. Is my str_replace the best way to go to output stuff so it looks like the label I setup in RPR?
You must be busy so no dramas as I can roll with my hodge podge of code.
Thanks again! Is is possible to ask you to paste your code here so I can see how you got it going to make sure I’m on the right track?
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingCool, here is an example of what I have going in the template if that helps
// the url is nzmusicteachers.co.nz/theory-lessons // the extra field key is rpr_instruments, values are theory_lessons,trumpet_lessons,guitar_lessons $slug = basename(get_permalink()); // Page Slug which is theory-lessons $service = str_replace("-", "_", $slug); // so theory-lessons becomes theory_lessons $professional_crew = array( 'role' => 'professional', 'meta_key' => rpr_instruments, 'meta_value' => $service, 'meta_compare' => 'LIKE' ); //////////// Professional //////////// // Create the WP_User_Query object $wp_user_query = new WP_User_Query($professional_crew); // Get the results $authors = $wp_user_query->get_results(); // Check for results if (!empty($authors)) { // loop through each author foreach ($authors as $author) { // do stuff like $instruments = get_the_author_meta('rpr_instruments'); $no_underscores = str_replace("-", "_", $instruments); echo str_replace(", ", ",", $no_underscores); // add a space after the comma } }Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingYeah, I did the meta_compare to ‘LIKE’ and also tried ‘IN’ and ‘EXISTS’ and ‘BETWEEN’ but none of them worked if the user has checked a couple of options. Havn’t tried to break up the options with spaces with a str_replace and see if it works, would I add the %’s to the options when creating them or in the query?
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingOne thing I noticed was that the output of the checkbox items using;
the_author_meta('rpr_instruments');Bass Guitar Lessons,Trumpet Lessons,Theory Lessons
is spat out as the following in my template
bass_guitar_lessons,trumpet_lessons,theory_lessons
but in the labels of the form, spacing and capitalisation is respected
If I put spaces they are replaced with _’s. Is it possible to output the checkboxes as they appear in the labels? I know I can do a str_replace() but wondered if this is avoidable?
Also I was keen to do a WP_User_Query query to see if the user had checked an option but the value contains all the checked options as above. Do think it is possible to do something like this if the user has checked multiple options?
$professional_crew = array( 'role' => 'professional', 'meta_key' => rpr_instruments, 'meta_value' => 'theory_lessons' ); WP_User_Query($professional_crew);Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingYip that was the fix!
Forum: Plugins
In reply to: [Plugin: Register Plus Redux 3.9] Checkbox value not savingThankyou sooo much mate, I’ll keep working but I reckon this should be all good š