Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,151 through 18,175 (of 69,106 total)
  • Author
    Search Results
  • #175228
    Matt McFarland
    Participant

    Forgot to add, a theme could also be causing a conflict. So if just bp and bp_x don’t play nice with everything else disabled, then try a default theme (default buddypress or wp 2012 for example)

    #175227
    Matt McFarland
    Participant

    The best way to troubleshoot this issue, is to disable all of the plugins, then turn on buddypress, then secondly turn on buddypress extended profiles.

    If just bp and bp extended work fine, then the problem is another plugin is not playing nice with buddypress or bp extended.

    You can then just turn one plugin on at a time until the error occurs. Once you find the faulty plugin, then you can isolate exactly which plugins are not playing nice with buddypress(or vice versa)

    The only thing you can do after that, is figure out where the conflict is. Doing that, requires programming knowledge.

    #175226
    Matt McFarland
    Participant

    Before re-installing WordPress, you should crack open phpmyadmin, go to wp_options, and clear out your plugins field. this will disable buddypress, and should re-open your site. then you can fix what you did 🙂

    #175225
    Matt McFarland
    Participant

    Hi there,

    Did you try creating a blank page called “Community Lounge”, then going to the buddypress settings dashboard, and selecting that blank page you just made for the activity stream?

    If it’s still spitting out “Sitewide Activity” – then here’s what you can do:

    THE LONG WAY:
    Step 1: create a blank folder in your theme called “buddypress”
    Step 2: copy all the files over from wp-content/plugins/templates/bp-legacy/ to your new buddypress folder.
    Step 3: jump to your new buddypress folder. go to yourtheme/buddypress/activity/index.php and you should see something like “<h3><?php _e( ‘Sitewide Activity’, ‘buddypress’ ); ?></h3>”
    Step 4: change it 🙂

    The SHORT WAY:

    Hacking time! Right click on Sitewide activity, and use your inspector in chrome or firefox, what ID or class is it? set that to display: none, then throw in your own title above that via html.

    You can probably do this using some filter or action hook, but I dont know much about those.

    #175223
    Cassey’s Designs
    Participant

    Hi Chris,

    Sadly, I believe that you will have to uninstall buddypress in order to access your dashboard to correct the problem. If you can locate the setting in the buddypress files then you can adjust it there and upload that via ftp or your cpanel file manager, but uninstalling and re-installing will be much faster. (Assuming that any major changes you have made have been via a child theme.)

    Essentially you told the site that everyone that goes to the login page needs to activate their account therefore no one can login because no one is activated, that is the best way I can think to explain it.

    The only time new users will be asked for an activation key is if they attempt to activate their without using the link from their email before logging in.

    For example: You register a new account and then go to the activation page before checking your email, here you will be asked to provide the activation key. If you attempt to login before activating you should get a message “ERROR: Your account has not been activated. Check your email for the activation link.”

    However, if you register a new account and then go to the email you provided you will have received an email to activate your account. Once you click the link in this email you will be able to login to the account (the email link contains the activation key). This system is to ensure that the user has registered with a valid email that they have access to.

    Hope this helps,
    Cassey

    #175214
    ride2719
    Participant

    OOPS… My last post was INCORRECT (there doesn’t seem to be a way to delete posts). I thought it was working to use a required xProfile field, but it just took longer to get going. The spam registrations started up again and I had to disable registrations.

    SO, I’m still looking for help on how to diagnose the problem, or a work around for fixing it.

    Can I re-install BuddyPress and/or bbPress without losing my settings?

    Thanks, Rick.

    #175208
    Hugo Ashmore
    Participant

    @mayur-hotkar please now stick to this one thread.

    As I mentioned in this response, there is a need to read the stickies so you know what information to provide and how to run basic troubleshooting to establish where problems broadly lie.

    https://buddypress.org/support/topic/avtar/

    You need to perform some basic steps to establish – again as I mentioned – whether the avatar issue is a server permissions issue rather than application issue.

    You need to check whether you can correctly upload media to the WP library or whether attempting to throws a error, if it throws an error then likely your server isn’t allowing files to be written to directories, if that all works as expected, then you need to look to plugins and/or custom themes causing the problem, to check this enable a theme known to work with BP e.g twentythirteen, if avatars work then you have an issue with the theme, if they don’t start disabling any plugins that aren’t required for normal BP operation.

    As for ‘Personal Chat’ that sounds like a third party plugin? We can’t really support plugin issues and in respect of this we don’t really have sufficient detail to guess at a possible reason, although JS is a likely culprit,, but changing themes and disabling plugins should establish that for you.

    #175207
    Cassey’s Designs
    Participant

    Hi,

    I am not sure about how many users buddypress can handle, I doubt they have any built in restrictions. You will need to find out your host limitations rather than the plugins.

    To switch your menu options you will need to add the following php function to your child-theme’s function.php file…

    function bbg_change_profile_tab_order() {
    global $bp;

    $bp->bp_nav[‘profile’][‘position’] = 60;
    $bp->bp_nav[‘activity’][‘position’] = 50;
    $bp->bp_nav[‘friends’][‘position’] = 40;
    $bp->bp_nav[‘groups’][‘position’] = 30;
    $bp->bp_nav[‘settings’][‘position’] = 10;
    $bp->bp_nav[‘forum’][‘position’] = 20;
    }
    add_action(‘bp_setup_nav’, ‘bbg_change_profile_tab_order’, 999 );
    ?>

    *Note : The increments of 10 determine the position order of the menu item. The higher numbers are to the left and read lowering to the right.

    Hope this helps 🙂

    #175204
    Hugo Ashmore
    Participant

    @mayur-hotkar you now have three threads running on the same question, please don’t open multiple threads, I’m closing this one in favour of the duplicate, I shall also close the one I responded on as I assume you digested that and ran a few tests to establish where the issue lies and read the forum stickies

    https://buddypress.org/support/topic/avtar/

    #175190
    Shmoo
    Participant

    its better to use social button plugin

    No it’s not..

    This is a great Tutorial, thumbs up for giving this nice piece of code.
    Social Media Button Plugins often stack a lot of scripting in your website. Lots of JavaScript and a other junk you’re not looking for while WordPress + BuddyPress is already pretty heavy because of all features.

    This Tutorial is clean and very basic, it does what most people need, just simple links from their BuddyPress profile to the users Social Media pages.

    #175189
    Shmoo
    Participant

    I think it’s too complex for a Plugin because this is too specific to your needs , plugins are great when they serve lots of people. But you could alter the layouts if you know how the template structure in WordPress and BuddyPress works.

    Give each page it’s own custom Activity-loop template and you should be able to make whatever view you want on each page that shows an Activity.
    By default each page uses only one ( the default ) activity-loop template to create the activity content. But if you like you can duplicate those files and customize them for each page. Just duplicated the needed files and rename them to something like this: activity-groups-loop.php or activity-members-loop.php than make sure at the groups page the loop to the activity doesn’t load the default activity templates but your custom ( duplicated ) files.

    I really love how easy this works in WordPress and BuddyPress not a lot of CMS software have this easy to use template structure and logic.

    The only real problem I found with this is that the Activity-contents are made by very dynamic code – it’s very difficult to alter the items that will be shown at the page such as time, name, avatar , activity-title and the real content compared to other BuddyPress pages.

    I’ve made a Trac. Ticket for BuddyPress 2.0 , so lets hope somebody very smart could change the code a bit and we can really alter our Activity contents too.
    https://buddypress.trac.wordpress.org/ticket/5261

    #175186
    faishal
    Participant

    @andriusl magnific-popup is updated in latest buddypress-media plugin. Please update it to version 3.2.12

    #175173

    In reply to: Child Theme

    @mercime
    Participant

    Should I try to create a BP child theme? That is, copy default and save with different name within plugin folder?


    @gparrott
    The bad news: “In BuddyPress 1.9, we begin the process of phasing out the BuddyPress Default theme” per http://bpdevel.wordpress.com/2013/11/13/the-future-of-the-bp-default-theme/ So I strongly recommend for future compatiblity that you do not waste your time creating a child theme for the BP Default theme.

    The good news: Since BP 1.7 and the introduction of theme compatibility, BuddyPress has worked seamlessly with nearly all WP themes so check out the many choices available at https://wordpress.org/themes/

    #175172
    Tecca
    Participant

    Does this plugin require the friend connections to function? If not, you can just disable the setting in your Admin CP. Settings -> BuddyPress -> untick “Friend Connections” in the Components tab.

    #175155
    ride2719
    Participant

    OK, here’s a followup on my trying to find the source of the automated registrations.

    — I disabled bbPress on the network plugins page.
    — I renamed the following directories:
    wp-content/plugins/bbpress
    wp-content/plugins/buddypress/bp-forums
    wp-content/plugins/gd-bbpress-attachments
    — enable registrations from the network admin settings

    And… the automatic registrations CONTINUE.

    — disable registrations (network admin) and the automatic reg stops

    SO, it’s beginning to look like it is not bbPress. PLEASE ADVISE:

    • Do you agree? Or is there some other possibility that will implicate bbPress?
    • What other possibilities are there for by-passing registration protocols?
    #175154
    2b.simone
    Participant

    hi,
    maybe you can find a solution here

    Activity Loop

    i had this
    <?php if ( bp_has_activities( bp_ajax_querystring( ‘activity’ ) ) ) : ?>
    in …/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/activity-loop.php

    i changed this way
    <?php if ( bp_has_activities( bp_ajax_querystring( ‘object=status’ ) ) ) : ?>

    it works!

    sorry for my bad english

    bye

    #175148
    faishal
    Participant

    @andriusl you can report this issue on BuddyPress-media (rtmedia) support form -> here

    Regarding magnific, we will update it to latest version which is (0.9.9) in next week release. You can track this issue -> here

    #175135
    aces
    Participant
    #175121
    noizeburger
    Participant

    Hi again, @henrywright-1

    just wanted to let you know, that I’ve requested some help from the developer of BP Custom xprofile Fields – donmik

    I asked him, if it is possible, to use a custom xprofile field (selectbox) to choose the user role and pass it over to wordpress. He gave me this function or – you can say – hint:

    function custom_bp_core_signup_user($user_id) {
        $user_role = strtolower(xprofile_get_field_data('NAME OF THE XPROFILE FIELD', $user_id));
        switch($user_role) {
            case "role 1":
                $new_role = 'Contributor';
                break;
            case "role 2":
                $new_role = 'Author';
                break;
            default:
            case "role 3":
                $new_role = 'Suscriber';
                break;
        }
        wp_update_user(array(
            'ID' => $user_id,
            'role' => $new_role
        ));
    }
    add_action( 'bp_core_signup_user', 'custom_bp_core_signup_user', 10, 1);

    I put this code in my bp-custom.php, but it does not work. I think there’s something missing. Maybe you have an idea, or @modemlooper?

    #175118
    johnnymestizo
    Participant

    It looks like bbpress migrates the old group forums and indexing an empty shell forum for each old group forum.

    Then it adds a correct version to each buddypress group…

    Not sure if that was meant to happen or not.

    I will work with that. If anyone else has issues please let me know.


    @johnnymestizo

    #175117
    johnnymestizo
    Participant
    #175103
    applegateian
    Participant

    Sorry guys, turns out this was in my functions.php extending the search functionality (Single Search page for all buddypress components)

    Apologies.

    #175102
    Stefan S
    Participant

    Its solved. I had a plug-in that did overide the translation that I did in the core function php file in buddypress.

    The plugin. Now deleted. 😀
    https://wordpress.org/plugins/rs-buddypress-activity-refresh/

    #175093
    modemlooper
    Moderator
    #175088
    neelesh7
    Participant

    Hi @modemlooper. Thanks for your reply. Yip. I created it in the backend but it doesn’t show up on the registration page. I also disabled all buddypress related plugins and then buddypress and deleted and re-installed but the settings remained.

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