Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,676 through 10,700 (of 73,985 total)
  • Author
    Search Results
  • #266925
    xavi3r12
    Participant

    Hello, I have been using buddyPress Version 2.7.4. After updating to version 2.8.2, I get this error Fatal error: Call to undefined function bp_is_front_page() in ……/wp-content/plugins/bp-custom.php on line 17 here is my code in the bp-custom.php `<?php
    // hacks and mods will go here
    /* Redirects to profile upon login */
    add_action(‘login_form’, ‘redirect_after_login’);
    function redirect_after_login()
    {
    global $redirect_to;
    if (!isset($_GET[‘redirect_to’]))
    {
    $redirect_to = get_option(‘activity’);
    // sample-page = your page name after site_url
    } }

    function bp_help_redirect_to_profile(){
    global $bp;

    if( is_user_logged_in() && bp_is_front_page() )
    bp_core_redirect( get_option(‘home’) . ‘/members/’ . bp_core_get_username( bp_loggedin_user_id() ) . ‘/activity’ );

    }

    add_action( ‘get_header’, ‘bp_help_redirect_to_profile’,1);

    add_action(‘wp_logout’,’go_home’);
    function go_home(){
    wp_redirect( home_url() );
    exit();
    }

    add_action( ‘bp_complete_signup’, ‘buddydev_redirect_after_signup’ );

    function buddydev_redirect_after_signup() {

    $page = wp_redirect( get_option(‘siteurl’) . ‘/profile’ );

    bp_core_redirect( site_url( $page ) );
    }

    ?>` Help me what has happened and how can I correct this Error?

    #266916
    namtv
    Participant

    Hello. I have a BuddyPress page https://namtv.ru/users/ leave comment – how can they be removed? Waiting for Your reply. Sincerely, richat.

    #266914
    slimmyweight
    Participant

    Hi I have just watched a tutorial on setting up buddypress

    I have it working but however I can’t seem to find the answer to this either.

    On my admin profile – settings – profile visibility

    How can I change this so only members can see it for other members accounts and is it possible for me to set my own account (the admin account) to private so no one else can see it.

    Thanks

    Mwale Kalenga
    Participant

    Please help!
    My site is https://www.databoy.space/
    I am using buddypress and my groups directory page is https://www.databoy.space/classrooms/
    The Problem is that users can’t perform actions like joing groups or adding friends. My diagnosis is that this because they aren’t allowed to access admin-ajax.php. I am not sure.
    I have tried adding this code in htaccess file:

    # Allow access to wp-admin/admin-ajax.php
    <Files admin-ajax.php>
        Order allow,deny
        Allow from all
        Satisfy any
    </Files>

    But it hasn’t helped. Please have a look and advise. I will appreciate all suggestions. If you want to login here is demo login credentials:

    Username: Jessica
    Password: IAMFAKE001ab
    Login url: https://www.databoy.space/login/

    Thanks for reading

    #266905
    MSoliman
    Participant

    hello there , i’m using a plugin named “buddypress job manager” to integrate buddypress with wp job manager .. the concept of the plugin is showing the wp job manager tap in the user profile where he can post jobs .. what i’m trying to do is using groups to post jobs instead of the member profile , i can already make a new tap for wp job manager in the group page , but what i don’t know how to achieve is to post with the group name , instead of the admin “current user” display name .
    any help would be highly appreciated, thanks in advance

    Techknowledgic
    Participant

    Hello

    I have installed BuddyPress with BBpress today and I am facing an issue which is my category links are being redirected automatically to the forums section.

    here is my site http://www.muninsider.com if you click on “news” for example it is redirecting to the news section in the forums even though the news section in the menu is a category that has posts in it.

    anyone can help me please?

    #266897
    Amibe Websites
    Participant

    WordPress 4.8, BuddyPress 2.8.2
    Network activated on 2nd Network of multisite sub-domain install using BP Multi Network 1.0.1

    Problem: emails not being sent.

    Server does not provide SMTP – using SparkPost or WP Mail SMTP as alternative. Other emails are being sent fine, such as Lost password email and a Contact form.

    Via Log Emails I can see the email is being generated and logged, just not sent.

    What I’ve tried with no success:

    1. Disabled caching
    2. Repaired emails
    3. Reduced entire email template (single-bp-email.php) to “Hello”
    4. Tried with Twenty Sixteen theme
    5. Tried on primary network
    6. Checked for errors in the log file
    7. Stripped down BuddyPress so only the two core components are activated
    8. Tearing my hair out
    9. Sleeping on it, breathing, taking a break

    What more can I do to find out why the emails are not sent…

    ma3ry
    Participant

    I installed Multisite Shared Menus and all works well on main domain and six of my seven sub-domains, but on my Dating Service, when a logged in member clicks on “Members” we get a list of about 20 lines of the same warning as follows:

    Warning: in_array() expects parameter 2 to be array, null given in /plugins/buddypress/bp-core/bp-core-filters.php on line 199

    I am using WP 4.8, BP 2.8.2, GeneratePress Child Theme, but the issue is also there using Twenty-Sixteen

    I have deleted BP and reinstalled but it didn’t help. Can you give me some idea of how I might fix this problem please.

    #266886
    chinatownlee
    Participant

    I did it myself, used the code found in: Using BuddyPress Cover Images inside the Member and Group Loops

    There is an error, though, in the code provided for the members part:

    bp_get_member_id(), should be bp_get_member_user_id(),

    #266885
    jaydeeptrivedi92
    Participant

    On our website . I am using BuddyPress version 2.8.2 and am using the xProfile fields addon as well. There are several field groups as well as some regular and xProfile fields. For some of the users on our website, the profile data added is getting deleted later at some point. Could you please help us out?

    #266884
    bambidotexe
    Participant

    Hello,

    I would like to show the members list in private group to users who do not belong to the said group.
    I was thinking i had to change access and visibility of the nav items so i did that:

    function change_access_group_nav_tabs() {
      if(bp_is_group()) {
        buddypress()->groups->nav->edit_nav( array('visibility' => 'public'), 'members', bp_current_item() );
        buddypress()->groups->nav->edit_nav( array('access' => 'anyone'), 'members', bp_current_item() );
      }
    }
    add_action( 'bp_actions', 'change_access_group_nav_tabs' );

    But it didnt work…

    Any suggestion how to proceed?

    Thanks in advance 🙂

    cinto2009
    Participant

    BuddyPress private/public message custom fields – messages not getting outer mails such as gmail.

    #266874
    imthinking
    Participant

    Today, with nothing changing or updating on our site the buddy press login window started conflicting with mod security by making the system thinking its attacking the server.

    Here is the log file:[Thu Jul 06 21:33:11.121851 2017] [:error] [pid 154425:tid 140301400565504] [client 68.109.14.158] ModSecurity: Access denied with code 406 (phase 2). Operator GE matched 1 at TX:brute. [file “/etc/apache2/conf.d/imh-modsec/40_wordpress.conf”] [line “27”] [id “13052”] [msg “POST to wp-login.php without redirect_to”] [severity “WARNING”] [tag “WEB_ATTACK/SHELL ACCESS”] [hostname “imaginationfoundry.com”] [uri “/wp-login.php”] [unique_id “WV7k15TLd2QCsB7B20pwjQAABwM”]

    My host is not able to help me, Inmotionhosting.com.

    Any ideas as now no one is able to login where they know to login. You can log into the system just fine at the wp url of php-login.php etc. so its the buddypress login window.

    ??? Thanks.

    #266873
    marc7137
    Participant

    i have an issue with my buddypress plugin.
    when enabled no content on my site loads it will only display the title and nav menu.
    i have disabled all plugins and only activated buddy press and it still does this.

    assal0le
    Participant

    Wordpress version: 4.8
    Buddypress version: 2.8.2

    assal0le
    Participant

    As in the example here:

    Post Types Activities

    I can add only one my custom post type. When I add another one by copying tho whole code as the first one, also I change the custom post name into my second custom name then it turn error.

    please help me?
    thanks

    #266869
    MSoliman
    Participant

    hello there , is there a way to allow the current group administrator to add more administrators from the front-end .. does buddypress include such feature , and if not , do you know any plugin doing help in that ?
    thanks in advance

    yabai31
    Participant

    hello,

    i’m using wordpress version 4.8, buddypress version 2.8.2 on this website: pokerenthusiastnetwork.com

    i’m experiencing a problem with the buddypress login widget. it shows two fields to fill in info; one labeled ‘username’ and one labeled ‘password.’ if i type them in, i get a failed log in. however, if instead of typing my username i type my email in the username field, i can log in without problem

    needless to say, this would be very confusing for a user. is there a way to either amend the username field to say ’email address’ or to make it work with either email or username?

    #266861
    lalitavalon
    Participant

    Hello,

    issue has been fixed
    refer this lonk

    Hiding Users on BuddyPress based site

    #266860
    lalitavalon
    Participant

    Hello,

    I install the buddypress plugin in my wordpress when I open all members page like http://www.xyz.com/members It shows all the members that are registred in the wordpress I want to show specific role type members in this page.

    Please help me what we can do for the same.

    it is very urgent please help me

    #266856
    abraham2748
    Participant

    I want to build a network of users of two types: nomral user and company user. Each one with different fields and data. The idea is that normal users can easily search and find company users and be able to contact them.
    Thank you.

    PD: Every company user has an exact location. Can you integrate google maps for this?

    block
    Participant

    Along with BuddyPress, I have bbPress installed. On a user’s wall, there is a forums menu item.
    When I click that, the topics started by the user appears. However, I don’t see any links there to start a topic nor links to the forums that are available. Same thing for the Forums menu from the dropdown menu when the user hovers over his user name in the page header. In that dropdown menu, when the user places the mouse cursor over the Forums menu link, four options appear, “Topics started, replies created, favorite topics, and subscribed topics.” How can I get a link for “Start a topic” or for the forum index? By the way, I’m not using the default “forums” page for my forum index page because I wanted additional text added before the list of forums. Thanks.

    johnskennedy
    Participant

    Hi all,

    So i have buddypress and bbpress installed and fully integrated. When I go in to a members profile and select the forum button it only shows 3 of topics created and 3 of replies created that the member made. How can i get this to show all of the topics and replies created, and also the same for favorites?

    On top of that I have 8 forums and I would like to filter 1 of them from this list. Is that possible, and if so how can i got about it?

    Also in the profile it does not show the number of topics/replies/favorites on the button like it does for friends, following etc. How can i get it to display a number comprised of topics+replies, preferably with the above filter applied?

    Thanks

    johnriggs78
    Participant

    Hello Shirleyddsn,

    If you have still problem you can try WordPress Lock for BuddyPress , I faced same problem for my personal blog, But now i am happy :).

    #266845
    Humiges
    Participant

    WOW!
    I can’t possibly express how grateful I’m!
    I have been looking for this for ages… this issue is one of the most illogical thing of otherwise quite awesome BuddyPress!

    Thank you SOOOOOO much :)))

Viewing 25 results - 10,676 through 10,700 (of 73,985 total)
Skip to toolbar