-
Peter Hardy-vanDoorn replied to the topic explode function in the forum Ideas 7 years, 2 months ago
Off the top of my head, it should just be a case of :
$needs = explode( ", ", bp_member_profile_data(‘field=School Needs: Social Welfare’) );
Which should then put an array into $needs like this:
Array
(
[0] => Environmental programmes
[1] => Sports development
) -
Peter Hardy-vanDoorn replied to the topic How can I get all userId for a given Member type in the forum How-to & Troubleshooting 7 years, 2 months ago
If getting your hands dirty with SQL scares you (like it does me) BP has its own functions:
$member_type = "doctor"; // slug of member type
[Read more]
if ( bp_has_members( array ( 'type' => 'alphabetical', 'per_page' => 1000, 'member_type' => $member_type ) ) ) {
while ( bp_members() ) : bp_the_member();
//… -
Peter Hardy-vanDoorn replied to the topic Buddypress paid membership in the forum Installing BuddyPress 7 years, 2 months ago
Try the WooCommerce Members bundle… https://woocommerce.com/products/woomembers-bundle/
-
Peter Hardy-vanDoorn replied to the topic Avatar across multisite in the forum Miscellaneous 7 years, 2 months ago
I know it’s not quite what you’re looking for, but you could always just disable profile uploading in Buddypress’ settings and encourage your users to set up a Gravatar account.
-
Peter Hardy-vanDoorn replied to the topic Can network users have the same avatar in all sites? in the forum Showcase 7 years, 2 months ago
I know it’s not quite what you’re looking for, but you could always disable profile uploading in Buddypress’ settings and encourage your users to set up a Gravatar account.
-
Peter Hardy-vanDoorn replied to the topic Setting Profile Fields To Be Viewable To Admin or Moderators in the forum How-to & Troubleshooting 7 years, 3 months ago
Try this plugin. It hasn’t been updated for 2 years, but it works perfectly for me.
Adds these options to the visibility options: ‘Admin’, ‘Everyone (Admin Editable)’ and ‘Only Me (Admin Editable)’
Hope that helps
-
Peter Hardy-vanDoorn replied to the topic How do I show woocommerce activities in Buddypress activity? in the forum Creating & Extending 7 years, 3 months ago
Have a look at this plugin: https://themekraft.com/products/woocommerce-buddypress-integration/
-
Peter Hardy-vanDoorn replied to the topic Buddypress and Woocommerce conflict in the forum Installing BuddyPress 7 years, 3 months ago
I don’t have a problem – I have BP & WP installed on 2 sites and have never had an issue, so I suspect it’s a co-incidence.
You’ll need to do some investigation to find out what is actually causing the error. Start by changing your wp-config.php file to write an error log. Find the line which says
define('WP_DEBUG', false);
and change it (plus…[Read more] -
Peter Hardy-vanDoorn replied to the topic Can an xProfile field be used to auto add to group in the forum How-to & Troubleshooting 7 years, 3 months ago
As far as I know, there’s no way to do that with BuddyPress’ built-in tools.
However, it is possible with plugins such as the one you identified.
I had a similar requirement and ended up doing it by utilising BP’s Member Types functionality (which require a plugin or custom code to set up), a plugin called BuddyPress Xprofile Member Type Field…[Read more]
-
Peter Hardy-vanDoorn replied to the topic how to change the count display to the left? in the forum How-to & Troubleshooting 7 years, 6 months ago
Add this to your CSS:
#buddypress div.item-list-tabs ul li a span { float: left; }
-
Peter Hardy-vanDoorn replied to the topic Hook to add group member in the forum How-to & Troubleshooting 7 years, 6 months ago
groups_accept_invite( $user_id, $group_slug );
-
Peter Hardy-vanDoorn replied to the topic Hide members in the forum How-to & Troubleshooting 7 years, 9 months ago
Hi. I struggled with this for a while, and I agree entirely that something like this needs to be in the BuddyPress core… actually, I think much better user management needs to be in the WordPress core, not just BuddyPress, but that’s a discussion for another time…
I eventually found the code that you’re using and modified it to be able to…[Read more]
-
Peter Hardy-vanDoorn replied to the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 7 years, 11 months ago
-
Peter Hardy-vanDoorn started the topic oEmbed video in site-wide activity in the forum How-to & Troubleshooting 7 years, 11 months ago
WP 4.7, BP 2.7.3.
I’m using a little bit of code from http://wpsites.org/how-to-make-oembed-videos-responsive-10520 to filter WordPress’s oEmbed to make YouTube videos responsive. Basically it hooks into the WP filter ’embed_oembed_html’ to add a container div.
It works a treat in forum topic views, but it isn’t working on the site-wide…[Read more]
-
Peter Hardy-vanDoorn replied to the topic How to create LinkedIn with Buddypress? in the forum How-to & Troubleshooting 8 years, 6 months ago
Seems to me that BuddyPress could be extended to do all that… with a lot of custom coding.
Or, a quick Google brings up loads of alternatives: https://www.google.com/search?q=wordpress+jobs+board+plugin
-
Peter Hardy-vanDoorn replied to the topic Default groups view in the forum How-to & Troubleshooting 8 years, 6 months ago
On my install, ‘forums’ is singular – ie, ‘forum’.
-
Peter Hardy-vanDoorn replied to the topic How to Remove Buddypress Registration in the forum How-to & Troubleshooting 8 years, 6 months ago
This will turn off registrations altogether, thus removing the BuddyPress missing page nag:
Go to your WordPress’ Settings > General page and uncheck Membership Anyone can register
Don’t know how that will effect your theme’s registration, though…
-
Peter Hardy-vanDoorn replied to the topic Default groups view in the forum How-to & Troubleshooting 8 years, 7 months ago
You don’t say how you’re using them.
My usage is:
define ( 'BP_DEFAULT_COMPONENT', 'profile' );
define ( 'BP_GROUPS_DEFAULT_EXTENSION', 'forum' );to change the default view in the user’s profile to ‘profile’ and the group to ‘forum’.
-
Peter Hardy-vanDoorn replied to the topic Can't seem to get BP 2.2's Post Types Activities working in the forum How-to & Troubleshooting 9 years, 8 months ago
I’m using a child of the bp-default theme, and I haven’t overridden the activity template.
A search of the files in the buddypress/bp-themes/bp-default folder turns up nothing, so I’m guessing not.
-
Peter Hardy-vanDoorn replied to the topic Can't seem to get BP 2.2's Post Types Activities working in the forum How-to & Troubleshooting 9 years, 8 months ago
🙂
Nope, not permalinks.
Not sure how that would effect the routine that adds the entry to the menu though!
Cheers
- Load More
@petervandoorn
Active 2 weeks, 6 days ago