Changeset 2468354
- Timestamp:
- 02/03/2021 10:04:40 PM (4 years ago)
- Location:
- buddyforms-members
- Files:
-
- 80 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
buddyforms-members/trunk/includes/form-elements.php
r2418054 r2468354 111 111 'label' => __( 'Member Taxonomy', 'buddyforms-members' ), 112 112 ); 113 $elements_select_options['buddyforms']['fields']['xprofile_field'] = array( 114 'label' => __( 'xProfile Field', 'buddyforms-members' ), 115 'is_pro' => true, 116 ); 117 $elements_select_options['buddyforms']['fields']['xprofile_group'] = array( 118 'label' => __( 'xProfile Field Group', 'buddyforms-members' ), 119 'is_pro' => true, 120 ); 113 114 // TODO: implement an alternative solution 115 // that doesn't hide the pro elements. 116 if ( ! buddyforms_members_fs()->is_not_paying() ) { 117 $elements_select_options['buddyforms']['fields']['xprofile_field'] = array( 118 'label' => __( 'xProfile Field', 'buddyforms-members' ), 119 ); 120 $elements_select_options['buddyforms']['fields']['xprofile_group'] = array( 121 'label' => __( 'xProfile Field Group', 'buddyforms-members' ), 122 ); 123 } 121 124 122 125 return $elements_select_options; -
buddyforms-members/trunk/includes/templates/buddyforms/members/members-post-create.php
r2412118 r2468354 11 11 $current_component = $bp->current_component; 12 12 13 $form_slug = $buddyforms_member_tabs[ $bp->current_component ][ $bp->current_action ]; 13 $form_slug = $buddyforms_member_tabs[ $bp->current_component ][ $bp->current_action ]; 14 $form_action = false; 14 15 15 16 if ( bp_current_action() == $form_slug . '-create' ) { … … 17 18 $post_parent_id = $bp->action_variables[0]; 18 19 } 20 $form_action = 'create'; 19 21 } 20 22 if ( bp_current_action() == $form_slug . '-edit' ) { 21 23 if ( isset( $bp->action_variables[0] ) ) { 22 $post_id = $bp->action_variables[0];24 $post_id = $bp->action_variables[0]; 23 25 } 26 $form_action = 'edit'; 24 27 } 25 28 if ( bp_current_action() == $form_slug . '-revision' ) { … … 27 30 $revision_id = $bp->action_variables[1]; 28 31 } 32 $form_action = 'revision'; 29 33 } 30 34 … … 34 38 'post_parent' => $post_parent_id, 35 39 'post_type' => $post_type, 36 'revision_id' => $revision_id 40 'revision_id' => $revision_id, 41 'form_action' => $form_action, 37 42 ); 38 43 -
buddyforms-members/trunk/loader.php
r2418054 r2468354 8 8 * Plugin URI: http://buddyforms.com/downloads/buddyforms-members/ 9 9 * Description: The BuddyForms Members Component. Let your members write right out of their profiles. 10 * Version: 1.4.1 310 * Version: 1.4.14 11 11 * Author: ThemeKraft 12 12 * Author URI: https://themekraft.com/buddyforms/ -
buddyforms-members/trunk/readme.txt
r2418054 r2468354 3 3 Tags: buddypress, user, members, profiles, custom post types, taxonomy, frontend posting, frontend editing, form, forms, form builder, forms builder, post forms, user generated content, form, forms, frontend forms, contact form, contact forms, content form, post form, post forms, content forms, registration form, registration forms, custom form, custom forms, form, form administration, form builder, form creation, form creator, form manager, forms, forms builder, forms creation, forms creator, forms manager, community, content, content generation, crowdsourced content, frontend generated content, images, post, posts, public, publish, share, submission, submissions, submit, submitted, upload, user submitted, user-generated, user-submit, user-generated content 4 4 Requires at least: 3.9 5 Tested up to: 5. 46 Stable tag: 1.4.1 35 Tested up to: 5.6 6 Stable tag: 1.4.14 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 105 105 106 106 == Changelog == 107 = 1.4.14 - 3 Feb 2021 = 108 * Fixed issue with the "pro" fields (xprofile ones) that are remained disabled when BuddyForms was free but BF Members pro. 109 * Add support to form_action use in PR 714 to fix an issue on the parent extension. 110 107 111 = 1.4.13 - 12 Nov 2020 = 108 112 * Fixed CSS issue related with build-in modals in BuddyBoss.
Note: See TracChangeset
for help on using the changeset viewer.