Search Results for 'buddypress'
-
AuthorSearch Results
-
March 2, 2016 at 12:56 pm #250463
In reply to: How do I change the ‘activation successful’ text?
Henry Wright
ModeratorI suggest you localise. Take a look at at something like Poedit. For more info see the Customizing Labels, Messages, and URLs article.
March 2, 2016 at 12:45 pm #250461In reply to: Widget memberbox
brx8r
ParticipantI added my own version of the code to that page I linked. The only problem with this is that if the BuddyPress devs change how something works, we won’t be in sync with it, so the widget would still be a nice feature.
March 2, 2016 at 12:18 pm #250460kostasbarkas30
ParticipantHello Guys,
Buddypress is perfect and very good but lucks usability (which is one of the main principles in every software system). Aggregate all the mentions , favorites, groups, etc, etc in one name wall.
Until now buddypress is very nice and good for developers and not for simple users!!!If we want to follow the principles of human computer interaction we should think about speed, efficiency, learnability, memorability and user preferences so make the user interface simpler.
Buddypress is great
March 2, 2016 at 12:00 pm #250459In reply to: How to set up notification counter in WordPress menu
Mustaasam Saleem
ParticipantThis question is already answered many times.
Please have a look. 🙂
https://buddypress.org/support/search/notifications+counter/March 2, 2016 at 10:18 am #250457In reply to: BP 2.5 RC1: php syntax error?
Paul Wong-Gibbs
KeymasterRunning the dev build means you’re not getting the optimised CSS / JS files.
If you’re able to deploy with a SVN checkout instead of Git, you could use
svn co https://plugins.svn.wordpress.org/buddypress/tags/xxx/ --ignore-externalswhich will not include the bbPress folder from the checkout.March 2, 2016 at 10:14 am #250456In reply to: Buddypress Amazon ec2
Paul Wong-Gibbs
KeymasterIt must be something to do with the server configuration; it could be anything. I’ve used BuddyPress on Amazon instances of all sizes and I’ve never had a problem.
March 2, 2016 at 10:04 am #250455In reply to: Widget memberbox
brx8r
Participant+1
I don’t use the admin bar on my sites. It actually took me a while to discover that’s where all the BP functionality was.
The best option right now is to do it with some templating:
http://stackoverflow.com/questions/31812132/buddypress-display-notification-and-profile-in-header-instead-of-wp-admin-bar
That guy’s CSS isn’t the best, I’d suggest working on that.March 2, 2016 at 8:45 am #250454In reply to: How to remove theme’s header from profile pages?
Hugo Ashmore
ParticipantThis requires an understanding of the WP approach to template parts and creating child themes (if you’re not already running as a child theme) plus the BuddyPress template hierarchy as outlined in our codex.
One approach would be to take advantage of the ability to call named template parts in WP so
get_header()can becomeget_header('no-logo')which would then look for a file namedheader-no-logo.phpA copy of header.php renamed to header-no-logo.php means you can now call a file that you can specifically modify – in this instance in the simplest terms you could remove any calls to rendering logos/backgrounds in this file.
Running your BP templates in your theme or child theme (see the bp codex templating guides) would then mean you could run a conditional query to see if in buddypress.php which get_header() template to use by using a check for bp_is_user() but you’ll need moderate php skills for this.
The better approach is to use the advanced BP template hierarchy which would allow you to create a file to act as index.php with all header/footer calls just for BP user screens.
The easy or possibly easier approach but not one I advice is to do what you have mentioned you have tried in using styles to hide the elements.
You’ll need a top level class identifier so we know it’s the BP screens we’re looking at and applying rules to:
body.bp-user .logo-element {display: none;}I can’t advice what the correct selectors are as I’ve no notion of your themes structure, you’ll need to identify them and test until you find the right combination.
`March 2, 2016 at 3:58 am #250448In reply to: Change profile button on hover
modemlooper
ModeratorNot too hard, add a button near avatar image and use css to place it over image. Hide the button until you hover.
Read here on how to customize bp templates https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/
March 2, 2016 at 3:56 am #250447In reply to: How does the search function?
modemlooper
ModeratorBuddyPress search is not 100% accurate. Member search searches usernames and profile fields. Think of it more like a filter than search.
March 1, 2016 at 7:17 pm #250440r-a-y
KeymasterCan you try the following fix?
https://buddypress.trac.wordpress.org/changeset/10586/branches/2.4/src/bp-messages/bp-messages-functions.phpThis is scheduled to be released with BuddyPress 2.5 this week, but you can try this fix temporarily.
March 1, 2016 at 7:02 pm #250438In reply to: Compose Private Message Issue
shanebp
ModeratorFor private messages, auto-complete only shows your friends.
To access everyone, put this in your theme/functions.php or in plugins/bp-custom.php
define( 'BP_MESSAGES_AUTOCOMPLETE_ALL', true );March 1, 2016 at 6:31 pm #250435In reply to: Warning of Buddypress
Scott Offord
ParticipantI’m on BP 2.4.3 and WP 4.4.2.
I’m getting this Message:
PHP Warning: strstr(): Empty needle in /wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 682
March 1, 2016 at 5:37 pm #250433In reply to: Remove some features from activity plus
Henry Wright
ModeratorHi John
If you’re referring to the BuddyPress Activity Plus plugin, try asking this same question on their support forum.
March 1, 2016 at 4:41 pm #250430In reply to: BP 2.5 RC1: php syntax error?
r-a-y
KeymasterI believe you can simply delete
/bp-forums/bbpress/and you should be good to go.However, I understand that this is annoying for WP Engine as you might have to do this manually each time BuddyPress has an update.
An alternative is to pull the development version of the codebase (SVN or Git) from buddypress.trac.buddypress.org. Then, you can checkout the current maintenance branch (currently 2.4, but will be 2.5).
The development version does not include the older version of bbPress; we only include the older version when bundling it for a release.
Hopefully that helps somewhat.
March 1, 2016 at 2:19 pm #250425In reply to: delete Comments on all pages
Henry Wright
ModeratorCheck out the Template Hierarchy article. It will show you how to set up templates for BuddyPress. You can then remove the comment section and comment form from the page(s) you want.
March 1, 2016 at 12:01 pm #250421In reply to: Files guide
Henry Wright
ModeratorThe Template Hierarchy article is what you’re looking for.
March 1, 2016 at 2:43 am #250413In reply to: BP 2.5 RC1: php syntax error?
dave-turnbull
ParticipantThanks r-a-y for the link. I’ll know to search in Trac from now on.
As the error is with the bundled bbPress 1, I’m guessing the next thing to do is exclude BackPress from my repo/push. It seems this might be a way for me to get through the WP Engine syntax gatekeeping.
Could I bother someone to let me know if simply deleting the BackPress folder is the legit way to handle this-assuming that I’m using a separate, late model install of bbPress.
Note: the issue is present in the previous version of BuddyPress too, so it’s not a matter of using 2.5 locally, for now. In fact the bug is reportedly not being addressed (“wont fix”), so there’s no fix in sight.
I’d say you’ve got an interesting problem here though, as anyone pushing to WP Engine is going to have the same issue as I am, and some won’t know where to turn for help. It’s a bit of a hassle for WP Engine to field support calls too, I imagine.
February 29, 2016 at 11:55 pm #250412In reply to: WPMU and BP Not Adding User
r-a-y
KeymasterYou might also want to try BP 2.5-RC1:
I believe the issue might be fixed there.
So my next question would be… is there a downside with having BP network enabled when it will only be used on 1/3 sites?
If you are using the site tracking feature in BuddyPress (Settings > BuddyPress > Components), then you would need to leave BuddyPress network activated.
Otherwise, except for taking up some PHP memory, there isn’t any downsides.
February 29, 2016 at 11:49 pm #250411In reply to: Activate Existing WordPress Users?
r-a-y
KeymasterBuddyPress users are WordPress users; they are the same.
If you are talking about making those users active in BuddyPress terms, then those users would need to login at least once.
February 29, 2016 at 11:45 pm #250410In reply to: BP 2.5 RC1: php syntax error?
r-a-y
KeymasterSee:
https://buddypress.trac.wordpress.org/ticket/6633Particularly:
https://buddypress.trac.wordpress.org/ticket/6633#comment:3If you are interested in testing BP 2.5, maybe you can try in a local environment?
February 29, 2016 at 1:31 pm #250394In reply to: Mark user as a spammer – do NOT delete data
justarandomuser
ParticipantThank you for your reply!
Could you provide me a little example? I am completely new to Buddypress and things like this.February 29, 2016 at 1:19 pm #250393In reply to: WordPress Network and BuddyPress
Paul Wong-Gibbs
KeymasterDid you Network Activate the BuddyPress plugin, or just enable it on one of the sites?
February 29, 2016 at 1:17 pm #250391In reply to: MISSING FOOTER
Paul Wong-Gibbs
KeymasterYour best bet is to try the bbPress.org support forums — the shortcode you’re using is bbPress, not BuddyPress.
February 29, 2016 at 1:14 pm #250388In reply to: No Twentysixteen Companion Styles
airsid
ParticipantAre you saying I need to install a sidebar plugin to see changes to the theme?
Yes ! Have you try the solution I gave you ?
As explain by @hnla, Buddypress companion style works only when the buddypress pages have enough width, that’s mean no sidebar or an empty sidebar (no widget in it).
For twenty sixteen theme, when the regular sidebar is empty (no widget) the buddypress content still not use 100% width, it’s why companion style isn’t working even with the empty regular sidebar.So an easy solution is to create a new empty sidebar that will replace the regular theme sidebar.
To do that I used the Content Aware Sidebars plugin as discribe in my previous post.
Try to follow those steps
2) Install Content Aware Sidebars plugin
3) Create a sidebar then select Buddypress Members type and add all proposed subcategories. Set it as substitution to the regular sidebar and then save it. Do not add any widget in this sidebar.
4) Don’t forget to clear your browser cache. -
AuthorSearch Results