-
Renato Alves replied to the topic Signup api end point not working in the forum Creating & Extending 1 year, 6 months ago
XProfile Fields in it, but only the full_name field is getting saved, all other fields are not getting saved when signup is complete.
Now, it is important the signup fields are registered in the proper location.
Confirm if your signup fields are correctly grouped here: https://bp-demo.test/wp-admin/users.php?page=bp-profile-setup In the Signup…[Read more]
-
Renato Alves replied to the topic Signup api end point not working in the forum Creating & Extending 1 year, 6 months ago
Three things:
– I can’t replicate the issue you have.
–user_nameis not a valid field, btw. It was deprecated.Using the followwing payload, I actually get this in BuddyPress 14.0 since you are using
+in theuser_login, that’s not valid.Request Payload.
`
curl -X POST “https://bp-demo.alley.test/wp-json/buddypress/v1/signup/”
-d…[Read more] -
Renato Alves replied to the topic bp-templates/bp-legacy/buddypress/activity/index.php line 164 in the forum Installing BuddyPress 1 year, 6 months ago
This was fixed and will be released as part of BuddyPress 14.1. https://buddypress.trac.wordpress.org/milestone/14.1.0
-
Renato Alves replied to the topic Signup api end point not working in the forum Creating & Extending 1 year, 6 months ago
Can you share your BP Version, request payload?
-
Renato Alves replied to the topic bp-templates/bp-legacy/buddypress/activity/index.php line 164 in the forum Installing BuddyPress 1 year, 6 months ago
We have a fix in progress: https://buddypress.trac.wordpress.org/ticket/9221
-
Renato Alves replied to the topic bp-templates/bp-legacy/buddypress/activity/index.php line 164 in the forum Installing BuddyPress 1 year, 6 months ago
I see the problem, btw. But just trying to get more data about the BP version.
-
Renato Alves replied to the topic bp-templates/bp-legacy/buddypress/activity/index.php line 164 in the forum Installing BuddyPress 1 year, 6 months ago
Can you share the error and which version of BuddyPress you are using?
-
Renato Alves replied to the topic BuddyPress 14.0.0 in the forum Miscellaneous 1 year, 7 months ago
Nice! I always wonder how many pizza restaurants are available in Frace. =P
-
Renato Alves replied to the topic BuddyPress Emails in the forum Installing BuddyPress 1 year, 7 months ago
Only if you want to. But it all depends where you have BuddyPress hosted. If you can get notifications when resetting a password, you can get send/recieve emails from BuddyPress too.
-
Renato Alves replied to the topic Signup api end point not working in the forum Creating & Extending 1 year, 7 months ago
@hoopkonsulting As the error suggests, you are not sending a required field as part of the signup payload.
-
Renato Alves replied to the topic What is the most important thing BuddyPress is missing? in the forum Requests & Feedback 3 years, 4 months ago
Before diving into technical or feature suggestions since as a developer I’m automatically wired to go via that route, I thought about asking non-technical people about the product, BuddyPress, itself.
I recently participated in the WordCamp US and had the chance of talking to a few people, besides conversations I had online (Slack, etc). I t…[Read more]
-
Renato Alves replied to the topic Register a REST field for the Activity Endpoints in the forum How-to & Troubleshooting 3 years, 6 months ago
This requestion seems similar to this issue we got here: https://github.com/buddypress/BP-REST/issues/449#issuecomment-1196139043
> I’m able to use the provided function in that documentation article and get the proper response.
-
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
Awesome! Sorry for not seeing that at first. In my tests, I always get an
arrayforbp_get_option( 'bp-active-components' ), so I did not see it as a possible bug at first.Glad we sorted this out! =D
-
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
Could you also type cast this as an
array? On line 98.$active_components = apply_filters( 'bp_active_components', (array) bp_get_option( 'bp-active-components' ) );I think this is coming as a string where it should be an array.
-
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
@wcholbi Odd! Could you
var_dumpthe$active_componentsas suggested below?var_dump( $active_components );
if ( 'optional' !== $type && ! empty( $components['core'] ) ) {
$active_components['core'] = '1';
} -
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
@wcholbi Thank you for trying that again.
I’m still unable to replicate this issue but I think I know why that’s happening. Could you apply this patch and test it?
`
if ( ‘optional’ !== $type && ! empty( $components[‘core’] ) ) {
$active_components[‘core’] = ‘1’;
}
` -
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
@wcholbi Could you share the error you are getting after applying my patch?
-
Renato Alves replied to the topic Fatal error after updating to PHP 8.0 in the forum How-to & Troubleshooting 3 years, 6 months ago
@wcholbi I’m able to replicate the issue and I have a fix for this here: https://github.com/buddypress/BP-REST/pull/450
Thanks for reporting the bug.
-
Renato Alves replied to the topic asking activation key. this is problem. i wanna fix it in the forum Installing BuddyPress 6 years ago
The activation key is necessary to avoid spam users in your community. It is an intergral part of BuddyPress and I wouldn’t recommend removing it.
-
Renato Alves replied to the topic bp_send_email problems – not finding template email in the forum How-to & Troubleshooting 6 years, 2 months ago
The main reason to use the hook is in case another plugin or yourself try to reinstall the emails. If one does that, that email you showed creating will be deleted and you will have to recreate it by hand again. That doesn’t seem to be desireable.
Also, creating via the hook, you can use the correct name when sending the email. You say you read…[Read more]
- Load More
@espellcaste
Active 1 week, 5 days ago