Search Results for 'buddypress'
-
AuthorSearch Results
-
November 5, 2016 at 12:59 pm #260758
In 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.
November 2, 2016 at 3:29 am #260635In reply to: Actions not taken
Mark elayan
Participant@slaffik i already disabled every plugin but bbpress and buddypress, but still same, .htaccess nothing modified but the expires and also tried without’em.
changed to many themes, but also still the same.
Maybe its something in the DB?
how can i clear all BB and BP from the DB?November 1, 2016 at 11:57 pm #260630In reply to: how to enlarge buttons and profile application texts
Slava Abakumov
ModeratorThat’s mainly a styling thing.
You should be comfortable using Firefox or Chrome and their developer consoles, where you are able to preview changes.These links will be help you as well:
https://buddypress.org/support/topic/custom-css-changes/Don’t forget to either include your styles via external file in your plugin or use your child themes, not to lose changes on parent theme update.
November 1, 2016 at 11:41 pm #260628In reply to: Member’s activity showing up and crawl in google
Slava Abakumov
ModeratorThe best way – to allow access to specific pages for logged in users only. As GoogleBot is logged out – it will lose access and eventually remove indexed content. You can remove manually from Google Web Developer Console for this site as well.
There are quite a lot of topics like these here on the forum. Just google it.November 1, 2016 at 11:35 pm #260627Slava Abakumov
ModeratorYou can’t do that in PHP. Well, actually you can – but you will break all the styling, as you will filter our header/footer.php files include. So basically it’s not a good idea.
The best idea – to use a child theme. You can than even switch to that child theme for specific pages on your site. One of the ways to do that: https://premium.wpmudev.org/blog/wordpress-different-themes-for-pages/
Another idea – do some magic with BuddyPress templates. It’s totally possible, but you will quite heavily modify them (that will complicate future maintainability).
Also it would be easier to help you if you provided a URL to your site.
November 1, 2016 at 3:28 pm #260608In reply to: Site Wide Activity Stream
danbp
ParticipantNovember 1, 2016 at 11:59 am #260602In reply to: Actions not taken
Mark elayan
Participant@danbp nop, I don’t use any caching plugin, neither cdn caching, also as I already mentioned I did disable all plugins, change to twelvesixteen theme wth nothing but bbpress and buddypress active, also took all extra CSS and Js and ang files out of the loop, but still same thing.
The jq is working like when deleting and activity (am talking all frontend) the activity disappears until refreshed it comes again, same with the accept /reject friend request.
And there is no errors in the terminal side nor in wp debug logs.
November 1, 2016 at 10:55 am #260600In reply to: Display user country flag
danbp
ParticipantIf it doesn’t work in your child theme functions.php, use bp-custom.php
Standalone because bbP is used separetely and not as group forum, which is a popular config when BuddyPress is activated. FYI (in case of):
November 1, 2016 at 8:32 am #260598In reply to: Display user country flag
davehakkens
ParticipantWhat do you mean with standalone version @danbp? I use a bbpress and buddypress plugin. I figured this is more for Buddypress since it has to do with buddpress profile fields.
Anyway thanks for the code, looks good! But it doesn’t seem to work after adding it into the functions.php. I haven’t got experience using filters so can’t seem to find the problem..
October 31, 2016 at 9:52 pm #260591In reply to: [Resolved] Last activy
shanebp
ModeratorCreate a template over-load of this file:
buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.phpIn the overload, remove the
spanthat shows the last_activity blurb.October 31, 2016 at 11:07 am #260578In reply to: Oembed for actives
Paul Wong-Gibbs
KeymasterThey ARE. See https://codex.buddypress.org/activity-embeds/
-
AuthorSearch Results