Dave from Gravity Wiz
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Activation errorHey ugene, this is fixed in v3.1. Let me know if you have any other issues. ??
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] PHP WarningHi guys, this is fixed in v3.1. Thanks for reporting it. ??
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Checkboxes & TaxonomiesHi everyone, I’ve just released v3.1 which address this issue (among others). Let me know if anyone else experiences any issues with this.
Forum: Reviews
In reply to: [Gravity Forms + Custom Post Types] No longer works with GF 1.9Hi Martha, I’ve just released v3.1 which resolves this issue. Would you mind reviewing your rating? ??
Hi mrsminkle, nope, never used it. If you present my solution to the plugin author, they might be able to provide a version that works for their plugin. ??
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Add entry authors ip to a post fieldHi steebza, here is how you can configure a GF Custom Field to be populated with the user’s IP (screenshot). Since it is a Custom Field field, it will automatically be added to the post meta of the generated post.
I’ve written a solution for this for another user. It does not require the usage of this plugin; only this snippet:
https://gist.github.com/spivurno/7c4df0129545c0629150
Here is an overview of how the functionality works:
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Cannot find Custom field name@giellemme, private post meta keys (any that start with an underscore) will not show up in the Gravity Forms custom field drop down. You can still manually type that meta key in though.
@baden, see my answer to Giellemme. You don’t actually have to select it from the drop down. You can just type it out.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] display gravity form fields in single.phpHi Peter, one easy way to do this is to display the custom fields in the post content with shortcodes. This might help you:
https://www.ads-software.com/plugins/custom-fields-shortcodes/
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] It doesn't support non public post type?Hi SilverKenn, the upcoming 3.1 version adds the “gfcpt_post_type_args” filter which will allow you to override the arguments used to fetch the post types which are populated into the setting. To show both public and non-public post types, you would use the following code:
add_action( 'gfcpt_post_type_args', function( $args ) { unset( $args['public'] ); return $args; } );
Hi petro, this plugin does not interact with GF’s Custom Fields. I would contact Gravity Forms support about this one. Let me know if I’ve misunderstood the issue.
I’m not sure I understand the issue you are reporting. Could you clarify and also include an export of your form?
I agree, tzeldin88. It is a little weird. I’m considering adding a “Taxonomy” field that would have input types for all the current choice-based fields (checkboxes, selects, etc). Glad you got this figured out. ??
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Not Adding Gallery ImagesHi amanhstu, this plugin does not handle actually creating the post, only the setting of the post type (and assigning taxonomies if you’re using that feature). I suspect that this is an integration issue between Gravity Forms and your custom fields plugin. You can confirm this by trying to recreate this issue on a regular post with this plugin deactivated.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Update user meta after submit Post TypeHi bkseen, something like this in your functions.php should do the trick. Update “my_custom_key” to whatever you want the meta key to be.
add_action( 'gform_user_registered', function( $user_id, $feed, $entry ) { add_user_meta( $user_id, 'my_custom_key', $entry['post_id'] ); }, 10, 3 );