Search Results for 'buddypress'
-
AuthorSearch Results
-
April 12, 2018 at 2:28 am #271986
In reply to: Assign Members Page
baccoeur
ParticipantHi
Thank you for your response
I just follow and check the instruction you give.
Try deactivating all other plugins, this is most likely a plugin conflict I would think.
Still issue exist
I have done deactivating all plugins in the site but still doesn’t save the member page.
http://prntscr.com/j3m4ozThe following active BuddyPress Components do not have associated WordPress Pages: Members. Repair
Please advice.
Thank you!
April 12, 2018 at 1:10 am #271984In reply to: Email notification with excerpt only
josh.grisdale
ParticipantAny emails sent via BuddyPress like new messages from users etc
April 11, 2018 at 7:47 pm #271981Jonas
ParticipantThere’s different ways of solving it, you can look to this old post for some pointers.
or you could do something like this
<?php function opengraph_tags() { // defaults $title = get_bloginfo('title'); $excerpt = get_bloginfo('description'); if( bp_current_component() ) { global $post; setup_postdata( $post); $title = get_the_title(); $excerpt = get_the_excerpt(); if ($excerpt) { $excerpt = strip_tags($excerpt); $excerpt = str_replace("", "'", $excerpt); } } ?> <meta name="description" content="<?php echo $excerpt; ?>"/> <!-- general meta tag --> <meta property="og:title" content="<?php echo $title; ?>"/> <!-- facebook meta tag --> <meta property="og:description" content="<?php echo $excerpt; ?>"/> <!-- facebook meta tag --> <meta name="twitter:title" content="<?php echo $title; ?>"> <!-- twitter meta tag --> <meta name="twitter:description" content="<?php echo $excerpt; ?>"> <!-- twitter meta tag --> <?php } add_action('wp_head', 'opengraph_tags', 5);You’d then be able to write the description of the buddypress page in the excerpt input while editing whatever Buddypress page. This only solves the main pages though.
If you’d like to go further for group, member and activity SEO you’d have to follow it up with some more code.
April 11, 2018 at 1:03 pm #271974In reply to: Additional profile field duplication
maxpozitiv
ParticipantBuddyPress ver. 2.9.4
Theme Woffice by Alkaweb
WP ver. 4.9.5April 11, 2018 at 9:34 am #271972In reply to: Email notification with excerpt only
Venutius
ModeratorPresumably this is referring to the BuddyPress Group Email Subscription plugin? Have you tried rasing this as a feature request on that plugins forums?
April 11, 2018 at 2:42 am #271969In reply to: Assign Members Page
baccoeur
ParticipantHi
Thank you for your response
I just follow and check the instruction you give.
Check Dashboard>>Settings>>BuddyPress>>Pages and make sure the BP Members component is assigned to your members page.
Here are the issue i have found.
Please see screenshot
http://prntscr.com/j3m4ozThe following active BuddyPress Components do not have associated WordPress Pages: Members. Repair
Please advice.
Thank you!
April 10, 2018 at 5:38 pm #271962In reply to: Create News Feed like Facebook
Venutius
ModeratorI think there’s a few ways of achieving this, for one thing there’s a bunch of plugins that change the default activity feed in the members howmepage. Take a look at https://buddydev.com/plugins/facebook-like-user-activity-stream-for-buddypress/ That would make a good start.
Another way is to Overload the activity-loop page in BuuddyPress, this basciall does what the plugins do, but without a plugin. You can take the default page from the plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/activity-loop.php and change the way the activity filters work for your site. It’s a bit more advanced but there’s plenty of forum posts about doing it.
April 10, 2018 at 4:37 pm #271961Topic: Create News Feed like Facebook
in forum How-to & Troubleshootingavaiya
ParticipantHi there,
I just started using BuddyPress for my membership site 2 weeks ago. Is there a way to have a page, kind of like the Home page of Facebook, where you see a news feed of everyone’s posts in the membership?I see that under each person’s Profile, there’s an Activity feed, but that only shows the activity of that person. I want members to be able to see the activity of everyone, all in one place.
Thanks!
April 10, 2018 at 1:16 pm #271958In reply to: New Users Invalid Activation Code Error
T
ParticipantHi @bntbrl,
Did you get get this resolved? I’m stuck in a similar situation. Users get the activation email, but it directs them to “invalid activation key”… they cannot log in.
The key is not in my database either.
So stuck, and no way to contact @buddypress
🙁
April 10, 2018 at 1:11 pm #271957In reply to: Invalid activation key
T
ParticipantHi @rsnipun, did this ever get resolved for you? I’m in the same boat where users get the invalid activation key, and it’s empty in my database too. I wish someone from @buddypress could help! I can’t find a solution anywhere.
🙁
April 10, 2018 at 9:44 am #271955In reply to: Notification from bbpress to buddypress
begindot
ParticipantDid you try the forum notifier plugin? You can also have a look at other plugins here Best BuddyPress Plugins
April 10, 2018 at 4:01 am #271944In reply to: Alternative to Xprofile
darunia77
ParticipantHey guys, @grounder is talking about xprofile fields plugin, not Buddypress. Read the thread title.
I assume it’s this plugin as it has been abandoned by wordpress recently as it has not been updated in 3 years or so.
I am also using this plugin and looking for an alternative. My hosting (wp-engine) just notified me that this plugin has a security vulnerability and they have contacted the developer to fix it but I doubt it will happen.
I think this plugin might be an alternative but have to look into it, if anyone is also in this situation. This one is also not updated:
April 10, 2018 at 4:00 am #271943In reply to: Assign Members Page
Venutius
ModeratorCheck Dashboard>>Settings>>BuddyPress>>Pages and make sure the BP Members component is assigned to your members page.
If that’s the case then it’s likely something is messing with BP.
April 9, 2018 at 5:13 pm #271934In reply to: Cannot activate user
T
ParticipantI just switched the register URL back to just “starwarscards.net/register” … and made a new page and linked it under BuddyPress Settings, but it’s not changing the link on my menu to the new URL…?
April 9, 2018 at 5:07 pm #271933In reply to: Cannot activate user
Venutius
ModeratorYep I can confirm that method does not work, to change the page, create a new page and link it in the Settings>>BuddyPress>>Pages options.
The email address in the settings>>General page is not the one WP uses to send notifications.
April 8, 2018 at 4:53 pm #271917In reply to: Is there not a list of shortcode anywhere?
Venutius
ModeratorHere’s the code for the friends activity with BuddyPress Activity Shortcode:
[activity-stream for=logged scope=friends]April 8, 2018 at 3:32 pm #271914In reply to: Is there not a list of shortcode anywhere?
Venutius
ModeratorHi Steve,
I took a look at your other requirements, for a “my friends” and “my groups” activity shortcodes. BuddyPress Activity Shortcode does not currently support these features but I’ve submitted new code to the developer so they can support your needs, I’ve made it a doddle to use if it is accepted.
April 8, 2018 at 4:47 am #271907In reply to: Just another register email issue post
Venutius
ModeratorSeems like it’s not working. What happens if you deactivate BuddyPress and just use the wordpress registration?
April 8, 2018 at 4:08 am #271906In reply to: Just another register email issue post
DR_MCGILL
ParticipantThx for the help. Looks like Amazon is a little tricky. I found a good source that led me to a plugin for aws: https://wpforms.com/how-to-set-up-wordpress-smtp-using-amazon-ses/
could you give it another try and see if it works now. I think this is the only option for Buddypress and amazon, surprised this hasn’t come up before. But I could easily be missing something…April 7, 2018 at 10:30 pm #271901In reply to: Just another register email issue post
Venutius
ModeratorTry deactivating all but BuddyPress, see if that fixes it
April 7, 2018 at 7:16 pm #271895In reply to: Just another register email issue post
Venutius
ModeratorBuddyPress basically uses the wordpress email system, it uses a sender address of wordpress@yoursite.com. Some email providers block this generic address. Mine doesn’t, if you like I could register on your site and see if it works for me?
April 7, 2018 at 12:24 pm #271893alexalexalex09
ParticipantWhoops, I forgot instructions on how to change the account details fields. Here, I updated it:
To change the text on the regular (Account Details) fields, make a copy of wpcontent/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php and place it in themes/your-child-theme/buddypress/members (a folder which you will have to create).
Then, open that file and replace every instance of
<?php _e( '(required)', 'buddypress' ); ?>with your asterisk (*).Then, to change the text on profile fields (Profile Details), just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).
function bp_change_required_label($translated_string, $field_id) { return '*'; } add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.
April 7, 2018 at 12:17 pm #271892alexalexalex09
ParticipantI know this is an old thread, but for those who are (like me) interested and googling this, here’s a quick solution that requires no language file editing.
Just add the following code to bp-custom.php (which, if it doesn’t exist, you’ll need to create in wpcontent/plugins).
function bp_change_required_label($translated_string, $field_id) { return '*'; } add_filter('bp_get_the_profile_field_required_label', 'bp_change_required_label', 10, 2);This function hooks into the function bp_get_the_profile_field_required_label() in buddypress/bp-xprofile/bp-xprofile-template using the supplied filter. It takes the translated “(required)” string and replaces it with “*”. which will also remove any translation – but that should be acceptable for a symbol in most cases.
April 6, 2018 at 3:03 pm #271885In reply to: Initial member order
Venutius
ModeratorI’ve been playing with this and I too am struggling. What I have discovered is as follows:
Remove the
&from the beginning of the string and alphabetical will work.
Start the string with another option beginning with an&and alphabetical will work.Exclude does not seem to work in any variation.
I’ve raised this in a track ticket:
April 5, 2018 at 6:54 pm #271877In reply to: Notification Page blank
Venutius
Moderatorhow about if you only have BuddyPress running? does that fix it?
-
AuthorSearch Results