Forum Replies Created
-
AuthorPosts
-
TravisEstes
ParticipantI understand this...but is there a way to store entire GF form entries in User Meta vs field by field?
TravisEstes
ParticipantWait...what? I'm using the Metabox User Meta extension...not a GF add on one.
TravisEstes
ParticipantThanks so much for that solution, it does seem to work.
Question: My forms have a LOT of fields. Is there a way it's possible to show/store the entirety of the form's content in the member's user data without mapping every individual field?
February 3, 2020 at 11:34 PM in reply to: ✅Beaver Themer Field Connecter Not Working with Users #18118TravisEstes
ParticipantWorks perfectly now! Thank you SO much!!!!
February 1, 2020 at 1:36 AM in reply to: ✅Beaver Themer Field Connecter Not Working with Users #18081TravisEstes
ParticipantHey there, checking in on this! Just to confirm the real issue:
It seems the Meta Box – Beaver Themer Integrator doesn't work when the metaboxes are applied to Users. Any fix for this? Happy to provide login details to my site if needed! At this point this is the only thing holding up my site 😉
TravisEstes
ParticipantOH MY GOSH THAT WORKED! Thank you Anh, you are a rockstar!!!!!
TravisEstes
ParticipantFollow up:
1) Was a caching issue!
2) This is still broken. It seems my multiselect and slider tools don't work either. Note that this only happens when I attach the metaboxes to Users instead of a Post Type. Otherwise my users would have no issue...but I kinda need these fields mapped to Users 😉
Made a video of the issue if it helps:
TravisEstes
Participant1) I'm going to double check that it's not just a caching issue 😉 with WPEngine
2) Yes, I have! This is the code I added to functions.php:
function mb_allow_subscriber_uploads() { if ( is_admin() ) { return; } // Replace 'subscriber' with the required role to update, can also be contributor. $subscriber = get_role( 'freelancer' ); $subscriber->add_cap( 'upload_files' ); } add_action( 'init', 'mb_allow_subscriber_uploads' );Note that I actually have TWO roles that I'll need this for, not just one. Unsure how the code needs to change to account for two roles.
-
AuthorPosts