Search Results for 'buddypress'
-
AuthorSearch Results
-
May 14, 2018 at 6:51 am #272980
Varun Dubey
Participant@bluevert You will need to override the template files inside the child theme.
Follow the steps mentioned hereMost of the time BP will use page.php since that template file exists in the majority of WordPress themes. However, if you wanted to style BuddyPress pages differently than a regular WordPress page, you could add a template file named buddypress.php to your theme’s directory and BP would use that template instead since that file is ahead of page.php in the hierarchy above.
After creating buddypress.php inside child theme, you can comment this line
do_action( 'travel_log_sidebar' );it will remove sidebar from all BuddyPress pages, if you need to keep on some BP pages, you can use conditional logic.
May 13, 2018 at 7:29 pm #272970In reply to: After uploading avatar, there is no button to save
John
ParticipantHi Venutius,
Yes, I’ve tested with the default TwentyX themes and all plugins deactivated except for BuddyPress and the problem persists. No save button when uploading the profile photo.
Also, nothing in the console or error logs.
May 13, 2018 at 7:13 pm #272969In reply to: Adding a ‘label’ to a custom profile page
Venutius
ModeratorWhat you can do is overload that pages, the source file is
plugins/buddypress/bp-templates/bp-legacy/buddypress/members/single/profile/edit.phpCopy this file to
themes/your-child-theme/buddypress/members/single/profile/edit.phpyou can then edit this page to insert your label where you need.May 13, 2018 at 5:40 am #272964In reply to: Migrating from Ultimate Member 2 to Buddypress
Michael
ParticipantOnce I restored the site back to its original state, I thought “ok maybe I have to install buddypress BEFORE removing Ultimate Member. So I did, created brand new pages for the buddy press pages and still all the users including me, were marked as spammers..
I am confused..
May 12, 2018 at 6:12 am #272947In reply to: How to change the image of top sidebar
bluevert
ParticipantThanks for your kindly answer.
I’ve another question about buddypress .
I’ve created two buddypress site. And I’d like to the member who register site one could also login in site two.And the member who register site two also could login in site one with the same ID.
Is there a solution for this?
May 12, 2018 at 5:09 am #272945In reply to: How to change “Submissions” component’s name
Venutius
ModeratorTo change the name of tabs etc you need to look into setting up a custom translation file. All the visible labels are able to be translated, so you can change them how you like.
You can use poedit to create your translation file and WPT Custom Mo File to install the translation onto your site.
May 11, 2018 at 5:58 pm #272935In reply to: Email solution
mrditt
ParticipantI called them first, they said they weren’t set up to handle a buddypress social networking site that relies on email notifications. Did they tell you something different?
May 11, 2018 at 5:54 pm #272933In reply to: BuddyPress Emails Default Text
Damon Cook
ParticipantSendGrid is the way to go. They have a small wrapper that plays nice with BuddyPress’s wp_mail API stuff.
May 11, 2018 at 3:24 pm #272931In reply to: Cyrillic in username
Venutius
ModeratorBuddyPress uses the WordPress user database, so I think this is more of a general WordPress issue than one specific to BuddyPress in that if you removed BuddyPress and allowed user registrations to WordPress you would still be faced with the same issue.
You could raise this as a bug on BuddyPress Trac. but I think it’s probably WordPress that would need to change.
May 11, 2018 at 1:05 pm #272926Varun Dubey
Participant@gheebuttersnaps Seems it need some enhancement, you can report it here https://buddypress.trac.wordpress.org/report
May 11, 2018 at 11:55 am #272918In reply to: Database error
Varun Dubey
ParticipantHi @peacefulparent
There was a discussion about charset upgrade earlier, but the ticket was closed due to inactivity.
https://buddypress.trac.wordpress.org/ticket/6346May 11, 2018 at 10:01 am #272911In reply to: members directory
Varun Dubey
Participant@emmanuel1234 you will need to customize directory based on logged in user xprofile values.
you can check https://codex.buddypress.org/developer/loops-reference/the-members-loop/May 10, 2018 at 6:54 pm #272905In reply to: Does not show description in the User Profile
Venutius
ModeratorI don’t think I can advise you. BuddyPress does not some built in with a personal description. You can add one, in Dashboard>>Users>>Profile Fields, and it would be displayed during signup and in the users Profile>>View page. However, that’s not the default landing page for a profile, so it looks like your theme is overloading the users profile, and I think your theme developers would be best placed to ask.
May 10, 2018 at 6:34 pm #272903In reply to: Does not show description in the User Profile
eduguerrero
ParticipantThe personal description should be added by users from their buddypress profile. How can it be done?
May 10, 2018 at 4:28 pm #272896In reply to: custom member directory
Venutius
ModeratorHave you checked out https://codex.buddypress.org/developer/loops-reference/the-members-loop/ ?
By the looks of things you would call the members loop and pass in your own args specifying the search terms.
May 10, 2018 at 4:22 pm #272895In reply to: problem button in the setting dashboard
Venutius
ModeratorChances are there is a conflict with either another plugin or your theme. Try it running just BuddyPress and a default theme such as 2017.
May 10, 2018 at 8:48 am #272889In reply to: Visual Composer in BuddyPress / BBpress
Joseph G.
ParticipantThere is something wrong with either of your theme or your shortcode syntax. We’ve been using both Visual Composer +bbPress+BuddyPress for several years and we have no issues so far.
Take note that the theme must support buddypress or bbpress, atleast from the a simple stylesheet.
Check out this theme: http://flocks.dunhakdis.com/community-forums/ . The homepage uses bbpress shortcodes formatted inside a VC block.
Cheers
May 10, 2018 at 6:13 am #272887In reply to: How to change the image of top sidebar
Venutius
ModeratorYep that’s the WordPress Admin Bar. The only BP setting that affects this is that you can hide the entire bar for non logged in users via Settings>>BuddyPress>>Options.
As I said there’s a lot of plugins that will help you style this bar, just search WP Plugins for admin bar and you will find them.
May 9, 2018 at 7:49 pm #272881In reply to: Subscribe Button on Buddypress Profile
Venutius
ModeratorYou can take a look at https://codex.buddypress.org/emails/custom-emails/ and https://codex.buddypress.org/developer/function-examples/bp_notifications_add_notification/. technically all you need is to trigger them from either the post save hook
save_postor the follow creation hook, but putting this together is pretty complex, it’s not a first time project.May 9, 2018 at 5:53 pm #272873In reply to: Subscribe Button on Buddypress Profile
sarab847
Participantyes, I already installed it but the problem is the person who is following is not getting email notification & also BuddyPress profile menu, no notification is showing after any post or product posted by the author. Is someone getting emails or notification working on their BuddyPress profile
May 9, 2018 at 3:24 pm #272869In reply to: Subscribe Button on Buddypress Profile
Venutius
ModeratorMaybe you should look at BuddyPress Follow?
May 9, 2018 at 1:30 am #272855In reply to: Database error
Genevieve Simperingham
ParticipantAdditional info from WP Engine: You’ll need to reach out to Buddy press to let them know that when you have your Buddypress plug-in active you receive an error stating [COLLATION ‘utf8mb4_unicode_ci’ is not valid for CHARACTER SET ‘utf8″] Select content COLLATE utf8mb4 . When you deactivate the plug-in the error goes away. I’ve also attached a screenshot to share with them. You’ll want to find out through them what could be causing this error as it only occurs when their plug-in is active.
May 8, 2018 at 10:21 pm #272849In reply to: Additional Widget Areas
yusareba
ParticipantI looked at Content Aware Sidebars. It’s very appealing!
I’ll need to look more into the URL feature.
In any case, I noticed that it does BuddyPress integration pages for free o.o
Just not URL.May 8, 2018 at 8:07 am #272828In reply to: Members List Not Showing Members
wbcomdesigns
Participant@omniscope Please make sure new users have verified their emails after registration. New Users will display inside the member’s directory only after their first login, it’s generated based on their last active timestamp.
You can also check following threadMay 8, 2018 at 7:58 am #272826In reply to: Favorite a post
wbcomdesigns
Participant -
AuthorSearch Results