Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 14,876 through 14,900 (of 69,016 total)
  • Author
    Search Results
  • #229445
    shanebp
    Moderator

    Yes, it’s unfortunate that bbPress doesn’t clean up the roles it created when uninstalled.
    ( note: it shouldn’t remove roles when it’s just deactivated. )

    But this is the BuddyPress forum.
    Please ask your question on the bbPress forum.

    #229432

    In reply to: Language

    danbp
    Participant
    shanebp
    Moderator

    The codex is your buddy.

    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 2 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    #229289
    shanebp
    Moderator

    You’ll need to write some custom code.
    It is more complicated than a ‘tweak’.
    You probably need to hire a developer.
    You can post jobs here.

    #229255
    Hugo Ashmore
    Participant

    That’s bbPress, bbPress isn’t BuddyPress 🙂

    bbP handles overloaded styles in same manner BP does so you can copy the stylesheet for bbpress to your theme/child theme and edit the relevant rulesets.

    #229252
    Henry Wright
    Moderator

    It’s interesting there has been two reports of this happening over the past week. The common ground seems to be localhost (you’re running Xampp and the second reporter is running mamp)

    Ref: https://buddypress.org/support/topic/new-users-cant-register-5/

    #229243
    shanebp
    Moderator

    Did you read this?

    #229239
    shanebp
    Moderator

    Take a look at this codex page for an example of gathering user ids based on an xprofile field.

    #229237
    shanebp
    Moderator

    This will require good coding skills. You may need to hire a developer. Or maybe somebody will be willing to create the code for you.

    To any devs: BP 2.2 will include ‘BP_XProfile_Query‘ to make these kinds of tasks much easier !!!

    #229223
    Hugo Ashmore
    Participant

    At this stage we can’t help as you provide no idea of what sort of issue you are having; this plugin author you contacted replied to you thusly You might want to contact one of the developers of the plugin that is causing the problem and send them the information in your console no information though!

    Not sure why you have arrived at the conclusion BuddyPress is the issue here though, BP is coded very tightly to WP standards and is less a plugin and more an extension of WP functionality.

    You actually list a number of fairly complex plugins that you consider cause the issue and seem to have posted this question on bbPress forum their response is going to be the same as ours at this stage without much more information, but frankly if one states a number of plugins appear to cause an issue on an individual basis then the one common denominator would likely be the problem and in this case that’s the bol.com plugin, but that’s not pointing the finger so to speak at bol but the resolution will lie with bol rather than bbPress or BuddyPress.
    https://wordpress.org/support/topic/produktlink-doesnt-work

    #229216
    Myg0t
    Participant

    @aces

    hmmm… Your exactly right… Now that you say that, I had it in the plugins folder at one point, but some where along the lines I some how moved it over to the buddypress folder.. Not sure why…

    Either way, I moved it back to the plugins folder and still nothin’ 🙁

    #229214
    aces
    Participant

    @myg0t

    I haven’t tried the above code, but the location of bp-custom.php should be /wp-content/plugins/bp-custom.php not the buddypress plugin directory.

    #229209
    Security
    Participant

    Hi i think i know whats happening here i was working on status theme to make it work with the latest versions of both buddypress and wordpress and i faced the similar issue so this is what i did to resolve it goto wp-content>>themes>>yourthemename>>members folder>>single>>home.php and add these lines of code there

    elseif ( bp_is_user_notifications() ) :
    					locate_template( array( 'members/single/notifications.php' ), true );	
    

    just before this kinda statement // If nothing sticks, load a generic template
    next create a file named notifications.php in wp-content>>themes>>yourthemename>>members folder>>single folder and add these lines to it

    <?php
    
    /**
     * BuddyPress - Users Notifications
     *
     * @package BuddyPress
     * @subpackage bp-legacy
     */
    
    ?>
    
    <div class="item-list-tabs no-ajax" id="subnav" role="navigation">
    	<ul>
    		<?php bp_get_options_nav(); ?>
    
    		<li id="forums-order-select" class="last filter">
    			<?php bp_notifications_sort_order_form(); ?>
    		</li>
    	</ul>
    </div>
    
    <?php
    switch ( bp_current_action() ) :
    
    	// Unread
    	case 'unread' :
    		bp_get_template_part( 'members/single/notifications/unread' );
    		break;
    
    	// Read
    	case 'read' :
    		bp_get_template_part( 'members/single/notifications/read' );
    		break;
    
    	// Any other
    	default :
    		bp_get_template_part( 'members/single/plugins' );
    		break;
    endswitch;

    and try to reload your site now your problem should be solved.
    Note: only create notifications.php if its not already there and please backup your site before making these changes

    #229207
    shanebp
    Moderator

    Re: 2. Importing s2member custom fields to buddypress fields
    Instead of, for now, editing the codex page, please note the args parameter for add_action.

    So the ‘2’ here is the arguments parameter. add_action('wp_login','s2_profile_field_update',10,2);
    So the hook provides 2 arguments – very handy & useful.
    But your example doesn’t use them in the function s2_profile_field_update.
    You can use the $user arg instead of $current_user and thereby get rid of that global.
    Use this to see the data in $user:

    function hook_arg_display( $user_login, $user ) { 
       var_dump( $user ); 
    }
    add_action('wp_login','hook_arg_display',10,2);

    imo: There is no Option 1.

    #229206
    shanebp
    Moderator

    Re: Filter Users Displayed in Members Directory by s2member role.
    There a couple of ways that this can be accomplished without needing to overload the members loop template and then hack it. One of them is bp_parse_args. Please try using it.

    The goal of this new codex page is to provide simple functions that adhere to best practices for WP and BP, that users can easily paste into bp-custom.php or theme/functions.php.

    Thanks for creating the page – looking forward to your updates.

    #229202
    Myg0t
    Participant

    @mcpeanut I’ve posted the material in the codex now, so you may want to bookmark this page instead:

    https://codex.buddypress.org/developer/useful_func_s2_bp/

    I’ve already posted the option2 for the field import function. Once I get some more time and figure out how to use bp_parse_args() i’ll update the first section as well. Along with any other usefull s2member/buddypress tweaks that I find along the way.

    Glad you could find this useful!


    @hnla

    what’s the trick to formatting code in the codex? I’ve wrapped all the code in the tags, but it rips apart the formatting for the text (like indention’s)

    \M

    #229201
    Myg0t
    Participant

    @naijaping Sadly, it is not working still 🙁

    I tried the code in both childtheme/functions.php and plugins/buddypress/bp-custom.php…

    Just to clarify I should be using a link like this, yes?

    thanks guys,

    \M

    #229189
    mcpeanut
    Participant

    @hnla cheers for that, it will be a few weeks i think before i integrate s2members anyhows, i am currently finishing off the overall design of my theme and customizing every aspect of it and integrating alot of css changes to the way buddypress looks, so i will bookmark this page and refare back to it when i get round to s2member, i have learned so much over the past year and a half by visiting this site thx to you guys so cheers 🙂

    #229183
    Myg0t
    Participant

    @henrywright Thanks for the reply!

    unfortunately, that did not work.

    I tried putting it in both my childtheme/functions.php and my plugins/buddypress/bp-custom.php and no dice. :\

    izzyian
    Participant

    Yep ok ill ask there but hopefully there is a function for this so I can go around core files. is the activity stream also done by them or is this question in the right spot to : https://buddypress.org/support/topic/how-to-change-the-number-of-activity-items-on-a-profile-page/ ?

    -Thank you

    #229144
    Hugo Ashmore
    Participant

    @myg0t Thanks for sharing that with the community, S2 Member has wide use so this ought to be useful to people.

    One point though it’s best not to advise that people edit a core file /buddypress/bp-templates/bp-legacy/..etc BP has a fairly well defined template hierarchy overload allowing files to be copied to the theme or child theme, those are the copies one should edit.

    Another minor point rather than have to edit & pass the arguments in the template could bp_parse_args() perhaps work for this?
    Using bp_parse_args() to filter BuddyPress template loops

    In respect of the profile data would not setting the user visibility options on the profile field/s in the backend not work to provide the privacy for address fields, just a thought but I may have missed the point of this aspect.

    Lastly this could make a nice user example guide for the BP codex if you’d care to post it there and we’ll slot it under a section appropriate.

    #229134

    In reply to: buddypress rtl

    Henry Wright
    Moderator

    Hi @zemenik

    Have you tried searching the WordPress Themes Directory? Perhaps search for something like “rtl language support” or just “rtl” and look through the results retuned for themes that are compatible with BuddyPress.

    #229124

    In reply to: groups added to phpbb?

    shanebp
    Moderator

    Integrating phpbb with BuddyPress would be a lot of work and would require a good developer with strong knowledge of both BP and phpbb.

    I’m not aware of any plugin that bridges phpBB with WP and BuddyPress.

    This might get you part of the way.

    #229123
    Hugo Ashmore
    Participant

    What was the outcome when you swapped to a standard WP theme such as twentyfourteen?

    Does your install work work period in regards BP, not sure about that rather non standard server path where you have plugins under /themes/x/framework/functions/plugins/buddypress.php – to my mind that should not be working.

    #229119
    Gatera
    Participant

    Hi @modemlooper,

    Actually I realised that is not what is causing the user to be displayed. I deleted everything and started from 0, it is still showing. I am running buddypress 2.0.1 with the X theme.

    http://tinypic.com/r/6nxhew/8

    please take a look at the picture in the top left corner is where you will find the problem

Viewing 25 results - 14,876 through 14,900 (of 69,016 total)
Skip to toolbar