coderguy
Forum Replies Created
-
Resolved
I found my issue. I was incorrectly requesting my post id.
The default is:
return get_post_meta( $trigger->post->ID, ‘_my_meta_key’, true );I needed to use:
return get_post_meta( $trigger->my_custom_post_type_slug->ID, ‘_my_meta_key’, true );Forum: Plugins
In reply to: [GiveWP - Donation Plugin and Fundraising Platform] Send thank you giftThanks! I’ll give it a try
Forum: Plugins
In reply to: [Groups] Hide Registered GroupThe question isn’t quite resolved. What I’m actually trying to do it DENY the ability to post to the Registered Group when your actually part of that group. E.g. A user is in Group A, Group B, and Registered Group. I want them to only have the capability to post to Group A, and Group B, but NOT Registered Group. Is there a way to set that up with permissions?
Forum: Plugins
In reply to: [Groups] Hide Registered Groupthanks @proaktion
Forum: Plugins
In reply to: [Groups] Dont Allow Post to AnyoneThank you @eggemplo
Forum: Plugins
In reply to: [Groups] Hide Registered GroupIs there a repercussion of removing a user from the Registered Group? (e.g. does all users need to be in that group for the plugin to function)