Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,476 through 19,500 (of 94,540 total)
  • Author
    Search Results
  • #239811
    Marcella
    Participant

    For a BuddyPress theme, what’s the requirements to get on wp.org?

    jaykdoe
    Participant

    I 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!

    @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 include the_title and the_content tags and that’s what you add to buddypress.php.

    @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 post

    #239800
    shanebp
    Moderator

    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 ?

    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.

    #239799
    city4run
    Participant

    Hello 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 ?

    boriskamp1991
    Participant

    Hi guys, in my custom theme I would like to display the latest forum topics. In order to do so I thought I could use this function So I copied the html/php code in my frontpage.php. It returns nothing, not even the

    Sorry, there were no forum topics found.

    message.

    I turned WP_DEBUG to true and found this message:
    Fatal error: Call to undefined function bp_has_forum_topics() in /Users/boriskamp/Documents/Local Websites/MSM/wp-content/themes/Military-Scale-Modelling/front-page.php on line 122
    Im using a child theme of the BuddyBoss theme.

    what’s wrong here?
    Thanks!

    #239786
    ICTaanbieding
    Participant

    Yes indeed forum topics in bbpress/ buddypress / userpro

    #239783
    danbp
    Participant

    Here’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' );
    penfao
    Participant

    Hi.

    I’ve change my member-loop.php file so that some field appear :

    <?php if ( bp_get_member_profile_data( 'field=Country' ) ) : ?>
         <?php echo bp_member_profile_data( 'field=Country' ); ?>

    What I need now is this field to be linked. I mean I want this to be clickable and when someone lick on it, it redirect to users directory and show every users who have the same Country in ‘ Country Field ‘. It’s working on single profile page but not in Member loop.

    #239773
    fullmoonfriday
    Participant

    Righty-ho,

    I am getting there with cutting out elements of the site-wide activity stream. I have tried using activity_updates with Imath’s code

    if(function_exists('buddypress')):
    
    function imath_activivity_dont_save( $activity_object ) {
    // friendship_created is fired when a member accepts a friend request
    // joined_group is fired when a member joins a group.
    $exclude = array( 'friendship_created', 'joined_group', 'new_member', 'new_avatar', 'updated_profile','activity_updates' );
    
    // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
    if( in_array( $activity_object->type, $exclude ) )
    $activity_object->type = false;
    
    }
    
    add_action('bp_activity_before_save', 'imath_activivity_dont_save', 10, 1 );
    
    endif;

    But this stops the capability to post an update accross the site. Can anyone let me know what does stop these postings to site-wide activity Tab but still allow users to post in their own profile?

    Thanks in advance

    MarioFromBelgium
    Participant

    Hi,

    I’m working on a web application based on WordPress. We have decided upon a specific template that is not compatibel with BuddyPress.
    When I go to any BuddyPress page like profile there is basic info displayed and all-in-all it doesn’t look horrible…but it is no ok.

    Is there somewhere a tutorial/video on how to make this working? I have gone through the tech docs and I have a pretty good idea where to go and solve the problem but still…I don’t get it!

    Cheers,
    Mario

    Henry Wright
    Moderator

    Hi @minglonaire

    Features can be requested on Trac. Try searching existing tickets first to make sure the request isn’t already open.

    deklein
    Participant

    My issues displayed in a video w/ commentary to make it easy to understand:
    [EDIT] youtube error: video removed by user.

    1st issue (wordpress): 0:00
    -Sub menu from main menu no longer popping up for some reason, when I refresh I can see it for a second but then it disappears, its got to be some type of bug

    2nd issue (buddypress): 1:41
    – Content under each buddypress profile item is invisible and glitched all of a sudden, wasn’t an hour ago
    3rd issue (wordpress): 3:04
    – Related to 1st issue

    I think that all issues might be related because they all started happening at once, can too much be going on in my website at once creating a logic error? Give me some ideas on what I can do!!! THANKKS SO MUCH! my site will be sick when it all works and its pretty(ier).

    #239754
    Prabin
    Participant

    Hi there,

    I want to moderate group posts in my buddyPress site. I did moderate forums/topics in bbPress using bbpress moderation plugin but I want to moderate Posts in groups too, which I couldn’t. Is there any trick or plugin available for this?

    Thanx a lot..

    danbp
    Participant

    It’s third time in 3 days with same question…

    https://buddypress.org/support/topic/acoustic-signal/

    Mickey
    Participant

    I realize buddypress used to have it, and I have seen convincing on here that somebody else knows better and its best not to have avatar on upload. If you take a poll on that one, you will most likely find out that 90% want at least an option to have avatar upload on registration.

    There is a plug in for that that does not work on mobile and has a somewhat shady contact links.

    Its such a basic thing, we should not be looking for plugins for it in the first plaace.

    please re-think your stance on this, and at least offer it as an option in admin menu

    @mcuk
    Participant

    These 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' );
    #239741
    Torgrim Sandvoll
    Participant

    I 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.

    mkamir
    Participant

    When I check my extended Admin profile, I have this message. Also, if I want to edit my profile from the buddypress menu structure it links to a 404 page.

    Where can I change this. Also, another user is checked as active but displays the same warning text.

    (sorry for my English).

    thanks

    maelga
    Participant

    That’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.

    #239735
    thebwm
    Participant

    Hi guys,

    Does anyone know how to, or if it’s even possible to integrate a connected user profile/sign up with the phpprobid script/software?

    Meaning, if someone signs up on the site, their account will automatically be the same for the script and with buddypress?

    Is that possible?

    Thanks!

    John

    #239731
    robertroos
    Participant

    Hi Dado,

    Thanks for your quick response, I disabled the BuddyPress link redirection setting is UserPro. That did the trick. Thanks!

    Robert

    Osisis
    Participant

    Have 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.

Viewing 25 results - 19,476 through 19,500 (of 94,540 total)
Skip to toolbar