Search Results for 'buddypress'
-
AuthorSearch Results
-
November 7, 2016 at 8:36 am #260809
In reply to: Mutual Friends Online status Display
Henry Wright
ModeratorGreat plugin; but the online status only display on the blog site
Thanks! As I mentioned it’s a WordPress plugin so you will need to adapt it for use with BuddyPress. It shouldn’t be too difficult to do because BuddyPress members and WordPress users are the same.
November 7, 2016 at 8:31 am #260808danbp
ParticipantHI,
BP use the same pagination system as WordPress. Here a tutorial to get this to work for WP
And here a list of “pagination” related functions:
http://hookr.io/plugins/buddypress/#index=a&search=paginationNovember 7, 2016 at 8:03 am #260806In reply to: MyCred not working with buddypress
danbp
ParticipantHi,
you have to try with a twenty theme, to ensure that it is not the theme who generate an issue.
And if it still occurs, you have to ask for help on mycred support. We can’t help you much with third party plugin or themes “who need BuddyPress”.In this particular case, is your theme updated for BP 2.7 ?
Check first yourself and ask evtl. on the theme supportNovember 7, 2016 at 7:11 am #260805In reply to: Mutual Friends Online status Display
swiftblack
ParticipantGreat plugin; but the online status only display on the blog site… but what i want, is to have have it displayed on both blog and buddypress or better still buddypress only….
Thanks for your help …really appreciated …
Hope you can share more ideas @henrywright
November 7, 2016 at 5:41 am #260802In reply to: Localized time stamp broken with 2.7 update
r-a-y
Keymaster@adjunkten – The
defer%20onloadis a sign that you might be using a plugin to do something to all WordPress javascript enqueued files.Because if you remove the
deferline, the JS file is valid:
http://historielaerer.dk/wp-content/plugins/buddypress/bp-core/js/vendor/moment-js/locale/da.min.jsAre you using such a plugin? If so, disable it and see if that fixes your problem.
November 6, 2016 at 11:52 pm #260797In reply to: Mutual Friends Online status Display
Henry Wright
ModeratorHi @swiftblack
Take a look at my plugin Here: https://github.com/henrywright/here
I use the WordPress Transients API to output a user’s online status. You could easily adapt it for use with BuddyPress.
November 6, 2016 at 4:28 pm #260777In reply to: Admin approval for profile changes
Jo Waltham
ParticipantThanks for the tips @danbp this is what I produced:
https://github.com/calliaweb/Moderate-Buddypress-xProfile-Changes/
November 6, 2016 at 4:25 pm #260776In reply to: Enforce field visibility except for admin
Jo Waltham
ParticipantThank you Henry, I’ve changed that.
I’ve put my full code on github
https://github.com/calliaweb/Moderate-Buddypress-xProfile-Changes/
but I’ll start another thread here asking for feedback on that.November 6, 2016 at 9:32 am #260771In reply to: Localized time stamp broken with 2.7 update
Lars Henriksen
ParticipantI noticed this message when inspecting css :
http://historielaerer.dk/wp-content/plugins/buddypress/bp-core/js/vendor/moment-js/locale/da.min.js’%20defer%20onload=’?ver=2.7.2
Failed to load resource: the server responded with a status of 404 (Not Found)November 5, 2016 at 4:20 pm #260763In reply to: wordpress.org plugin page link to 404
@mercime
Participant@wasanajones Thank you for the report ๐ We will be removing that information from our readme.txt https://buddypress.trac.wordpress.org/ticket/7328
November 5, 2016 at 12:59 pm #260758In reply to: Profile Page
Earl_D
ParticipantThe look of your pages including the profile will be determined in large part by the theme you are using. Not sure if the image you referenced is the default buddypress theme with modifications or another WordPress theme. Pretty much any well designed WordPress theme should work but those made compatible with BP work best. You may want to try searching the WP theme directory with Buddypress as a keyword. There are also premium themes designed for BP which create their own look and feel for your site.
Hope that helpsNovember 4, 2016 at 9:51 pm #260742In reply to: Can’t upload media from sitewide activity stream
d6collab
ParticipantOkay, I deactivated every plugin I have, except for BuddyPress and rtMedia. It did not resolve the problem. I can still only upload media from my own activity stream but not from the sitewide activity stream.
I’m at a loss here. I really need to be able to resolve this. I even activated the Twenty Sixteen default theme to make sure it wasn’t a conflict with my theme and no dice.
Why can’t media be uploaded from the sitewide activity stream? Anybody have any ideas?
Please, I’m getting a little desperate here, as I don’t know what else I can do other than deactivate all the other plugins and activate one of the default WordPress themes, which I’ve already done with no resolution. Thanks for any insight you can give!
November 4, 2016 at 6:57 pm #260738In reply to: Can’t upload media from sitewide activity stream
livingflame
ParticipantDisable all plugins except BuddyPress and rtMedia, and try Again.
And, remember update.I try right now from Activity Stream and work nice! So, check very well your Config., etc.
November 4, 2016 at 6:25 pm #260734In reply to: Can’t upload media from sitewide activity stream
livingflame
ParticipantFor upload Media install: rtMedia plugin.
November 4, 2016 at 4:52 pm #260732MatrixMedia
Participantsorry, I have not explained well, the second point, I Repeat:
I also tried to customize the Post Types default โpostโ, following this guide: https://codex.buddypress.org/plugindev/post-types-activities/
this is my function:
add_post_type_support( 'post', 'buddypress-activity' ); function customize_page_tracking_args() { // Check if the Activity component is active before using it. if ( ! bp_is_active( 'activity' ) ) { return; } bp_activity_set_post_type_tracking_args( 'post', array( 'component_id' => buddypress()->blogs->id, 'action_id' => 'new_blog_post', // or 'new_post' 'bp_activity_admin_filter' => __( 'Published a new post', 'emt-buddypress' ), 'bp_activity_front_filter' => __( 'Posts', 'emt-buddypress' ), 'contexts' => array( 'activity', 'member' ), 'activity_comment' => true, 'bp_activity_new_post' => __( '%1$s shared a new <a href="%2$s">post</a>', 'emt-textbuddypress' ), 'bp_activity_new_post_ms' => __( '%1$s sahred a new <a href="%2$s">post</a>, on the site %3$s', 'emt-textbuddypress' ), 'position' => 100, ) ); } add_action( 'bp_init', 'customize_page_tracking_args' );but when I publish a post on activity stream, is not displayed. If I remove the function or use a new custom_post_type, in this function, it works.
November 4, 2016 at 3:19 pm #260724In reply to: Image gallery/feed on users profile page.
Venutius
ModeratorIn MediaPress there is a BuddyPress Setting which allows for media uploads to be entered into the activity stream.
November 4, 2016 at 2:47 pm #260721In reply to: Can’t upload media from sitewide activity stream
d6collab
ParticipantJust updated to BuddyPress 2.7.1, but still having the same problem. I can upload media from my own activity stream, but not from the sitewide activity stream, and I can’t find a reason why anywhere.
Any ideas?
I really need help to get this working the way it’s supposed to please. Any insight is greatly appreciated! Thanks!
November 4, 2016 at 1:02 pm #260717In reply to: Updating to 2.7.1 breaks front-end
Venutius
ModeratorYes this has been identified, a fix is going to be released today, in the meantime you will need to downgrade to 2.7. To do this you will need to download 2.7 from the “Developers” section of https://wordpress.org/plugins/buddypress/developers/, Delete BuddyPress 2.7.1 and then upload 2.7
November 4, 2016 at 12:11 pm #260715In reply to: BP Emails are sent in plain text
attercop
ParticipantI’ve already tried Better Emails but it’s not compatible with BuddyPress since it uses wp_mail()
November 4, 2016 at 12:24 am #260701In reply to: CAN BE DELETED
jayront
Participant$defaults = array(
‘id’ => ‘transfer_offer’,
‘component’ => ‘xprofile’,
‘must_be_logged_in’ => true,
‘block_self’ => true,
‘wrapper_class’ => ‘transfer-button ‘,
‘wrapper_id’ => ‘transferbutton-‘,
‘link_href’ => I DONT KNOW WHAT TO PUT HERE‘link_text’ => __( ‘Transfer Verzoek’, ‘buddypress’ ),
‘link_class’ => ‘profile-button transfer-verzoek’,
);I switched the debug mode and used :
function jay_check_transfer_click() { echo bp_current_action(); home <--- results echo bp_current_item(); // sfc-ajax <--- results echo bp_current_component(); groups <--- results } add_action( 'bp_actions', 'jay_check_transfer_click' );Then i tried them all in the function but so far it only worked when i clicked on “Profile” in the X-profile of the user, but this is not what i want. When i clicked the button it didn’t call the function. Hope anyone has the solution to this because its driving me nuts lol
November 3, 2016 at 3:48 pm #260681In reply to: Actions not taken
Slava Abakumov
ModeratorOne more thought aloud: I see in WordPress core code that this text also displays when nonce check (security) fails. See
wp_nonce_ays()if you are interested. This function is used incheck_admin_referer()which is used everywhere in BuddyPress. That’s the only hint that I can give you right now. Try investigate in this direction further. In general – this is something with your site/server and not BuddyPress itself.To cleanup – you will need to reinstall everything from scratch (I mean create a new database and use it). Those plugins do not provide cleanup on uninstall functionality.
November 3, 2016 at 3:33 pm #260678Slava Abakumov
ModeratorYou don’t need a BuddyPress theme, any WordPress theme will work just fine.
You can create a child theme for your current theme and modify BuddyPress behaviour through it. Copy/plugins/buddypress/bp-templates/bp-legacy/buddypress/to your theme (in root).Remove everything that you don’t need, and leave only
/your-theme/buddypress/members/singledirectory. In that dir you should work withhome.phpfiles and others, that are relevant to you.But now I see that redefining BuddyPress template only won’t work as expected. You also need to create
page-members.phpfile, wheremembers– is the slug of you Members Directory page. It should be modified withif ( bp_is_user() ) { get_header('slim'); } else { get_header(); }and same for
get_footer('slim')instead of the default usage. You will need to createheader-slim.phpandfooter-slim.phpfiles as well, and THERE you should remove all your navigation and all markup you don’t want that pages to have.So yeah, quite a work, but doable once you dive into that. Hopefully I gave you the direction and general idea.
November 3, 2016 at 1:47 pm #260672In reply to: MemberType Tutorials?
Venutius
ModeratorOne resource I can suggest is my own site that I’ve been setting up for the last month, it tries to focus on using BuddyPress an at the moment covers some of the basics and reviews a lot of the plugins. Does not answer your specific questions right now though – http://buddyuser.com/
November 2, 2016 at 10:16 am #260647In reply to: Mailing Users by posting an Sitewide Notice
casttime
ParticipantHello Venutius,
thank you for the fast reply. Now I use “Mass Messaging in BuddyPress” and it worked fine.
Unfortunately, most Users have the problem that the emails end up in their spam folder.November 2, 2016 at 8:51 am #260645In reply to: Mailing Users by posting an Sitewide Notice
Venutius
ModeratorNot for a sitewide notice, but you can pick from two plugins that give you the ability to sent an email to all users, these are Mass Messaging in BuddyPress and Mass Messaging for BuddyPress by Alkaweb.
-
AuthorSearch Results