Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,301 through 13,325 (of 69,016 total)
  • Author
    Search Results
  • #237882
    Dani-Girl
    Participant

    Hi Shane,

    I’m not seeing any of the suggested puglins ( Optional Email or Registration Plus Redux as they are the only 2 that meet my criteria) showing up in the Buddypress registration process.

    Since we have to assing buddypress registration pages, only buddypress’s fields are showing.

    If i deactivate buddy press and use the wplogin registration procedure, then either plugin works fine.

    what can I do to change it so that when buddypress is active and using its registration page, that either plugin’s options are showing up?

    shanebp
    Moderator

    This is probably theme related.

    This is the default template:
    \buddypress\bp-templates\bp-legacy\buddypress\groups\groups-loop.php

    You’re using a custom template.
    Take a look at the code generating the links in your groups loop.
    Or there may be a function in your theme that filters bp_group_permalink() or permalinks in general.

    #237873
    shanebp
    Moderator

    You want to add a ‘Personal’ option to the ‘Show’ selector on Site Wide Activity?

    Try this in your theme/functions.php or in bp-custom.php

    function leanne_activity_filter_options() {
        if ( is_user_logged_in() )
             echo '<option value="personal">Personal</option>';
    }
    add_action( 'bp_activity_filter_options', 'leanne_activity_filter_options' );
    
    function leanne_ajax_querystring( $query_string, $object ) {
    
    	if ( 'activity' != $object ) 
    		return $query_string;
    
    	if ( ! bp_is_activity_directory() ) 
    		return $query_string;
    
    	$query_args = wp_parse_args( $query_string, array() );
    
     	$page = $query_args['page'];
    
    	if( isset( $query_args['action'] ) && $query_args['action'] == 'personal' ) {
    	
    		$query_args = array();
    		$query_args['page'] = $page;
    		$query_args['user_id'] = bp_loggedin_user_id();
    		$query_string = http_build_query( $query_args );
    
    	}
    	
    	return $query_string;
    
    }
    add_filter( 'bp_ajax_querystring', 'leanne_ajax_querystring', 20, 2 );
    #237867
    danbp
    Participant

    Thought that such a tutorial doesn’t exist.

    Best place to get some in-depth technical information, is to search for AJAX on the Trac.

    #237865
    danbp
    Participant

    @leanneoleary,

    BuddyPress doesn’t handle the Media Library.
    BuddyPress doesn’t handle registration.

    It’s a bad practice to allow users to upload something to your site until they’re not fully registered. When a user register, WP considers this new account as pending. As long as the user hasn’t activate his account with the activation key, he can only visit the site.

    As you installed BuddyPress, i suggest you use your site à la BuddyPress.
    If you want your members be able to upload files, use BuddyDrive. Each user can upload files from within his profile page and can share them on different levels (public, private, friends only). And much better as the Media Library default behave, each document belong to his user. BuddyDrive attributes a folder to each user who upload a document.

    This is much simplier, well integrated and efficient in a members community as strugling with custom code (and potential errors and security issues).

    #237858
    aymanomar85
    Participant

    Hi @danbp

    I used costume theme and wordpress & buddypress in same directory but i still have same problem mention not working can you support me to solve this issues.

    or do you think some of this plugin do this issues ????

    #237853
    danbp
    Participant

    Hi,

    Config
    ——

    are you on a single or MS install ?
    Your php version is 5.2.17.
    Even if this version is still acceptable for a basic WP blog, i would recommend you use at least 5.3 or better, 5.4 You have many plugins, and working with a too old php is not recommended.

    Plugins
    ——–

    BuddyPress Toolbar is outdated and no more necessary, as Toolbar was slightly modified since WP 3.9 and BP 1.5

    BP Group Organizer is over 2 years too and group admin is anyway fully integrated to BP since 1.7

    About theme
    ———–
    You’re using a premium theme and we can’t assist you for this, as we have no free access to his code.

    BuddyPress Groups component is tailored for grouping members. You can show group members activities, but it’s not intended to categorize posts like you can do it on the blog.

    In other words, a group belongs to members, not to a blog category. So far by default. To get such a behave you have to code it yourself or you can use this plugin.

    #237852
    navinachettri
    Participant

    Thanks @modemlooper

    Understood those two.

    Can you help me achieve the task that I am set out to do i.e. have certain users (say depending on member types) links to external site rather than their buddypress profiles

    It seems that I need to modify bp_activity_action() to modify the links. Apparently this function is defined at bp-activity-template.php (which is not a template file). But this function seems to echo bp_get_activity_action() function taking some array of arguments. And I get lost after that….don’t know really what to do.

    I really could use your help here

    #237851
    modemlooper
    Moderator

    the file entry.php is an individual activity item.

    How to override bp templates https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/

    #237847

    In reply to: Warning of Buddypress

    rohi222
    Participant

    I haven’t got the answer of my initial query of <b>Warning</b>: strstr(): Empty needle in <b>../wp-content/plugins/buddypress/bp-core/bp-core-filters.php</b> on line <b>641</b><br />

    Please help me out with this.

    As far as the register link is concerned it looks the same as it has been shown on the demo when I activate the admin bar for non-logged in user it is having login and registration option out of which only login works and clicking on register link doesn’t have any effect.

    Svend Rugaard
    Participant

    I have now try a diffrent approach to make a clean install and use debug mode just to make sure also all the themes change i have make the last year wasnt make this error happen it give me these errors on member page with debug on :

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/www/area51.ps3geeks.dk/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
    
    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /home/www/area51.ps3geeks.dk/wp-includes/functions.php on line 3547
    
    Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /home/www/area51.ps3geeks.dk/wp-includes/functions.php on line 3547
    
    Warning: Cannot modify header information - headers already sent by (output started at /home/www/area51.ps3geeks.dk/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php:28) in /home/www/area51.ps3geeks.dk/wp-includes/pluggable.php on line 1178

    Some of them even show as “Solved” on google search but obviosly they aint solved.

    #237837

    In reply to: Warning of Buddypress

    rohi222
    Participant

    I have WP 4.1.1 running and BP to the latest version 2.2.2.1.

    Even the register link not working on the top menu bar which is being provided by buddypress.

    How can I add more links to it?

    Please help.

    Thank you.

    #237836
    danbp
    Participant

    You have to use the language file to change BP wordings.

    You said you had no result with buddypress.pot. That’s normal, as this file is not the language file, but only the catalog which contains all strings you could translate or modify to your need.

    Read here how to do this correctly

    Customizing Labels, Messages, and URLs

    danbp
    Participant
    #237828
    Mathieu Viet
    Moderator

    @aaronkin

    First ‘text-domain’ or ‘custom-domain’. When you build a plugin, to make it an “international” plugin so that it can be translated in any language, you choose a text domain. See: https://codex.wordpress.org/I18n_for_WordPress_Developers#Text_Domains

    Then Using post type activities. You were actually missing one of the functions i’ve shared in this thread. So here’s a gist that will work for the WP Job Manager plugin, you’ll have to observe, learn some WordPress/BuddyPress developing stuff (such as the Plugin API) by yourself to understand it and be able to apply for any post types.

    Svend Rugaard
    Participant

    Okay now i have try to make a complete mirror on my site it gives me this error with dedub on

    Strict Standards: Declaration of BBP_Forums_Group_Extension::display() should be compatible with BP_Group_Extension::display($group_id = NULL) in /home/www/area51.playstationforum.dk/wp-content/plugins/bbpress/includes/extend/buddypress/groups.php on line 28
    
    Notice: bbp_setup_current_user er kaldt forkert. The current user is being initialized without using $wp->init(). Se Fejlsøgning i WordPress for at finde flere oplysninger. (Denne meddelelse blev tilføjet i version 2.3). in /home/www/area51.playstationforum.dk/wp-includes/functions.php on line 3547
    
    Notice: bp_setup_current_user er kaldt forkert. The current user is being initialized without using $wp->init(). Se Fejlsøgning i WordPress for at finde flere oplysninger. (Denne meddelelse blev tilføjet i version 1.7). in /home/www/area51.playstationforum.dk/wp-includes/functions.php on line 3547
    #237814
    dwsowash
    Participant

    Yes there are about 50 register.php pages in buddypress. But I think the one you need to edit is found in this path.
    root\wp-content\plugins\buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    #237808
    shanebp
    Moderator

    ‘Activity’ is the default tab.
    If you want to remove it, you need to change the default tab.

    Change Default Members Profile Landing Tab

    define('BP_DEFAULT_COMPONENT', 'profile' );
    
    function klosurdo_remove_member_nav($nav_array) { 
    	
    	if( !is_user_logged_in() ) 
    		$nav_array = '';
    		
    	return $nav_array;
    }
    add_filter('bp_get_displayed_user_nav_activity', 'klosurdo_remove_member_nav', 15, 1 );
    #237795

    In reply to: Warning of Buddypress

    dreamdimples
    Participant

    updated buddypress today. Received the same error as above.
    I did the patch (so I thought) but ended up having to reinstall wordpress all over again.
    I deleted my database and reinstalled a saved copy. Everything is working now, except the error still appears in the menubar.

    Wordpress Version 4.1.1
    Buddypress Version 2.2.2.1
    install WordPress as a directory
    Wordpress & Plugins were working fine before the Buddypress Upgrade
    Using Customized Theme- powermag
    Operating System – linux
    errorlog: 13-Apr-2015 03:36:19 UTC] PHP Warning: strstr(): Empty needle in /…./wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 641

    #237792
    modemlooper
    Moderator

    is this site already active with users? You might need to reinstall everything fresh.

    Read this thread, its probably the same issue, has some suggestions. https://buddypress.org/support/topic/new-user-registration-problem-invalid-activation-key/

    #237782
    mecceo
    Participant

    Yes @modemlooper I deactivated everything except buddyPress and changed the theme to default

    #237781
    nblxhd
    Participant

    Kleo Theme.

    — WordPress Active Plugins

    bbPress: 2.5.6
    BP Group Organizer: 1.0.8
    BuddyPress: 2.2.1
    BuddyPress Activity Shortcode: 1.0.2
    BuddyPress Cover Photo: 1.0.5
    BuddyPress Edit Activity: 1.0.4
    BuddyPress Like: 0.2.0
    Buddypress Messages Spam Blocker: 1.1
    BuddyPress Toolbar: 1.6.0
    CodeStyling Localization: 1.99.30
    GD bbPress Attachments: 2.2
    iThemes Security: 4.6.12
    K Elements: 2.4
    NextScripts: Social Networks Auto-Poster: 3.4.16
    Paid Memberships Pro: 1.8.2.2
    Peter’s Login Redirect: 2.8.2
    Revolution Slider: 4.6.5
    rtMedia for WordPress, BuddyPress and bbPress: 3.7.35
    Social Articles: 1.8
    Taxonomy Metadata: 0.4
    WangGuard: 1.6.2
    WooCommerce: 2.3.7
    WordPress Importer: 0.6.1
    WordPress SEO: 2.0.1
    WPBakery Visual Composer: 4.4.2
    WP Super Cache: 1.4.4
    YITH WooCommerce Wishlist: 2.0.5

    PHP Version: 5.2.17
    MySQL Version: 50617
    Webserver Info: Apache/2.4.9-0-beget (Unix)

    ### End System Info ###

    #237777
    Antipole
    Participant

    @henrywright… thinking about it further, I think my best approach would be to modify the (BuddyPress) Log in: Log in/out widget so that when a non-logged in user selected Register it linked to my own page. This would leave the real Register page unaffected and available for me to include as a link on my information page.

    I have now found the widget code in the bp-core-widgets.php file. I took a copy into the bp-custom.php file, but I get the error message Fatal error: Cannot redeclare class BP_Core_Login_Widget.

    I assume this original code is not checking if it has already been loaded. Not sure how I can modify this in a way that does not get lost on a BuddyPress update.

    Can I trouble SKS for further guidance? thanks

    danbp
    Participant

    @shanebp, do we have another OMG Pizza bug here ?
    https://buddypress.org/support/topic/warning-of-buddypress/


    @djpaul
    , @imath, @hnla opinion welcome !

    #237756
    danbp
    Participant

    You said first:
    I would like to create a page for user registration and another page for editing the profile with more options.

    This is a resume of how BP already works.
    The registration page can be extended (BP xprofile component) and user can fill out these additionnal fields from within their profile page.

    Please take a look on Codex, before reinventing the wheel.

    Configure BuddyPress

    User Extended Profiles

Viewing 25 results - 13,301 through 13,325 (of 69,016 total)
Skip to toolbar