Search Results for 'buddypress'
-
AuthorSearch Results
-
May 29, 2015 at 12:19 am #239815
In reply to: Theme in Development: Preview & Feedback?
Marcella
ParticipantYeah .org aint doing it for me in terms of BuddyPress themes. Be a good thing for buddypress.org to have though.
May 29, 2015 at 12:18 am #239813In reply to: Theme in Development: Preview & Feedback?
Henry Wright
ModeratorYou’d just submit it as you would a normal WordPress theme, but specify that it provides support for BuddyPress. See some examples:
May 29, 2015 at 12:11 am #239811In reply to: Theme in Development: Preview & Feedback?
Marcella
ParticipantFor a BuddyPress theme, what’s the requirements to get on wp.org?
May 28, 2015 at 11:55 pm #239809jaykdoe
ParticipantI would like all member profiles to be completely private. Members should only be able to access their own profile and nobody elses. Admin accounts should have access as well, but all profiles should be completely private to all other members.
I have done some research and have found a few people looking for similar solutions, but none exactly like this. Additionally, it appears there may have been some plugins in the past that would have helped but I can no longer find them in the wordpress plugin repository.
Does anyone know of any plugins or custom code I could add to bp-custom.php to accomplish this?
Thanks in advance!
May 28, 2015 at 11:02 pm #239807@mercime
Participant> there is basic info displayed and all-in-all it doesn’t look horrible…but it is no ok.
@mariofrombelgium Don’t know what kind of theme you chose. But you can create a buddypress.php file in the root of your theme. Convert the page.php to includethe_titleandthe_contenttags and that’s what you add to buddypress.php.May 28, 2015 at 10:58 pm #239806@mercime
Participant@minglonaire not sure what plugin you used which has shady contact links but the one from BuddyDev.com doesn’t have those
http://buddydev.com/plugins/bp-signup-avatar/ with info in blog postMay 28, 2015 at 9:41 pm #239800In reply to: Retrieve a variable from a GET
shanebp
ModeratorI’m calling it from the buddypress-xprofile-custom-fields-type plugin, do you think could be some filter that intercept querystring and reset it ?
I doubt it.
Where in the plugin are you calling it?
In a function?
And what is that function hooked to?
Is that hook being called on the page where you manually call the $_GET? Probably not.May 28, 2015 at 9:23 pm #239799In reply to: Retrieve a variable from a GET
city4run
ParticipantHello Shane,
I called manually the URL in the browser with the ?var1=TEST to be sure that it’s called properly but nothing change.I’m calling it from the buddypress-xprofile-custom-fields-type plugin, do you think could be some filter that intercept querystring and reset it ?
May 28, 2015 at 6:43 pm #239786In reply to: Group member can’t create topic
ICTaanbieding
ParticipantYes indeed forum topics in bbpress/ buddypress / userpro
May 28, 2015 at 6:08 pm #239783In reply to: Buddypress Field On Member loop – Need Links
danbp
ParticipantHere’s another approach, as we going to use an external function instead of modifying the template.
Add this to bp-custom.php
function clickable_countries_on_member_directory() { // is xprofile component active ? if ( bp_is_active( 'xprofile' ) ) { if ( $mycountry = xprofile_get_field_data( 'Country', bp_get_member_user_id() ) ) : $search_url = add_query_arg( array( 's' => urlencode( $mycountry ) ), bp_get_members_directory_permalink() ); echo '<br/><div class="my_country"><a href="' . esc_url( $search_url ) . '" rel="nofollow">' . $mycountry . '</a></div>'; endif; } } add_filter ( 'bp_directory_members_item', 'clickable_countries_on_member_directory' );May 28, 2015 at 8:47 am #239767Henry Wright
ModeratorHi @minglonaire
Features can be requested on Trac. Try searching existing tickets first to make sure the request isn’t already open.
May 27, 2015 at 10:19 pm #239748danbp
ParticipantIt’s third time in 3 days with same question…
May 27, 2015 at 2:31 pm #239743@mcuk
ParticipantThese might help you @antoinegdln4:
[Resolved] Position Notification Counter Bubble after Specific Navigation Tab ID
https://buddypress.org/support/topic/help-customising-admin-bar-removing-links-from-dropdown/
or removing WP admin bar entirely to all users except admin:
function remove_admin_bar() { if ( !current_user_can( 'administrator' ) && !is_super_admin() ) { show_admin_bar(false); } } add_action( 'after_setup_theme', 'remove_admin_bar' );May 27, 2015 at 1:52 pm #239741In reply to: All comments being displayed on user profile page
Torgrim Sandvoll
ParticipantI have same problem!
Need comments on some (other) pages/posts (but only those I set this for on a page/post basis). Have turned off comments in Settings > Discussion.
If I comment on a page/post, the comments somehow show up in my BuddyPress pages (Profile, Activity view, etc.)
This problem only occurs for the BuddyPress pages. When I go to a regulat post or page, only the comments (if allowed) for that page is showing.
Very frustrating…
My BuddyPress pages says “Comments are closed”. But still show comments from other posts/pages.
May 27, 2015 at 9:18 am #239738maelga
ParticipantThat’s indeed what comes to mind with the newly introduced member types.
I just came across that old plugin that used to provide a solution for having different profile types: https://wordpress.org/plugins/buddypress-xprofiles-acl/
One may need to look into it to see how it could possibly give a headstart.
May 27, 2015 at 4:09 am #239731In reply to: BuddyPress menus not working properly
robertroos
ParticipantHi Dado,
Thanks for your quick response, I disabled the BuddyPress link redirection setting is UserPro. That did the trick. Thanks!
Robert
May 27, 2015 at 3:54 am #239730Osisis
ParticipantHave you sorted this out yet? If not, if your nav has drop down capabilities you could add the menu items in the same order they are in the adminbar. For notifications, check out this post here.
May 26, 2015 at 10:03 pm #239722In reply to: How to remove the User-Specific Links on Profile
danbp
ParticipantHere a snippet to remove one tab.
https://buddypress.org/support/topic/remove-item-from-sub-nav-on-profile-page/And same technique for nav and sub-nav
May 26, 2015 at 9:54 pm #239721danbp
ParticipantPlease read here to show WP’s user roles:
https://buddypress.org/support/topic/displaying-user-roles-in-profile/
Musician and venue are not roles, but member types which is a different thing. For that read here:
https://buddypress.org/support/search/display+user+role+on+profile+page/May 26, 2015 at 7:07 pm #239717In reply to: [Resolved] White Screen on Register
danbp
ParticipantDeactivate your front end user plugin (which one ?) and see if issue remains.
FYI, BuddyPress is dedicated to users (aka members) and they can handle their profile from front-end, so you won’t really have the necessity of using such plugin.May 26, 2015 at 7:01 pm #239716danbp
ParticipantPlease use code button to publish code !
Your code is correctly working on 2012 theme…
The file must be in wp-content/plugins/bp-custom.php, not in wp-admin.May 26, 2015 at 6:07 pm #239712In reply to: [Resolved] User Activation Issue
proteas
ParticipantOK problem solved. It wasn’t my setup after all, it was the spam filters my hosting company was using.
I found out thanks to this post here:
I only wished I found it earlier.
May 26, 2015 at 3:35 pm #239706In reply to: Xenforo Integration?
wonky1
ParticipantI’ve got this running with a wordpress bridge, happy days..
All I need now is for BuddyPress to pull from our user tables.
I would be very grateful for some pointers.For instance, can I instruct BP to pull from the Xenforo (XF) database, using these methods;
many thanks
May 26, 2015 at 8:51 am #239699In reply to: Custom Post activity_action output wonky
Henry Wright
ModeratorI did some digging and
bp_blogs_activity_new_post_actiondoes actually apply to blog posts so my apologies for leading you to believe it applies to activity posts.To answer your question about
component_id, the docs say:ID of the BuddyPress component to associate the activity item
This isn’t hugely helpful because it doesn’t tell us anything new. But the
component_idis just the internal identifier of the component. It gets set during the component creation process. Take the Friends component as an example, see here. And in the case of blogs, see here. Thebuddypress()->blogs->idwhat you see in your function is just a way of accessing that ID.May 26, 2015 at 8:46 am #239698In reply to: [Resolved] User Activation Issue
proteas
ParticipantNow I have completely deleted the MySql database and all WordPress files. I did a completely clean install of WordPress 4.2.2 (without using Softaculous) and the only plugin I installed and activated is BuddyPress 2.2.3.1. Haven’t changed the language or anything else.
The problem is still there, exactly the same. The users get activated immediately after registration without clicking on the email link that is being sent to them.
-
AuthorSearch Results