Search Results for 'theme'
-
Search Results
-
Topic: BuddyPress – Auto join group
I wanna automatically add new registered user to corresponding group by Buddypress.
Here is my code put in the theme’s functions.function automatic_group_membership( $user_id ) { if( !$user_id ) return false; $join_group = xprofile_get_field_data(2, $user_id); // 2 is xprofile field_id // conditionnal if ($join_group == "Group1") // Group Name $group_id = 3; // Group id // action groups_accept_invite( $user_id, $group_id ); } add_action( 'bp_core_activated_user', 'automatic_group_membership' );But it doesn’t work.
How can I figure out this problem?
Hi Everyone,
I am brand new to BuddyPress. I am launching a new membership site May 1st so I have been actively working on my website (I have Under Construction Image as I work on it). I am NOT good or even know coding but I can easily follow direction. I also utilize Google and Youtube ALL the time to figure things out.
I am using the X Theme which is supposed to be compatible with BuddyPress. Here is my issue.
The Profile Image (not Gravatar) works great but I am unable to Change Cover Image. What can I do to get this feature to work? Thank you so much in advance.
I’m running WP 4.5, BuddyPress 2.5.2, Twenty Twelve theme and TML 6.4.4
I posted this as TML support and was told it’s a Buddypress issue
I added custom TML fields when people register (city, state, and reason for wanting to join the site) following instructions here: https://www.jfarthing.com/development/theme-my-login/adding-extra-registration-fields/
the fields are working as needed when users register. But since they aren’t xprofile fields, they aren’t showing up on BuddyPress member profile pages.
How can I make them show up on member pages so all viewers can see where people are from (city, state) and also on the member directory.
Site is here: http://www.charlottemasoneducation.org
Thank you.
Topic: Problem with Media Uploads
Hi,
I have a problem with image uplod. specifically, all the images are loaded in /wp-content/uploads/2015/07/ folder. I have checked “Organize my uploads into month- and year-based folders”.
I disabled all plugin and upload works correctly. Reactivating BuddyPress, upload not working yet.
I also tried to change the theme, but the problem continues.Can you help me?
Thanks.
Whenever I try to view ANY profile on the members page, I get redirected to the homepage.
ALL links in the black box in the upper right hand corner redirect to the homepage.
ALL links that have a directory after /members/ gets redirected to the homepage.
I’ve searched these forums and all over google but can’t seem to find a solution.
Changing/saving permalinks do not work.
Deactivating plugins and changing theme to 2015 does not work.I’m running s2 with bbPress and BuddyPress. Just trying to get everything working happily together.
I am looking for general advice and maybe help strategizing how to do this:
I want to set up a custom, default page for 1) member listing, 2) member profile, 3) group listing, and 4) group detail where the output from the WordPress and Buddypress loops are combined. Essentially, the rendered page structure would look like this:
[global header etc]
[Content from the WP page editor]
[dynamic Buddypress content for Members or Groups]
[global footer etc]I successfully created a custom WordPress template for the member directory where I inserted /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/index.php as a PHP include right after the WP loop code is done. It works as long as it is a custom listing page (NOT set as the default for Members in Settings) but the members profile page is still the generic default. If I adjust the site settings to define this page as default for Members, it doesn’t work at all or it just ignores the content from the WP editor.
Is it possible to do this inversely — e.g. insert the WordPress content loop into the Buddypress template? I haven’t had any luck. I am not even sure the WP loop is invoked when a core BP page (e.g. members or groups) is rendered.
FYI, I’m on the latest version of BuddyPress and WordPress 4.4.2, and have implemented BP with the BP Project Framework plugin for my customizations. I am using Cumulo, a commercial theme that seems to be pretty good, and have that set up with a child theme (in case that matters here).
I am new to Buddypress but have used WordPress for years (not a hard core coder but can write/edit code) and am familiar with how it works under-the-hood, but am not sure about the best approach here. Thanks in advance for any advice/guidance/ideas with what you think the best way is to do this!