Search Results for 'buddypress'
-
Search Results
-
Hi,
WordPress 5.2.3
and BuddyPress 5.0.0.I am asking for support. I have BuddyPress installed with BuddyPress Activity Plus. This plugin gives the user the option of publishing url addresses, so you can load pages and graphics nicely. The problem, however, is that it loads addresses from http: // instead of https even if the domain has one. I have SSL but when addresses from http appear on the wall of BuddyPress activity, it negatively affects information about the page in the browser (it’s about the padlock that disappears and information that the page is unsecured) How to force url loading from https: // in BP Activity Plus?
Support BP Activity Plus is not responding, so I am asking you for helpHi,
I have been trying the activity shortcode plugin but it doesn’t work that well.
Is it possible to create a plugin that will add the activity index template to a shortcode?Will it be similar to this code?
//[Activity Shortcode]
function activityfull_func( $atts ){bp_get_template_part( ‘buddypress/activity/index’ );
return;
}
add_shortcode( ‘foobar’, ‘activityfull_func’ );On the Members Profile page I’d like to have the Profile Field URL open in a new window.
I found the following article regard this issue.
https://buddypress.org/support/topic/profile-fields-open-url-in-new-tab-_blank/
I’ve tried the mentioned function below but its not working.
function swiss_target_blank( $field_value, $field_type, $field_id ){ if( $field_id == 6 ) { $field_value = str_replace('rel="nofollow"', 'rel="nofollow" target="_blank"', $field_value); } return $field_value; } add_filter('bp_get_the_profile_field_value', 'swiss_target_blank', 11, 3);It works when I modify the core file located at buddypress/bp-xprofile/classes/class-bp-xprofile-field-type-url.php, line 176. I’d like to find a way to do this without editing the core.
The article referenced above was written about 4 years ago. Has someone changed recently that would prevent the function from working?
Can someone please point me in the right direction? Thx
I have the latest wordpress installation with latest 2019 theme plus latest version of buddypress. I have set register on general settings, got buddypress pages created automatically upon registration. Did the page settings. Got only buddypress plugin activated but for some reason when I test register after logout, I cannot register people successful even though I imput the data needed to register. The page will not even redirect to activate. It stays the same with no registration happening after sign up.
I been reading other forum topics on registration. I tried changing themes, tried add www. on my URL, tried re-installation of wordpress and buddypress, removed all plugins except buddypress but for some reason I cannot figure out what I am doing wrong because I still cannot register new members/Users.
I been watching youtube videos on buddypress and I notice that on options the core buddypress files do not have a check box on the version I use. Even when I try to select everything on buddypress option so that all 10 are selected I still get cannot get registration of new members from register page.
Please help me I am a novice on buddypress.
I want to delete the activation key. I want users to activate their account by clicking on the {{{activate.url}}}
please help me
Is it possible to remove automatic links when http://www.domainname.com is typed into a text field? So this is not about automatic links to search a word after clicking.
WordPress version 5.2.3
BuddyPress version 5.0.0Website is offline due to security reasons by Google, that’s why I need to remove automatic links.
Topic: Quote notifications
I have a question about the functionality.
If for example, someone quotes the post of another user, it’s possible to receive a notification in the Buddypress notifications panel?Topic: count of all notifications
Hi BuddyPress,
I have a problem. I’m a poor programmer and I’m just starting to learn PHP. I hope someone will help me. How can I get count all notifications, both read and unread?
I want to sum it. I can’t find the function for notifications read to count using count()Does anyone know if it’s possible, to insert a shortcode into a buddypress profile field.
I want to show a ipflag/ipcountry code, on all members profiles. So that other members, can see their IP location.Best regards…
Hi all. I’m working on a site that will have several types of memberships. We’re using MemberPress for this since there will be monthly/annual payment options for each type.
The profile types in BuddyPress is an important part of what we need – we’ll be hiding certain profile types from the user directory.
The problem is, there seems to be no built-in way to simply map each MemberPress membership to the BP profile type we want to assign it to. (and we are already using the memberpress/buddypress linking plugin. it doesn’t include this functionality and they’re considering this custom work rather than something that should be built in. You CAN map the membership to default forums you want the user signed up to automatically, but not the profile type. … scratching my head…)
Has anyone had experience doing this? If so, would you be willing to guide me a bit? Not sure if I should try to build a plugin or if there’s an existing snippet for this.
Thanks!
I can’t enter in my profile.. on http://www.dovadoapp.com
1. 5.2.3
2. directory
3. subdirectory
4. n/d
5. Yes. buddypress worked well 1 week ago
6. 5.0.0
7. 4.9
8. No
9. personalised
10. Flatsome
11. I’ve edited buddypress template but after that i deletet and reinstalled.
12. No
13.
14. no errors
15. siteground
16. I don’t know
17. Buddypress Legacy
18. no. just i can’t enter in my profile
19. events manager linked with buddypress
I can’t deacivate plugin or templates because our website is live and full of events. I am afraid that if i change something m website can be worsen. 1 week ago everything worked!
Thanks
Topic: profile problems
Hello. I’ve updated buddypress to 5 version. Is it normal that when i access my site and i go to my profile nothing appears? please help me. Is very important.
http://www.dovadoapp.com is my website
Turns out if you send your blog posts to Twitter with Buddypress @usernames in it, Twitter will (naturally) think it’s a Twitter username and link to their profiles instead. I don’t anticipate there being an easy way to fix besides removing the names, but just happened to notice this and figured I’d throw it out there.
Topic: URL in BP Activity Plus
Hi BuddyPress,
I am asking you for help.
I use the BP Activity Plus plugin. Unfortunately, the plug-in has been closed and I have not found an alternative for it, and support no longer responds. How can I add the option of including a URL to the image loaded in the activity stream in Activity Plus?
Just like on Facebook. Does anyone know the solutionTopic: Not sent email activation
Hello, I am reading everything related to this topic and I see that it is a general problem that has not been solved correctly.
In my case, activation emails are not received after registration.
In support of WPLMS they have sent me to Buddypress saying that it is not their business.
I have checked with my hosting and the emails do not come out, they are not generated.
I have verified the sending via WP MAIL SMTP with server, port and specific user, but still not received.
Isn’t there a concrete solution? What can be done?
Thank you.On the BuddyPress Activity Stream, new blog posts show up with a post thumbnail and an excerpt of the content. How do I make the post thumbnail clickable so that it takes the visitor directly to the post?
I’ve tried Automatic Featured Image functions like the one below but they aren’t targeting the featured images on the Activity Stream.
function wpb_autolink_featured_images( $html, $post_id, $post_image_id ) { $html = '<a href="' . get_permalink( $post_id ) . '" title="' . esc_attr( get_the_title( $post_id ) ) . '">' . $html . '</a>'; return $html; } add_filter( 'post_thumbnail_html', 'wpb_autolink_featured_images', 10, 3 );All of the WordPress solutions I’ve tried have come up short. This seems like a BuddyPress thing.
Does anyone know how to target the featured image and excerpt for a blog post that appears in the Activity Stream?
Thx, JC>
There’s an article about this topic that was marked Resolved, but the author did not reveal the actual solution.
Only Display Custom Field if not empty
I’m using the front.php template to customize the members profile page. On the members profile page, I’m trying to hide all Profile Fields that are empty.
I’ve tried the code outlined in the referenced link with no luck. That post is about 4 years old so I don’t know if the information is the most up to date. When using the referenced code, I can’t get anything to show up on the page.
Can someone please point me in the right direction?
Thx, JC>