-
Renato Alves replied to the topic Is it possible to verify members? in the forum Creating & Extending 7 years, 5 months ago
I will have to be a custom work. No problem exists so far!
-
Renato Alves replied to the topic WP Rest APi + Oauth + Bp Rest in the forum Creating & Extending 7 years, 5 months ago
The BP REST API does not have support for users yet. My guess is that the version you are using if imcomplete, missing support for several components.
Check the work here for more updates: https://github.com/buddypress/BP-REST
-
Renato Alves replied to the topic Random User when /Members is loaded? in the forum How-to & Troubleshooting 7 years, 8 months ago
You can add as much options as you want:
function more_users( $args ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
return $args;
}$args['per_page'] = '50';
$args['type'] = 'random';
return (array) $args;
}
add_filter( 'bp_after_has_members_parse_args', 'more_users', 10… -
Renato Alves replied to the topic Random User when /Members is loaded? in the forum How-to & Troubleshooting 7 years, 8 months ago
You can use the ‘bp_after_has_members_parse_args’ hook to filter for random users adding it to the bp-cuscom.php file.
function random_users( $args ) {
if ( is_admin() && ! defined( 'DOING_AJAX' ) ) {
return $args;
}$args['type'] = 'random';
return (array) $args;
}
add_filter( 'bp_after_has_members_parse_args', 'random_users', 10… -
Renato Alves replied to the topic Add BuddyPress User To Cart in WooCommerce? in the forum How-to & Troubleshooting 8 years ago
I’m working on something very similar to the scenario you just described. Here is an idea it might work for you:
You could add/associate the contractors/user IDs with the WooCommerce cart. It would allow severals contractors to be associated with the same WooCommerce order/cart.
Here is a possible workable model.
– Add a project as a product;
-…[Read more] -
Renato Alves replied to the topic Adding LMS plugin to BP (Learning Management System) in the forum Creating & Extending 8 years, 1 month ago
I’d say the answer to this question lies in the LMS plugins out there… Each one has its own approach to integrate BuddyPress with them.
Also you will be able to get a look at how the pieces integrate together.
-
Renato Alves commented on the post, BuddyPress 2.7.0 Beta 1, on the site BuddyPress.org 8 years, 1 month ago
Great! Now the testing begins! =D
-
Renato Alves commented on the post, We talked about BuddyPress at WordCamp Antwerp, on the site BuddyPress.org 8 years, 5 months ago
Congrats imath! I’m impressed by the number of tools you’ve created around BuddyPress. They are all really helpful. Congrats!
-
Renato Alves replied to the topic Limiting dashboard permissions on multisite in the forum How-to & Troubleshooting 8 years, 7 months ago
I understand, but like I said, your requirements are very specific for your network. Good luck! =)
-
Renato Alves replied to the topic Limiting dashboard permissions on multisite in the forum How-to & Troubleshooting 8 years, 7 months ago
Those are very specific changes. I hardly think there is a plugin out of the box, able to apply these changes, but they are possible.
I find it safe enough.
-
Renato Alves commented on the post, BuddyPress 2.3.0 "Livio", on the site BuddyPress.org 9 years, 5 months ago
Congrats! =)
-
Renato Alves updated the Member Types page, on the BuddyPress Codex 9 years, 6 months ago
BuddyPress 2.2 introduced the concept of member types. This functionality is outlined below.
Registering member types
BuddyPress itself does not register any member types. Plugins and themes can register member […] -
Renato Alves replied to the topic Beta Testing: WordPress 4.1 & BuddyPress in the forum How-to & Troubleshooting 9 years, 11 months ago
@julianprice +1
@jgwolfensberger I disagree, best practice would be testing on a stage/dev site first and then, upgrade your installation when no problem are found.
Consider for example custom plugins and functions you have in your theme/WP installation, there are not the same as the many other websites with BP out there in the web.
-
Renato Alves replied to the topic Captcha Cannot Prevent Robot Registering On BuddyPress in the forum How-to & Troubleshooting 10 years, 5 months ago
Or was using its own form version and was with bad programming?
-
Renato Alves replied to the topic bbPress User Profile vs. Buddypress User Profile in the forum How-to & Troubleshooting 10 years, 5 months ago
@danbp I’m sorry, I think he expects only one URL.
-
Renato Alves replied to the topic Theme development woes in the forum Creating & Extending 10 years, 6 months ago
Hi @ernest8888,
I’ve never used Commons In a Box, so I couldn’t say what kind of theme compatibility is necessary to work with it.
I do think you’re using two plugins that perform the same thing, as far as I know about it, CIAB does what BuddyPress does, am I wrong?
Also, check if there has to be some sort of organization in the template…[Read more]
-
Renato Alves replied to the topic Using Buddypress messaging in a unique way in the forum Creating & Extending 10 years, 6 months ago
Here are some suggestions and ideas:
1. and 2. Here you would configure a bit to make the roles do whatever you want when you want it.
3. It is possible to remove it and activate only the messaging component.
4. Today this is easy with the Theme Compatibility and Template Files…[Read more]
-
Renato Alves replied to the topic Overrding BuddyPress files in the forum Creating & Extending 10 years, 6 months ago
Sorry, I misunderstood. I’m not sure if the above example would work in a plugin directory.
-
Renato Alves replied to the topic Overrding BuddyPress files in the forum Creating & Extending 10 years, 6 months ago
Try not to repeat all the file path. Just putting:
themes/your-theme/buddypress/members/single/member-header.php
-
Renato Alves replied to the topic Theme development woes in the forum Creating & Extending 10 years, 6 months ago
Great! Glad to help! =)
- Load More
@espellcaste
Active 1 week ago