Search Results for 'buddypress'
-
AuthorSearch Results
-
January 23, 2014 at 8:59 pm #177435
In reply to: private message – not private
Melle328
ParticipantThanks for reply.
The problem is, we have 4.000 highly active members. But I will have a look of what I can deactive.
For me it seems very close to this ticket. https://buddypress.trac.wordpress.org/ticket/3971
Is this still a known (or mybe solved) issue?
January 23, 2014 at 7:27 pm #177428In reply to: Best way to enable facebook login?
carlsandburg
ParticipantAfter much screwing around, i recommend Social Login. it seems to integrate well with BuddyPress…
January 23, 2014 at 7:06 pm #177427January 23, 2014 at 6:54 pm #177426In reply to: WP Admin in Blank
BuddyBoss
ParticipantTry deactivating all other plugins, then activate BuddyPress on its own. See if that solves it. If so, it’s a plugin conflict. Then you can reactivate all other plugins one by one until it breaks again, and then you’ll know which one is the culprit.
If deactivating all other plugins doesn’t solve it, then try switching themes to see if that’s the cause.
January 23, 2014 at 6:16 pm #177422In reply to: How to Automatically add a new member to a group
meg@info
ParticipantHi,
for autocreatation you can create a small script who do that ( check buddypress default data how create demo groups )
https://wordpress.org/plugins/bp-default-data/And buddypress-groupomatic plugin can make the autojoin group for members depending fields.
https://wordpress.org/plugins/buddypress-groupomatic/
Hope this can help you !
January 23, 2014 at 6:14 pm #177421meg@info
Participanthi @aemadi,
Click on ” Screen Options ” ( on the top right of menu page ) then check Buddypress :).
January 23, 2014 at 5:38 pm #177419Squirrel
ParticipantI mis-read your question sorry. I found a solution which lets users only view other users profiles if they are a friend of that user. The admin can see all members regardless of them being his/her friend.
I put the function in my functions.php:
// BuddyPress create conditional if friend function flatportal_bp_is_friend() { global $bp; if (friends_check_friendship( bp_loggedin_user_id(), bp_displayed_user_id() ) ) return true; return false; }and created a custom header file with this at the top:
// Global $bp variable holds all of our info
global $bp; // The user ID of the currently logged in user $current_user_id = (int) trim($bp->loggedin_user->id); // The author that we are currently viewing $author_id = (int) trim($bp->displayed_user->id); if ($current_user_id !== $author_id && !current_user_can('delete_others_pages') && !flatportal_bp_is_friend() ) { wp_redirect( home_url() ); exit(); }Then in header php (using multiple headers)
elseif ( bp_is_user()): get_header('restrict-profile');If they are not a friend they will be redirected to the home page or wherever you want them. I suppose you could re-direct them to a “you are not a friend of this user” page if you wanted.
January 23, 2014 at 4:08 pm #177413In reply to: BBPress themes in BuddyPress theme
Hugo Ashmore
ParticipantThese are probably questions better asked on bbPress forum – remember although bbPress integrates with buddyPress it is a standalone plugin.
I doubt however you need to overload all the files as above.
January 23, 2014 at 4:05 pm #177412In reply to: Buddypress doesnt do anything
Hugo Ashmore
ParticipantI would strongly urge you to first have a good read through what articles we currently have in the codex to familiarise yourself with basic setup & operation:
Then if you have further questions post back with a full outline of your setup – check the forum stickies which tell you what information to provide in order to gain help here.
January 23, 2014 at 12:00 pm #177402In reply to: Notification and a blank page
betson
ParticipantHi,
I have the same problem. When we click the notifications link, a blank page is showing.
Wordpress version : 3.8
Buddypress : 1.9Pls help me
January 22, 2014 at 10:28 pm #177387jameat
ParticipantThanks shane.
I took a look at that doc you link but feel this is a little beyond my capabilities!
Looking around the bbpress documentation I found thisThey tell me to add
define( ‘BP_GROUPS_DEFAULT_EXTENSION’, ‘members’ );
to my wp-content/plugins/bp-custom.php file. But that doesn’t seem to work.This is what I wrote in the bp-custom.php file:
<?php
define( ‘BP_GROUPS_DEFAULT_EXTENSION’, ‘forum’ );
?>Is there anything obviously wrong with this which may explain it not working?
Thanks again.
January 22, 2014 at 10:12 pm #177386shanebp
ModeratorOver-ride this file:
buddypress\bp-templates\bp-legacy\buddypress\groups\single\home.phpAnd adjust it to make forums the default rather than activity.
Over-riding BP templates:
https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/January 22, 2014 at 4:26 pm #177377In reply to: Problem with Members/Single/Plugins Template
natb19
ParticipantOk, so it’s pretty easy if you’re not familiar to buddypress (as I am) to make bad assumptions here. (as I am, and did)
Your first problem is that in the example, the code is looking for a screen template (plugins.php) in this case that’s not in your template directory. It won’t look for or use any templates in the standard buddypress templates folder (as I assumed) and so you will need to make sure that any templates needed are within the [plugin]templates/[pathtotemplate] path.
I also assumed that any of these pages would automatically assume the standard buddypress layout and page template, using the supplied template as the content for the page – which was a mistake. What gets served is a vanilla page, using the standard wp header and footer tags (well, if you use the screen-one.php as a template).
If you want the buddypress profile header add
<?php locate_template( array( 'buddypress/members/single/member-header.php' ), true ) ?>
to your template. You can do this for all of the items on your standard bp page, have a look through the other templates in bp as a guide.This is not a bad thing, and you can do this stays completely flexible when combined with the standard wp templating. When overriding bp component templates remember to put the [templatepath] file into your theme templates folder, not the theme templates/buddypress folder.
For example, my ‘Achievements’ summary template (‘achievements/screen-summary’) goes into ‘achievements/screen-summary.php’ in my theme’s template folder.
Hope this helps, I was confused for a while, but it’s all good now 😉
January 22, 2014 at 12:12 pm #177373In reply to: Problem with Members/Single/Plugins Template
natb19
ParticipantThis seems to be a problem with how the skeleton component setup is handling the loading of screens:
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );tries to load a template file within the plugin folder – not (as I think it’s meant to) from the standard BP template folder, or the current themes’ buddypress template (if overridden).
@modemlooper, any idea how to get the screen page to display in the standard wordpress/buddypress template system, or why it’s not working?
It’s not something you take and then edit to create a new component.
It certainly reads like something you take and edit to create a new component!
January 22, 2014 at 3:25 am #177360In reply to: How to call the widget functions without a sidebar?
BuddyBoss
ParticipantI can’t seem to find the function name or php file in the buddypress directory.
You can find the login widget code in /buddypress/bp-core/bp-core-widgets.php
But mercime is correct, your best move is to add a widget area to your theme and then use the login widget (assuming you’re on BP 1.9+ which includes a login widget).
January 22, 2014 at 2:33 am #177356In reply to: BuddyPress Pages not displaying
Ben Hansen
Participanthave you checked to make sure the pages are associated correctly in the main buddypress preferences?
January 21, 2014 at 9:29 pm #177343In reply to: Page Not Found
@mercime
ParticipantSame questions as https://buddypress.org/support/topic/read-more-link-broken/#post-177342
January 21, 2014 at 7:58 pm #177339In reply to: BadgeOS Submissions in Buddypress Activity Stream
Prometheus Fire
ParticipantHave you tried this addon for the plugin?
http://badgeos.org/downloads/community/
I would also try to get support from the developers on the BadgeOS site. You are likely to get better help there than here since it is such a specific use. They do know and support BuddyPress so you may get your answer from them.
January 21, 2014 at 5:17 pm #177331In reply to: BP My-Home Creating Redirect Loop for Member Pages
adamjd
ParticipantSame issue is in this thread: https://buddypress.org/support/topic/redirect-loops-on-groups-and-profiles/
January 21, 2014 at 1:30 pm #177322m1000
ParticipantI’m using Buddypress and bbpress for group forums. You have 1 new reply to … is working fine on the admin bar but somehow my code can’t display this kind of notification.
January 21, 2014 at 1:09 pm #177321Henry Wright
ModeratorHey @m1000
I’m not sure using BuddyPress functions will work for bbPress? Could be wrong though!
January 21, 2014 at 9:09 am #177315In reply to: Urgent How can my fans join my blog?
@mercime
ParticipantMake sure you have Registration enabled in Settings > General.
January 21, 2014 at 5:06 am #177307In reply to: Notification and a blank page
BuddyBoss
ParticipantHey there, I’m the author of BuddyBoss. This is not the default behavior in the theme. Have you updated to the latest version? 3.0.6 put out a patch for notifications before BuddyPress 1.9 came out, and I have a feeling you’re using a version prior to that as that could cause a blank page without the patch. If you still have issues after updating head over to our support forums and TJ will happily help you out.
January 21, 2014 at 4:53 am #177304In reply to: How to make wp theme compatible with buddypress
BuddyBoss
ParticipantTook a look at your site. It looks nice. But I do see that all the BP pages are not outputting any content. It’s all blank. Even the “By” line is empty, where I assume it would show the page author.
When you are in your buddypress.php file is it including another inner template file to display content? If so, have you tried deleting all of that and just putting in <?php the_content();?> in the loop of buddypress.php? I’m wondering if this theme has some fancy default content loop that is filtering out BP stuff.
January 21, 2014 at 4:39 am #177303In reply to: 2.0 top features – ideas
BuddyBoss
Participant@mercime thanks for posting the link. Good stuff. My suggestion is based on the assumption that most WP themes do not have these solutions in them as most sites are not using tables. BuddyPress is feeding its content into theoretically any WP theme and most themes are (or will be) responsive and most web traffic is (or will be) mobile. So if BP is feeding in content that is not going to work for a large percent of users it seems like something worth at least considering to change, even if there are some tradeoffs.
Anyways, I’m sorry as I didn’t mean to hijack this thread with these table discussions. We’re a bit off topic now 🙂
-
AuthorSearch Results