Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,151 through 18,175 (of 68,920 total)
  • Author
    Search Results
  • #174474
    noizeburger
    Participant

    Thank you @henrywright-1,

    this would be a nice alternative to my own approach, but what about my original idea? Remember you asked the same question in another thread few weeks ago.

    If there would be a way to pass over the different user-roles to xprofile-fields there would be no need to create templates. You could output the field in the member-loop and make it searchable. This would be the simplest way. What do you think about it?

    As an example: a user registers on my site as “band” (which is a wordpress user role). The selected field would be inserted into a (maybe) hidden xprofile-field also called “profiletype”. This field could be echoed everywhere inside buddypress (clickable, searchable). I know this could be done with only xprofile-fields too, but without the possiblity to use bp-xprofile-acl an the advantage of different user capabilities. Am I clear?

    #174467

    In reply to: Share Users

    Ben Hansen
    Participant

    i wouldn’t say it was obvious, anyway have you also activated the site tracking component inside the buddypress network settings?

    #174461
    xmatter
    Participant

    I still have yet to figure this out. I have created a child theme to the default BuddyPress theme. I simply want to remove both the Email & Website input boxes.

    Is there somewhere in the comments or functions file that I need to look?

    #174460
    Henry
    Member
    if ( jq(this).hasClass('no-ajax') )
        return;

    Without looking at buddypress.js, I’m 99.63% sure this tells the script to return (stop executing the function) if a particular page element has class ‘no-ajax’. If the purpose of the function is just to add transition effects then you could add the no-ajax class to the page element to stop the transition effects from happening.

    #174456
    Mandingo
    Participant

    It’s just what makes more sense in my project, I need a couple of groups with different names, each with all the functionality of the buddypress groups.

    I tried doing a find/rename and creating a loader with the help of the buddypress skeleton component as people suggested in the linked thread but it didn’t work. Any help?

    #174455
    lflier
    Participant

    Sorry Modemlooper if I wasn’t clear on what I mean by “home page.” I’m new at this game. What I mean is the page with the URI that starts with root/members/username/… . This is the page that shows the user’s activity, profile, messages, friends, groups, forums, and settings. This is the page that appears to lack the transition effects of the other pages (root/activity) and (root/members).

    Thank you Henry for your confirmation of my observations. Common sense tells me to wait for BP 2.0. But curiosity drives me to try to figure this out. I found the following script in buddypress.js (my own application uses the legacy theme):

    	/**** Tabs and Filters ****************************************************/
    
    	/* When a navigation tab is clicked - e.g. | All Groups | My Groups | */
    	jq('div.item-list-tabs').on( 'click', function(event) {
    		if ( jq(this).hasClass('no-ajax') )
    			return;
    
    		var targetElem = ( event.target.nodeName == 'SPAN' ) ? event.target.parentNode : event.target;
    		var target     = jq( targetElem ).parent();
    		if ( 'LI' == target[0].nodeName && !target.hasClass( 'last' ) ) {
    			var css_id = target.attr('id').split( '-' );
    			var object = css_id[0];
    
    			if ( 'activity' == object )
    				return false;
    
    			var scope = css_id[1];
    			var filter = jq("#" + object + "-order-select select").val();
    			var search_terms = jq("#" + object + "_search").val();
    
    			bp_filter_request( object, filter, scope, 'div.' + object, search_terms, 1, jq.cookie('bp-' + object + '-extras') );
    
    			return false;
    		}
    	});

    The conditional statement that checks whether the division has the “no-ajax” class is apparently meant to catch the nav for what I am calling the home page, which has this class attached to it. Merely commenting out those lines results in a non-functional nav (clicking does nothing), so the decision to treat that page differently in the code is surely not arbitrary. There must be some reason for it. What would it be? That there is no ajax on this page?

    #174450

    In reply to: Share Users

    martinbeaulne
    Participant

    @ubernaut

    I just didn’t realized I was in “tools” when I set up the network… So the answer is Yes, obviously, I set it up.

    As I said:
    « After installing my /en/ site, network enabled buddypress, set it up »
    –> if I “network activated” buddypress, it automatically means the multisite is set up.

    So, my question is : Anyone knows how to make buddypress multi blog enabled when BP_ENABLE_MULTIBLOG doesn’t change anything ?

    #174443

    In reply to: buddypress login

    MarialKa
    Participant

    +1 with WP 3.7.1 and BP 1.8.1 🙁 I’m still using twenty twelve (server PHP 5.3)

    in my case, it seems than it’s when rtMedia is enabled

    no idea about this alert and 😉 how do to fix it, thanks in advance for your support?

    #174438

    In reply to: Share Users

    martinbeaulne
    Participant

    I have done the exact steps I mentionned above. And I hit a wall.

    After installing my /en/ site, network enabled buddypress, set it up.. I realised BP_ENABLE_MULTIBLOG ( set to true, un wp-config.php ) is broken. Or I don’t know how to make it work.

    I just can’t find out how to enable buddypress in multi blogs. I can’t have a /subsite/member/martin/ profile page. It doesn’t exists.

    Anyone knows how to make buddypress multi blog enabled ?

    #174437
    Been Young
    Participant
    #174434
    tse11
    Participant

    @bphelp Thanks, unfortunately that didn’t work either.

    For anyone wondering. I found a plugin that finally blocks the BP feeds. It is for wordpress but did the trick. The plugin is here:

    https://wordpress.org/plugins/disable-feeds/

    #174430
    modemlooper
    Moderator

    A group is just a BuddyPress component and you can create your own components. Duplicating the groups component is not an easy task. Why do you need more group types?

    https://codex.buddypress.org/plugindev/creating-a-custom-buddypress-component/

    #174426
    martinbeaulne
    Participant

    Can someone shed light on a pretty simple question:

    Why people say Buddypress is a multisite plugin when, in fact, it is not.
    It only works on the main site. Not on the subsite.

    What is the point in saying it’s a multisite plugin when it’s not ?

    I spent lots of time moving my existing wp/bp site to root of my domain to make it multisite, then created a subsite, all this to make my site multi-language… Only to find out, later on, that I couldn’t* access my bp profiles, etc. from the subsite…

    Am I missing something ?

    I read this on some other page:
    « Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog (More details about BP_ENABLE_MULTIBLOG):
    define ( ‘BP_ENABLE_MULTIBLOG’, true ); »

    at: https://codex.buddypress.org/getting-started/customizing/changing-internal-configuration-settings/

    And still, after adding this, the answer to « can I put multiple blogs id in define(‘BP_ROOT_BLOG’, 2); », is still « James: no ».

    .. ?

    #174420
    mayur hotkar
    Participant

    I got it working some how…i was able to find buddypress in the featured option in plugin… Any wayz thnx… U provide good support…

    #174417
    AgenceRegard
    Participant

    Yess but after you paid, it’s your own business … So, I go here to post my question and ask your help.

    #174415
    Henry
    Member

    Have you tried contacting the theme author?

    #174407
    mayur hotkar
    Participant

    M. Juz a beginner.. I dont know whr it is installed.. Whn my domain name got registered.. I got wordpress.. Den i installed a theme.. N the website was in existence.. Bt the default in WordPress is a blog website.. So to convert it in seconds network site m trying buddypress…. Plz help me in simple language

    #174404
    @mercime
    Participant

    @mayur-hotkar Strange. Where did you download a copy of BuddyPress? Download at https://wordpress.org/plugins/buddypress/

    How did it show that ” it shows it contains virus.. So cant b installed”? Where are you hosted? Is your WordPress installed at domain root?

    #174401
    @mercime
    Participant

    @mayur-hotkar are you on a multisite installation? If so, go to Network Admin > Plugins and activate BuddyPress. If you’re on a single WP installation, try to reupload BuddyPress manually, i.e. s/FTP

    #174400
    mayur hotkar
    Participant

    I my search in plugin option.. I cant find buddypress…

    #174397
    @mercime
    Participant

    @mayur-hotkar BuddyPress is compatible with WP 3.7.1.

    #174396
    Henry
    Member

    @beenyoung you can submit a BuddyPress Trac ticket at:

    https://buddypress.trac.wordpress.org/

    Trac is where the core developers hang out so if you think there is a bug in the way the BP core works then that is the best place to raise the issue.

    #174395
    @mercime
    Participant

    @speedyworm BuddyPress uses the theme’s page.php to render the BP components. Have not seen a thesis theme for some time. Do check Thesis’s forums if someone already made the child theme for BP Theme Compatiblity already. If the page.php file of a thesis theme has the proprietary templating system where you cannot see the_title() and the_content() tags within the WP loop, then:
    – create a new thesis child theme for BP
    – copy over the parent theme’s page.php to the child theme
    – change child theme’s page.php so that it contains the_title() and the_content() tags within the WP loop.

    #174390
    bp-help
    Participant

    @tse11
    Use init hook instead of bp_init! Place in bp-custom.php :
    https://codex.buddypress.org/plugindev/bp-custom-php/

    
    function pcfbp_lite_cut_nonreg_visitor_rss_feed() {
    	if ( !is_user_logged_in() ) {
    		remove_action( 'bp_actions', 'bp_activity_action_sitewide_feed' ,3      );
    		remove_action( 'bp_actions', 'bp_activity_action_personal_feed' ,3      );
    		remove_action( 'bp_actions', 'bp_activity_action_friends_feed'  ,3      );
    		remove_action( 'bp_actions', 'bp_activity_action_my_groups_feed',3      );
    		remove_action( 'bp_actions', 'bp_activity_action_mentions_feed' ,3      );
    		remove_action( 'bp_actions', 'bp_activity_action_favorites_feed',3      );
    		remove_action( 'groups_action_group_feed', 'groups_action_group_feed',3 );
    	}
    }
    add_action('init', 'pcfbp_lite_cut_nonreg_visitor_rss_feed'); 
    

    Make sure the single quotes are not being modified if you are copying and pasting the code!

    #174383
    noizeburger
    Participant

    @dtabraham
    I’m looking for the same functionality and would prefer, to pass the user role over to a custom xprofile field to integrate it in buddypress search.
    Meanwhile I show the user roles with a function I found in the forums:

    bp-custom.php:

    function pc_get_userrole ($user_id) {
    
    $user = new WP_User($user_id);
    
    $userclean = $user->roles[0];
    
    return $userclean;
    
    }
    
    function get_user_role( $user_id ){
    
      $user_data = get_userdata( $user_id );
    
      if(!empty( $user_data->roles ))
          return $user_data->roles[0];
    
      return false; 
    
    }

    and then echo where you want (in my case I did it in member-header.php):

    <?php echo get_user_role(bp_displayed_user_id()); ?>

    You can take a look here: link to a profile on my site

    greetings

Viewing 25 results - 18,151 through 18,175 (of 68,920 total)
Skip to toolbar