Search Results for 'buddypress'
-
AuthorSearch Results
-
December 31, 2014 at 12:19 am #231297
In reply to: Buddypress Activity Privacy Code Help
shayne
ParticipantSorry for the double post but i made a typo. My link sourcing where I got the code from didn’t work.
Here it is.
http://blog.etiviti.com/2010/03/buddypress-hack-remove-non-friend-updates-from-the-activity-stream/
December 30, 2014 at 8:17 pm #231291In reply to: Customizing emails template
Henry Wright
ModeratorHi @shmk
It’s definitely possible. BuddyPress uses the
wp_mail()function to send emails. By default, it usestext/plainas the content type which doesn’t allow HTML. The good news is you can change this. For example:function set_content_type( $content_type ) { return 'text/html'; } add_filter( 'wp_mail_content_type', 'set_content_type' );Ref: https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_mail_content_type
December 30, 2014 at 7:59 pm #231289In reply to: Reliable hosting for BuddyPress installations?
Henry Wright
ModeratorHi @sbraiden
The response time on ANY page/link can range from 10-20 seconds, even with virtually all of the plug-ins disabled.
A standard WordPress-BuddyPress install, running on the most basic hardware with little web traffic would respond far quicker than this so there is definitely a problem. Sometimes (although not always) the problem can be elsewhere (not your host). I’ve seen some badly-written themes cause page load times to lag and the same goes for certain plugins. I think the first step for you to take (before you go through the upheaval of changing hosting company) is to determine the exact cause of the problem. If you’re definitely sure it’s the host, then definitely make the switch. From a personal point of view, I’ve had problems with 1&1 in the past so switched host and have never been happier.
December 30, 2014 at 7:03 pm #231287In reply to: Activity issue with old blog posts
danbp
ParticipantActivity feed is not retroactiv, and will never be i guess ! It’s a feed, not an archive with updates. 😉
If interrested by future of BP development, see here
December 30, 2014 at 5:17 pm #231282In reply to: Locking some profiles fields
shanebp
ModeratorThis will hide fields on the profile edit page and on the register page.
You need to add the field IDs.
Put the function in bp-custom.php.function oazar_hide_profile_fields( $retval ) { if( is_super_admin () ) return $retval; if( bp_is_profile_edit() || bp_is_register_page() ) $retval['exclude_fields'] = '3'; //field ID's separated by comma return $retval; } add_filter( 'bp_after_has_profile_parse_args', 'oazar_hide_profile_fields' );December 30, 2014 at 11:43 am #231268Henry Wright
ModeratorHi @laynerogers
Rather than changing BP core files, you should contact the theme author asking that they look into making their page titles compatible with BP. The changes you’ve made to bp-core-filters.php will be lost each time you update BuddyPress.
December 30, 2014 at 5:42 am #231260In reply to: Request that sites have independant avatar
schulz
ParticipantGave it a try…
Had to Network Activate BuddyPress and the Blog Avatar plugin to use it, then all it did was show a mystery man avatar in the buddypress sites list. It showed the uploaded avatar on the Blog Avatar within the individual site, however only the mystery man avatar anywhere else?
Not really happy with having to network activate BuddyPress to use it as I don’t want individual blog admins messing with BuddyPress settings within their blogs/sites. So I set things back to the way it was and uninstalled it.
My original idea of controlling the site/blog avatar from the main site BuddyPress (just like the groups) is still a better option.
wpmudev.org claim they have a ‘AVATARS’ plugin [ https://premium.wpmudev.org/project/avatars/ ] that does what I am looking for, however paying $19 upfront and having to use their Dashboard plugin (that constantly pumps their propaganda into your admin panel) is not for me – yes been there done that.
December 30, 2014 at 3:51 am #231258In reply to: Participant forum role can no longer post
lemond404
ParticipantYes I went down the list, checking each time and none resolved this issue.
When Participants click on the forum topic, they get redirected to the new post submit form, and can also post. I deleted buddypress and reinstalled but I’m afraid whatever changed in the role is deep in the code.
December 30, 2014 at 1:01 am #231253In reply to: Request that sites have independant avatar
danbp
ParticipantDecember 30, 2014 at 12:51 am #231247In reply to: Activity Issue
danbp
Participanthttps://codex.buddypress.org/component/activity/
The’re also lot of comments in activity files: /buddypress/bp-activity/
Other ressources
BuddyPress Trac
Dev’s blog
About Post Types and BuddyPress ActivitiesDecember 29, 2014 at 10:38 pm #231243In reply to: Activity Issue
122plus
ParticipantI figured out that in my case this was because I forgot to remove buddypress subfolder from my theme folder located in wp-content/themes/YOUR_THEME/
So I guess it was just loading some page out of it.
Anyhow, is there a general answer on how does BP technically track user’s activity, e.g. where can you see the code which tells something in BP that the user did some action?
I’m not tech guy and it’s my 2nd day with BP, so don’t blame me please.
December 29, 2014 at 10:04 pm #231236In reply to: [Resolved] French Language help
danbp
ParticipantHave you added a bp translation manually to another folder ? If yes, delete it.
If you use WP since a while and updated it recently, search a line containing define(‘WPLANG’, ‘xx_XX’)- xx_XX is a lang iso code, in wp-config.php. If you find one, delete it as it is no more used in WP 4.1
Control via FTP that bp translation is in wp-content/languages/plugins/buddypress-fr_FR.mo
If not there, ensure that /language/ and /plugins/ have their write access set to 755
The mo file should be 644.December 29, 2014 at 7:58 pm #231218In reply to: Comment Button Not Working
derock299
Participantthank you. I still have a problem with buddypress. When i go to activity stream, i cant comment or reply, until i click on all memebers.Why? Also when you click on activity stream, a message comes out saying there are no activities, until i click all members.
December 29, 2014 at 5:03 pm #231212In reply to: BP-Profile fields: visibility not works.
danbp
ParticipantFYI, bp-default theme is no more necessary.
December 29, 2014 at 5:00 pm #231211In reply to: Comment Button Not Working
danbp
Participant1) Issues with BuddyPics can be reported on the plugin support.
2) Similar and answered question here
December 29, 2014 at 4:40 pm #231210In reply to: BP-Profile fields: visibility not works.
robertosalemi
ParticipantHi,
I’m using default theme of buddypress and not apply custom functions.Now I try default theme of WordPress.
🙂
December 29, 2014 at 8:53 am #231192In reply to: Buddy Press Increasing Files
danbp
ParticipantYou couldn’t reply because you’re adding to many links. This forum accept max. 2 URLs per post.
Error 500 is generic message for multiple cause, wich are out of the scope of this support.
If you need a professionnal help, please post your demand on BP Job Board forum.
December 29, 2014 at 8:31 am #231191In reply to: [Resolved] Required template files
@mercime
Participant@lukemack this codex article explains it https://codex.buddypress.org/getting-started/register-and-activation-pages/
Marking this as resolved.
December 29, 2014 at 7:46 am #231187In reply to: [Resolved] Required template files
Luke Mackenzie
ParticipantThanks again for your reply. For others with the same issue and to answer my question, you need to create the missing pages via the admin dashboard and then select those new pages in
Settings -> Buddypress -> Pages tab -> RegistrationsectionDecember 29, 2014 at 12:45 am #231183In reply to: multi communities in one website
valuser
ParticipantThe page at https://wordpress.org/plugins/bp-multi-network/ states
Multiple WP networks can be created with either:
â–ª WP Multi Network
â–ª Networks+I use Networks +.
There may also be other combinations of plugins that may work.
Googling “wordpress”, “buddypress” “multi-network” or “multinetwork” should be sufficient to come across the few others that may fall into these categories – such as Networks for WordPress at https://wordpress.org/support/plugin/networks-for-wordpress and BuddyPress Multi Network at http://buddydev.com/plugins/buddypress-multi-network/ .
Examining all of the them as well as studying their support forums would be useful in making a decision on which combination to use for your particular requirements.
Given that a multi-network plugin will essentially hold the entire show together I would venture that it is well worth the research you are now undertaking.
Just to be perfectly clear, I am an open source enthusiast but I am not an open-source absolutist though some are and are perfectly entitled to be.
If something works, saves hours of time when compared with other items, is supported and is reasonably priced I will use it (when my budget allows) and will say so.
But, I can only vouch for what I know works.
I can only vouch for, in this case the plugin I cited above, and the continuous free support over a number of years, which comes from recognised top class developers.
This support alone should ordinarily have cost many $X,00s, bringing the price of said plugin deep into negative figures – i.e considerably less than free.
December 28, 2014 at 9:48 pm #231179In reply to: [Resolved] Required template files
danbp
ParticipantActivation and registration are WordPress dependant and are not only “BP components”. These pages may not be created automatically, depending your WP settings… But according to the error message, you have now to create them.
I understand that you are a bit confused, as you’re in a discovery phase of BuddyPress.
But you should also understand that i can’t explain step by step the whole Codex (WP & BP!).I guess you have to read the doc very attentively. Searching the forum or simply reading some topics will also help you to understand how all this is working.
Install first correctly WP and BP and use one of the Twenty theme, the time for you to learn a bit more. Once you’re comfortable with WP & BP, start your theme development.
December 28, 2014 at 7:39 pm #231178In reply to: [Resolved] Required template files
Luke Mackenzie
ParticipantThanks for your reply. I’m a bit confused.
bp-templatesdirectory containsbp-legacyandbp-themes/bp-default. I would expect one of those to be no longer used, probably the one marked legacy?Do I need to create new pages via the admin dashboard or new template files for the missing components? Or both?
At the above link it states
Pages are automatically generated for the BuddyPress components
. This didn’t happen when I enabled the Buddypress plugin.
December 28, 2014 at 7:10 pm #231176In reply to: [Resolved] Required template files
danbp
ParticipantThe following active BuddyPress Components do not have associated WordPress Pages: Activate, Register. Repairmeans that you haven’t installed correctly this 2 BP’s component pages. Read here to understand how this works:
BP 2.x is compliant with almost any theme. bp-default theme is no more used and only there for backwards compatibility.
Templates are in bp-templates/bp-legacy/buddypress/
December 28, 2014 at 7:01 pm #231175In reply to: Friendship / relationship types
danbp
ParticipantDecember 28, 2014 at 10:10 am #231165In reply to: [Resolved] calendar tab
tsabar
Participantfound it, BuddyPress Group Calendar was the culprit, redundant because i also have Events+
-
AuthorSearch Results