donmik
Forum Replies Created
-
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] checkbox aceptance field doesnt workHi,
I’m sorry but I’m not familiar with this plugin. Maybe you can ask support and they can help you?
Thanks! 😉
You need to do what @cwjordan says. Take a look at buddypress files edit.php and register.php and update your template files.
What theme are you using? I believe it’s because the themes have not updated their templates and they are using old functions of buddypress. This is still working for buddypress but not with my plugin until version 2.0 I think…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] checkbox aceptance field doesnt workWere you using a custom template for registration? Can I see it, maybe the problem is inside this template…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Multiple file upload fieldHi,
I’m sorry but I don’t believe there is an easy way… It’s probably possible but it’s not easy and i twill take time to add this feature.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Birthdate Selector off by 1 monthYou’re right! Sorry! I’ve solved it in 2.0.2, but maybe the birthdate are wrong now and you should edit your profiles… :S
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] checkbox aceptance field doesnt workmmm, weird, I’m trying on twenty fourteen too and I see it. Try the following:
1. Open buddypress-xprofile-custom-fields-type/classes/Bxcft_Field_Type_CheckboxAcceptance.php.
2. Replace this:
echo apply_filters( 'bp_get_the_profile_field_checkbox_acceptance', $html, $args['type'], $this->field_obj->id, $checkbox_acceptance );With:
// echo apply_filters( 'bp_get_the_profile_field_checkbox_acceptance', $html, $args['type'], $this->field_obj->id, $checkbox_acceptance ); echo $html;Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Birthdate Selector off by 1 monthI’m not sure I understand, can you send me a screenshot or a link?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Linking fieldsI believe the easier way should be creating 2 textboxes and coding some javascript, converting those fields in chained dropdown boxes…
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] checkbox aceptance field doesnt workWhat theme are you using? Can I see your website maybe?
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] Still Necessary?You can install it and check. This plugin add some types of field that buddypress don’t have.
Forum: Plugins
In reply to: [Buddypress Xprofile Custom Fields Type] checkbox aceptance field doesnt workCheck the new update 2.0.1, I hope it solves this error, sorry!
Hi,
I don’t understand this. Can you please explain a bit more? Maybe using screenshots or giving me access to see what you are talking about?
Thanks.
It works but you need to read a little more the docs of wordpress… I think.
This function:
bp_member_profile_data( 'field=NAME' )
returns an array with the post ids.You need to walk along this array. Something like this:
$ids = bp_member_profile_data( 'field=NAME' ); foreach ($ids as $post_id) { $post = get_post($post_id); echo $post->post_title; }