Search Results for 'buddypress'
-
Search Results
-
Topic: Open links in new tab
WordPress Version 5.7.2
BuddyPress Version 7.3.0I need to open links in BuddyPress posts and comments in a new tab.
I’ve installed Code Snippet and I’m using this function, but it isn’t working.
function altlab_special_links_activity( $body ) { $body = str_replace(' rel="nofollow"',' rel="nofollow" target="_blank"',$body); return $body; } add_filter( 'bp_get_activity_content_body', 'altlab_special_links_activity', 15, 1 );Any help would be gratefully received, thanks.
Hello. I am using BuddyPress and there is a section where users can post YouTube videos.
It just doesn’t look the same or appealing without thumbnails displayed by the title.
Is there any way at all to make this work?
I am using the BuddyPress Boss Theme and support said the only way I may be able to do this is to perhaps hire one of their developers.
Geeze, I had paid enough.
I just had to shell out to customize a registration form because there wasn’t a way provided to even change the background color of the page.I’d really appreciate it so much!
Thank you!
Hello. i am using the below code to display new jobs added to the activity field. i want to display the job post title in the feed but it shows as just job. i am using the following code
bp_activity_set_post_type_tracking_args( ‘job_listing’, array(
‘component_id’ => ‘activity’,
‘action_id’ => ‘new_job_listing’,
‘bp_activity_admin_filter’ => __( ‘admin Jobs’, ‘custom-domain’ ),
‘bp_activity_front_filter’ => __( ‘Jobs’, ‘custom-domain’ ),
‘contexts’ => array( ‘activity’, ‘member’ ),
‘bp_activity_new_post’ => __( ‘%1$s posted a new work opportunity Job‘, ‘drallys’ ),
‘bp_activity_new_post_ms’ => __( ‘%1$s posted a new work opportunity Job, on the site %3$s’, ‘drallys’ ),
‘position’ => 100,
) );
}
add_action( ‘init’, ‘customize_page_tracking_args’, 1000 );function monkey1980_include_post_type_title( $action, $activity ) {
if ( empty( $activity->id ) ) {
return $action;
}if ( ‘new_job_listing’ != $activity->type ) {
return $action;
}preg_match_all( ‘/<a.*?>([^>]*)<\/a>/’, $activity->action, $matches );
if ( empty( $matches[1][1] ) || ‘Job’ != $matches[1][1] ) {
return $action;
}$post_type_title = bp_activity_get_meta( $activity->id, ‘post_title’ );
if ( empty( $post_type_title ) ) {
switch_to_blog( $activity->item_id );$post_type_title = get_post_field( ‘post_title’, $activity->secondary_item_id );
// We have a title save it in activity meta to avoid switching blogs too much
if ( ! empty( $post_type_title ) ) {
bp_activity_update_meta( $activity->id, ‘post_title’, $post_type_title );
}restore_current_blog();
}return str_replace( $matches[1][1], esc_html( $post_type_title ), $activity->action );
}
add_filter( ‘bp_activity_custom_post_type_post_action’, ‘monkey1980_include_post_type_title’, 10, 2 );Topic: Profil Page
Hello everyone
I’m new user of Buddypress … and I don’t understad how to create profil page for users.
Searching and don’t find a clear answer. Thanks for help
Topic: Hello there.
I have a site. https://hassasterazi.com How can I switch to the buddypress system without losing any data from this site?
I have a BuddyPress social networks in a multi network WordPress install (WordPress multisite), thanks to LH Buddypress Multi Network plugin.
Everything is up to date.
How can I prevent people from accessing to a profile page from another blog?
For example :
teacherSite, teacherUser
studentSite, studentUserI have restricted access to site for non-member.
teacherUser can only connect on teacherSite.
And he can’t see in the directory other users from others blogs.If studentUser knows the teacherUser username or if he finds or tests…
He can go to studentSite.domain.com/members/teacherUser/, and he can see the profile of teacherUser even though teacherUser is not linked to studentSite.
Fortunately, there is no information (because everything else is well segregated) except the name and the gravatar.
But he can still make a connection request or send him a private message!
teacherUser will not see any notification on teacherSite. But he will potentially receive an email which will redirect him to studentSite without being able to connect to it.How to avoid this?
If you know, you are a master!
Hi all.
On the messages page (/members/runningversity/messages/), there is a twisty next to the search box. See pic: https://photos.app.goo.gl/Dy75x2agYWFoqKXp6 (opens in new tab)
It reorders the messages in some way. Class is “last filter”.
Should it look like this or not? Or should it have some text in it to explain what it does?
Any advice much appreciated, plus would love to see what it should look like if anyone has a moment to share a shot of theirs.Buddypress 7.3.0 (same issue on 7.1.0)
WP: 5.6.2 (would rather not update this quite yet even in my staging copy – in the midst of testing a lot of plugin updates)
All other plugins (apart from security) disabled.
Astra theme (but same happens in 2020 theme)
No errors in the inspect consoleTopic: Embed Members List on a Page
Hello BuddyPress community. I have been trying to find a way to incorporate the Filterable BuddyPress Members List on a page. I have found a shortcode plugin that will embed the list, but it is not filterable.
Here’s the reason, I am creating a staff portal dashboard where employees can access announcements, download links, and search the directory from one page. I am using Gutenberg to build the page using tabs. I want the directory inside one tab.
Is there any plan to make the “Directory” and “Activity Stream” a Gutenberg block?
More than that, does anyone know of a simple way to include the full function of the Members list as one element on a complex page?
Hello guys,
I was working with your plugin and and an issue with the function bp_register_member_type and bp_register_member_types, it seems like nothing happen even if i call it right. Can you check on your side if the function is working all right please ?Source : https://codex.buddypress.org/developer/member-types/
Cordialy.
Hello all, im using the “Gaming Mag” theme its an child of the “News Vibrant” theme.
Right now when i open a blog you see the author name, when you click it it will display all the posts the author created.
I wish to change that, i would like when you click the author name it brings you to the author’s buddypress profile. Can anyone explain me how to do that?
Topic: HTTP error. ( localhost )
Hello i have a issue similar to Him but the issue is i can’t install php gd
becuase im running it on localhost apache server XSAMMPIn google chrome dev tools it shows this error
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
and the /wp-admin/admin-ajax.php
returning 0any idea why it’s happening ?
Changing browsers – deleting cookies – deleting sections – incognito mode = they all didn’t work
Hi Team,
I am using BuddyPress v-7.1.0.
When I log out then on the activity page, Feed does not load. Even refresh also does not work.
Platform URLSharing a small screen recording too Screen recording.
Feed is having issues on normal browsers and on mobile too. Please help urgently. I am stuck.