Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,701 through 5,725 (of 68,948 total)
  • Author
    Search Results
  • #279338
    Jacob_26
    Participant

    Yes, I did that, but I can’t find a buddypress related error, just other messages

    #279322
    Prashant Singh
    Participant

    Can you please check if there is a page called activate in your pages list and also it is assigned to activate page setting in BuddyPress?

    Thanks

    #279307
    shanebp
    Moderator

    You don’t say which template pack you’re using… Depending on which you’re using:
    Find this file:
    buddypress\bp-templates\bp-legacy\buddypress\activity\index.php
    Or this one:
    buddypress\bp-templates\bp-nouveau\buddypress\activity\index.php

    Then find this code:

    	<?php if ( is_user_logged_in() ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>

    And change it to:

    	<?php if ( is_super_admin( get_current_user_id() ) ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>

    Rather than make the changes to the BP templates, use a template overload instead.

    #279279
    inderpreet2018
    Participant

    Yes, I am using “New User approve” plugin, as I am using “Memberpress” plugin to maintain registrations.

    How I approve new users from buddypress?

    #279276
    tsortore
    Participant

    RESOLVED: I was trying not to, but reinstalling BuddyPress fixed the issue.

    I appreciate the help,

    Tony

    #279275
    tsortore
    Participant

    Here is my theme and a list of plugins, most of which came with the premium theme. There have been no complaints I’ve found of the groups not working “out-of-the-box” with this theme.

    *** These were the only plugins that did NOT come with the theme.

    Theme: WOffice
    Active Plugins:

    • Akismet Anti-spam
    • All in one WP Migration
    • BP xProfile Location ***
    • BuddyPress
    • Buddypress Xprofile Fields Custom Css Classes ***
    • DP Pro Event Calendar
    • Eonet Live Notifications
    • File Away
    • GamiPress
    • LocateAnything ***
    • Slider Revolution
    • Unyson
    • User Role Editor ***(suggested and tested compatible plugin)
    • Wise Chat
    • WP ERP
    • WP ERP – PDF Invoice
    • WP Bakery Page Builder

    Still no luck getting group creation working.

    Thanks for your response! Any ideas?

    #279254
    Prashant Singh
    Participant

    Hi,

    BuddyPress never lists pending and denied members. Are you using any other system to verify them?

    Thanks

    mutoha
    Participant

    Regarding the matter of the “compatible with nouveau”,
    Do you think that “BuddyPress Follow(1.2.2)” will be available if you change any of the “BuddyPress(3.2.0) with nouveau”?

    I am in trouble because I can not use it even if I change the next file.

    bp-nouveau > buddypress > activity > entry.php
    bp-nouveau > buddypress > activity > activity-loop.php

    Would you please give me a hint?

    Thanks.

    Prashant Singh
    Participant

    I always focus on the updated plugin so try to Use the latest “BuddyPress(3.2.0)” with “legacy”. And also please recommend to devs to make it compatible with nouveau.

    Thanks

    #279234
    Prashant Singh
    Participant

    Hi,

    You can check this https://buddypress.org/support/topic/hiding-profile-tabs-i-e-messages-based-on-user-role/ and use bp_core_remove_subnav_item.

    Thanks

    #279229
    Prashant Singh
    Participant

    Hi,

    Please replace the previous code with this code if you want a tab and not the previous one:

    function ps_profile_forum_creation() {
    	if(current_user_can('moderate')){
    		global $bp;
          	bp_core_new_subnav_item( array( 
                'name' => 'Create Forum', 
                'slug' => 'create-forum', 
                'screen_function' => 'ps_create_forum_screen', 
                'position' => 200,
                'parent_url'      => bp_loggedin_user_domain() . '/forums/',
                'parent_slug'     => 'forums',
                'default_subnav_slug' => 'create-forum'
          	) );
    	}
    }
    add_action( 'bp_setup_nav', 'ps_profile_forum_creation' );
     
     
    function ps_create_forum_screen() {
        add_action( 'bp_template_content', 'ps_create_forum_screen_content' );
        bp_core_load_template( 'buddypress/members/single/plugins' );
    }
    
    function ps_create_forum_screen_content() {
        echo do_shortcode('[bbp-forum-form]');
    }

    Hopefully, it will help you.
    Thanks

    #279228

    In reply to: Wrong count shows

    Prashant Singh
    Participant

    Hi Inderpreet,

    Try repairing the count from Tools->BuddyPress, if it does not fix the issue then it seems like your members have not yet logged-in on the site. As soon as they all will log in on the site the count will be fixed. Because BuddyPress shows the count of the active members(at least they logged in once).

    Thanks

    #279207
    Viktor Szépe
    Participant

    https://buddypress.trac.wordpress.org/ticket/6527#comment:4 settles this.

    You should check is_404() at template_redirect priority 11 the earliest.

    mutoha
    Participant

    Can you please teach me.

    Which do you prefer: A or B?

    A:Use the latest “BuddyPress(3.2.0)” with “legacy”
    B:Use the old “BuddyPress(2.9.4)” with “nouveau”

    Thanks.

    mutoha
    Participant

    Hi,

    You just said it!
    The most up-to-date version compatible with “BuddyPress Follow(1.2.2)” was “BuddyPress(2.9.4)”.
    But, as you say, using “legacy” also matches “BuddyPress(3.2.0)”.
    So, What is “legacy”? What is the difference with “nouveau”?
    Where is the explanation?

    Thanks.

    #279191
    Prashant Singh
    Participant

    Hi,

    The article has mentioned everything there. Please take a backup before doing so. The theme depends on your need, compare the features and buy one. Kleo, BuddyBoss is one of the best BuddyPress themes.

    Thanks

    #279190
    kampo
    Participant

    Thanks a lot. Is it a secure way to implement two themes?
    Other question, which theme do you advice to work best for BuddyPress?
    Thanks again

    #279186
    binaryfabric
    Participant

    @Hugo64 Dose the Buddypress Upload Avatar Ajax plugin work with BP 3.0+

    #279177
    Prashant Singh
    Participant

    Hi,

    Instead of the plugin, have you checked in your active theme? This might be there as well if you have BuddyPress based theme.

    #279160
    Prashant Singh
    Participant
    Prashant Singh
    Participant

    Hi,

    Please try with the legacy template pack and in terms of version if it is not compatible with the latest version then please request in plugin’s support forum to make it compatible. Try any version of BuddyPress less than 3.0 to check the compatibility.

    Thanks

    #279153
    Prashant Singh
    Participant

    Hi,

    Please install https://wordpress.org/plugins/loco-translate/ plugin and then go to plugins menu of this plugin’s setting and find BuddyPress there and there you need to search this string and translate.

    Thanks

    #279146

    In reply to: Dequeue bp-nouveau css

    John
    Participant

    Ah, I had it in functions.php just moved it into bp-custom.php and it worked!

    Still getting used to remembering to put buddypress stuff in bp-custom.php rather than functions.php.

    Thanks 🙂

    John

    #279139
    John
    Participant

    I want to dequeue, or override, the bp-nouveau stylesheet. I have tried:

    function dequeue_buddypress() {
    	if (!is_admin()) {
    		wp_dequeue_style('bp-nouveau');
            wp_deregister_style('bp-nouveau');
    	}
    }
    add_action('wp_enqueue_scripts', 'dequeue_buddypress', 1);

    Have also played with priorities from 1 to 99 and tried the handle bp-nouveau-css.

    as well as trying to override the css in the theme but neither has worked.

    Anyone know how I can get the bp-nouveau css to dequeue?

    #279127

    In reply to: BuddyPress redirect

    Brajesh Singh
    Participant

    Hi,

    If you are referring to this plugin

    BuddyPress Redirect to Profile

    I am the author and I can assure that it works with BuddyPress 3.2

    The plugin is just a few lines of code and it does not need any change. That’s why it has not been updated. I will push a change in readme.

    Also, if you need the code, Here is the complete code for the plugin
    https://github.com/sbrajesh/bp-redirect-to-profile/blob/master/bp-redirect-to-profile.php

    Regards
    BRajesh

Viewing 25 results - 5,701 through 5,725 (of 68,948 total)
Skip to toolbar