Sea Jay
Forum Replies Created
-
For what it’s worth, here is what our developer wrote about the problem:
CPT addon doesn’t properly account for multiselect boxes. GF turns
multiselect values into a comma-separated string, which it was then
casting as an integer, with the result that something like ‘3,10,12’
would become simply ‘3’. Thus only the first field was being saved to
the post.Here is the patch we applied until V4 is ready:
diff --git a/wp-content/plugins/gravity-forms-custom-post-types/gfcptaddonbase.php b/wp-content/plugins/gravity-forms-custom-post-types/gfcptaddonbase.php index 9748d14..4359244 100644 --- a/wp-content/plugins/gravity-forms-custom-post-types/gfcptaddonbase.php +++ b/wp-content/plugins/gravity-forms-custom-post-types/gfcptaddonbase.php @@ -413,6 +413,10 @@ function save_taxonomy_field( &$field, $entry, $taxonomy ) { $terms = $entry[$field['id']]; if ( !empty($terms) ) wp_set_post_terms( $entry['post_id'], $terms, $taxonomy ); + } else if ( array_key_exists( 'type', $field ) && $field['type'] == 'multiselect' ) { + // terms are passed as comma-separated + $term_ids = wp_parse_id_list( $entry[$field['id']] ); + wp_set_object_terms( $entry['post_id'], $term_ids, $taxonomy, true ); } else { $term_id = (int) $entry[$field['id']]; if ( $term_id > 0 )Thanks so much, Brad, for your continuing support for this essential plugin!
Forum: Plugins
In reply to: [BuddyMobile] [Plugin: BuddyPress Mobile] No admin menuSame here. Tried single site and multisite activation; nothing. No admin page.
Does your Themeforest theme use jquery-ui datepicker? If so, there may be a namespace conflict. Worth checking with the theme developers.
FWIW, the datepicker is working fine with the BuddyPress default theme.
Forum: Plugins
In reply to: [Post Type Switcher] [Plugin: Post Type Switcher] Conflict with WP ViewsThank you for asking!
I simplified my architecture to only include one custom post type, so I haven’t had a chance to check into this compatibility issue. I’ll be sure to report when I have a site where I can check.
Hey, thank you very much!
I’m new to this plugin, and I hadn’t explored templates yet. This is perfect.
Thumbs up.
I, too, am using Group Management with BP 1.5.4 and WP 3.3.1. Still no-go with auto-group join.
Forum: Plugins
In reply to: [BulletProof Security] [Plugin: BulletProof Security] BPS and WP Super CacheI am also using LAMP (rather MAMP) for testing, but WPSC works just fine after changing the machine path.
I’ll comment out the warning and keep testing. Thanks for checking into it for me. You are responsive, and that is appreciated.
Forum: Plugins
In reply to: [BulletProof Security] [Plugin: BulletProof Security] BPS and WP Super CacheActually, I am looking at my root .htaccess file right now, and it starts with this …
Options +FollowSymlinks Options -Indexes # BEGIN WPSuperCache <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /… has about 60 lines for WPSC, followed by …
# END WPSuperCache # BEGIN WordPress… etc. It’s right there, so that’s why I’m confused.
Strange?
Forum: Plugins
In reply to: [BulletProof Security] [Plugin: BulletProof Security] BPS and WP Super CacheI am using WPSC, and I am using it via mod_rewrite rules (all generated by WPSC), and WPSC is, indeed, network activated.
Hmmm.
Forum: Plugins
In reply to: [BulletProof Security] [Plugin: BulletProof Security] BPS and WP Super CacheThank you so much for that clarification. I missed that distinction when I was reading the warning and the manual.
So, I changed BPS to be only active on the main site … and I’m still getting the warning.
WP Super Cache is deactivated and WPSC .htaccess code – # BEGIN WPSuperCache # END WPSuperCache – was found in your root .htaccess file.
And WPSC actually is activated and working. However, might the fact that WPSC is network activated (and not on that main site) be an issue?
I had that same problem. Forum threads indicate this plugin is no longer working for 1.5.
Forum: Plugins
In reply to: [BuddyPress Groupblog] [Plugin: BuddyPress Groupblog] Confused about themesSure. From my use of the plugin, you can: either …
– Use the Groupblog theme to make the blog take on the look of BuddyPress, integrated underneath the “Blog” tab
… or …
– Use any theme for the blog. Then, clicking on the “Blog” link takes you to the blog *as you’ve themed it*.
With a child theme of either option, you can style as you wish.
Try it out.
Does that help?
Not working for me with WP 3.3.1 BP 1.5.4.
More specifically, I installed the plugin on my multisite instance, tried activating both network-wide and on the core blog, but no option was available in the BP component settings, and I received this warning when choosing BuddyPress > Auto Group Join (which *does* appear in the admin menu):
BuddyPress Groups are currently Disabled. Please enable groups in the BuddyPress – Component Setup Menu.
Forum: Plugins
In reply to: [BuddyPress Groupblog] [Plugin: BuddyPress Groupblog] Confused about themesIf you are using Groupblog, then you have associated a group with a blog.
You may use any current theme for the blog, and it’ll work fine. If you want the blog to *look like* the Buddypress group, then you would active the Groupblog theme for that blog, and then tweak.
If you have a custom theme for the blogs and you like it, there is no need to use a Groupblog theme.
Does that help?