Search Results for 'buddypress'
-
Search Results
-
Hi,
Would like to know if the avatar used seen in screenshot on the BuddyPress Plugin page on wordpress.org is default or we need to install additional plugins?
screen
https://ps.w.org/buddypress/assets/screenshot-1.png?rev=1534012Thanks,
PinkDreamBoxTopic: Wrong URL’s
Hello 👋🏼☺
Something inexplicable is happening to me with which I have been stuck for several days:
In the registration form, the “register” button does absolutely nothing. When you move the mouse over it, the color changes and the pointer changes as if it had a link, but when you click on it, ABSOLUTELY nothing happens, as if there were no links in the button. And the button below to login leads to the activity page. As this is the case, nothing is recorded in the debug.log file, since no movement has been made.
Among the many things I have tried is to reinstall the plugin, but it has not helped. I have also checked in case it was something related to Jquery and the wordpress 5.6 update, but no obese code appears either.
I can’t find where to continue the investigation.
When I started the project the Buddypress “registration” and “login” forms worked with the same version of the currently working theme (Free Generatepress), but now the Buddypress login form doesn’t work either.
I tried deactivating all plugins and reinstalling wordpress, even to a previous version, but nothing changed, the same I did with the buddypress plugin, reinstalling the version with which the project started, with no change in the problem.The “Activity” page created automatically by the Buddypress plugin also became unusable, redirecting to the main page and creating a “logout”. The solution to this has been to create a new page with another name and assign it in Buddypress as an activity page.
I have left the Budypress registration form on this page:
https://bio-naturaeco.com/register-bp/And the form for Login here:
https://bio-naturaeco.com/login-bp/Although it is the Registration form that I need.
I need some way to continue.
Thank you very much in advance.
A greeting.Buddypress v.7.1.0
Wordpress v 5.6Topic: menu with bp_nav_menu()
Hello,
I install buddypress. A few days ago, user and admin can modify their profile on my website http://lilisoumise.fr
I make several modification, add/remove several extnesions. I desintall and reinstall my theme and buddypresse several time.
On settings, the checkbox says that user can edit their profile is checked.
But on front, when I go on modify on my profile, nothing is displayed
To edit a profile, you can create here :https://lilisoumise.fr/inscription/
https://lilisoumise.fr/members/USER/profile/edit/group/1/
When Is see the code, it says
div class="profile edit" <style data-target = "global" type = "text/css" ==$0 #bf_hweb{display:none}.bf-alert{display:block;padding:15px;margin-bottom:20px;border:1px solid rgba(0,0,0,0.1);background-color:#fff}.bf-alert.error{background-color:#f2dede;color:#a94442;border-color:#ebccd1}.bf-alert.success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.bf-alert.warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.bf-alert.info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}li.image.bf_image{list-style-type:none;float:left;padding-right:10px}ul.bf_files{padding:0}#poststuff{padding-top:0;min-width:auto}.bf_inputs li{list-style:none}button.bf-draft:disabled,button.bf-submit:disabled{background-color:#c4c4c4}.bf-draft{background:#f2f2f2;border:1px solid rgba(0,0,0,0.12);color:#444}.bf-hidden{display:none !important}#wp-admin-bar-buddyforms-admin-edit-form > a.ab-item:before{content:"\e000";font-family:'icomoon';font-size:27px;padding:0;padding-right:10px}#bf_hweb{display:none !important}.bf-clearfix::after{content:"";clear:both;display:table}Do you have an idea ?
There seems to be no German translation for the “notification-description”.
“You have 1 new reply to [topic] from [user]”
And I can´t find a way to add a translation with the plugins “Loco Translate” (https://de.wordpress.org/plugins/loco-translate/) or “Say What?” (https://de.wordpress.org/plugins/say-what/), too. That works perfectly in other cases, but not in this one.
—
Wordpress 5.6
BuddyPress 7.1.0
bbPress 2.6.6
Loco Translate 2.5.0
Say What? 1.9.6I have installed the BuddyPress plugin on my website. Everything went well when I logged on as administrator. However, the problem is when I log in as a subscriber and author I can’t edit my profile.
When a subscriber clicks the “Edit” button, he redirects to:
instead of
https://[domain]/members/%5BUSERNAME%5D/profile/edit/group/1/
I don’t really understand the PHP programming language, can anyone help me how I can change the URL or “Edit” link on any user role profile page to:
https://[domain]/members/%5BUSERNAME%5D/profile/edit/group/1/
Thankyou 🙂
Hello,
I was wanting to create a button link in elementor to the BuddyPress user view profile page. I’m struggling to find the correct info.
There’s basically a link field in elementor available just like this https://pasteboard.co/JI8WdfI.png
The closest I found was the following:
https://buddypress.org/support/topic/logged-in-user-profile-link-url/
https://wordpress.stackexchange.com/questions/35163/add-buddypress-profile-and-messages-link-to-wordpress-menuUsing Ocean WP theme, Buddypress 7.1.0 (v latest at time of post)
Kind regards
Hi!
I have downloaded an installed BuddyPress 7.1.0. on my site: http://blogg.andershidman.se/…but I can not create “Login”, Logout” and “Register” menus.
This is how BuddyPress Settings shows in backend:

This is how the menu options is shown in backend:

What to do?
BR
Anders Hidman
SwedenHi,
I’ve created a custom tab called orders for profile members, and i want to create another one but the parent of orders
currently my tab can be access using this url:
http://example.com/members/demo/orders
But i want the “completed”, “pending” new custom tabs to be appended to url of orders tab.
Not:
http://example.com/members/admin/completed
http://example.com/members/admin/pendingBut:
http://example.com/members/admin/orders/completed
http://example.com/members/admin/orders/pendingI tried this:
Orders tab:
function profile_tab_orders() { global $bp; bp_core_new_nav_item( array( 'name' => 'All orders', 'slug' => 'orders', 'screen_function' => 'orders_screen', 'position' => 40, 'parent_url' => bp_loggedin_user_domain() . '/orders/', 'parent_slug' => $bp->profile->slug, 'default_subnav_slug' => 'orders' ) ); } add_action( 'bp_setup_nav', 'profile_tab_orders' ); function orders_screen() { add_action( 'bp_template_content', 'orders_content' ); bp_core_load_template( 'buddypress/members/single/plugins' ); } function orders_content() { echo do_shortcode('[orders]'); }Completed tab:
function profile_tab_orders_completed() { global $bp; bp_core_new_nav_item( array( 'name' => 'completed', 'slug' => 'completed', 'screen_function' => 'completed_screen', 'position' => 40, 'parent_url' => $bp->loggedin_user->domain . $bp->orders->slug . '/completed', 'parent_slug' => $bp->orders->slug, 'default_subnav_slug' => 'completed' ) ); } add_action( 'bp_setup_nav', 'profile_tab_completed' ); function completed_screen() { add_action( 'bp_template_content', 'completed_content' ); bp_core_load_template( 'buddypress/members/single/plugins' ); } function completed_content() { echo do_shortcode('[orders-completed]'); }Can someone suggest me a solution or help me in how to access pending, completed via this url
/orders/completed
/orders/pending
Thanks in advance!
Hi, we need some urgent advice.
We are completing an app based the buddyPress site we launched years ago.
https://i.ibb.co/rxXN9NG/image-2021-05-06-T05-11-40-687-Z.png
The badges on the notification will display
1. number of new messages not yet opened by user.
2. new friend request
3. new posts on the forums the user follows.As the user checks these new messages, the count displayed in the badge will go down.
Something like this:
https://i.ibb.co/txsQ2n6/image-2021-05-06-T05-04-40-027-Z.png
Or if updating the count is complex, we can go with a badge that clearly indicates there are new messages waiting to be checked.
Like this
https://i.ibb.co/0QfC1nD/hudl-notifications-2x.pngWe would like to implement something that is simple and robust without much change to our codes already built.
Your suggestion is greatly appreciated.
Jing
Hello,
We changed from using UWP to BuddyPress, and now we want to show Social Media Author Listings on the detail page Listings. If we use UWP, we add fields like Facebook, Twitter, etc. in Account then bring it up using the shortcode uwp_user_badge and take the key field that was added earlier then I put this on the Details Page.
Does BuddyPress have a shortcode like this to show Social Media Author Listings on the detail page Listings? Or is there another way to do it?Example on Listimia Demo Sidebar: https://demos.addictedtoweb.com/listimia-gd/places/briar-vintage/
https://www.awesomescreenshot.com/image/8404434
Thank you
Hello, whenever I create a group, all I see is the group photo and the activity. No toolbar, no menu (members, forum, etc)
any ideas?
Hello,
Does anyone know any way to enable WP Shortcodes in buddypress/bbpress topics? At least for Admins.
There are some plugins such as Quizzes and Polls that provide shortcode that can be easily added/started into a topic where a widget won’t work or is called for.
I understand that it can be a security concern for just any user to have the ability, but if it was limited to Mods, Admins and Content Providers it would great.I did find that GD bbPress tools DOES work (lets you have the function to use any shortcode in topics ) if you initially have it installed prior to installing BuddyPress Platform BUT if you have any other customization or toggles you had enabled on GS bbPress prior to the the BuddyPress install, you are STUCK to what it was set on because I found that BiddyPress Platform locks you out of the config for GD bbpress leaving you to keep as is or removing GD bbpress tools all together. Unfortunately I had to remove it because I did not want one of the settings I previously added. Don’t bother trying to re-install it. It won’t work.
I found another plugin, bbPress – Do Short Codes – it is abandoned and hasn’t been updated in years but it worked. The problem here was, there was some code in that for some reason clashed with the Buddypress mailbox.So in all, I know it can be done and it can work but I am hoping I can find one that works with Buddypress Platform or at least without issue.
I did reach out to Buddypress Platform tech support and the person who was helping basically closed the ticket regarding the inbox not working as soon as I figured out it was the plugin.
When asked about shortcodes in topics I was told it was not a feature. O-K.Thank you in advance for any help.
Regards
Wprdpress 5.7.2
BuddyBoss Theme and BuddyBoss Platform ProHello,
Since the last update of buddypress, instead of having the profile picture in the account, i have a blank square with “illustration of profile lili pilon”
It is for all my members.
to be sure, I deactivate all extension except buddypress and I delete all custom CSS. After this action, the picture are good on the account but not on my website.
So, I would like to know if there is a parameter of configuration to make to display the pricture which are on the account like before.
Thanks a lot for your help.
Topic: BuddyPress Tag user Feature
I’m getting the tag <span class=”atwho-query”> auto-added to the last email address in a BuddyPress message. It didn’t tag anyone as a user, it just added this class automatically to a surrounding span tag.
Is there anyway to stop this behavior? Or at least recognize that a @username =/= an@email.addy ?
Thank you for any help in the right direction!
ps. I also commented on an old thread over here on bbpress and thanks to mod @robin-w for pointing me over here!
Hi,
I’m posting here after submitting a ticket to my theme’s support, who told me to do so even though I feel the issue might be on their side. But here I go, just to make sure !
I’m using the Masterstudy LMS theme/plugin/pro plugin. I installed Buddypress, and everything works fine, except that the only way to add friends is to go to the /member page. This page is not included in any tab of the profile page, although on Masterstudy’s documentation, they show this page displaying under the “Friends” section. So I’m not sure if this is something that’s supposed to be set by default, in which case I have an issue with my website, or if it is something that I should set up myself.
For now, under my “Friends” tab, I just have added friends or friends requests displayed. But in the profile page, there is no place where the list of members is being displayed, making it impossible for a user to add a friend without going to /member page.
Am I doing something wrong ? Is there something I should set up ? Should I go back to my theme support ?
Thanks in advance
Self-hosted pages are loading and displaying slowly. This is because the browser won’t display them until all assets are loaded and there is a problem with one stylesheet that is included (from wordpress using theme integration):
<link rel=’stylesheet’ id=’bp–css’ href=’https://rockclass101.com/wp-content/plugins/buddypress/bp-core/css/.min.css?ver=7.3.0′ type=’text/css’ media=’all’ />
Please see screenshot:

Why does the head part for the example above contain broken links?
—
If I deactivate the BP plugin, the pages load fast. Any ideas on how to solve this issue?
Hello, in Buddypress there is a profile, but no default way to create posts. How can I add feature to create posts from user profile frontend? Is there any free plugins or some code/functions from buddypress core API?
Hello there!! Am working on a project using oceanwptheme and pantheon host( free trial) and just realized that my frontend is not completely responsive, some parts of the page can’t be fully view or access any help any style css that I can add? Please please help🙏 thanks