Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 726 through 750 (of 20,260 total)
  • Author
    Search Results
  • #304482
    andhi1
    Participant

    I have erliar started a thread in this forum about that i can’t crop profile images.

    See video:
    https://www.screencast.com/t/rR5a2J7mH8Lr
     
    After a while I found an answer in the forum that solved the problem. My problem now is that I can’t find the answer in the forum. After a computer crash, I desperately need to find the answer to that problem again. I just needed to change a setting in my page’s admin backend, but it is impossible for me to find the setting.
    Please, can anyone help me?

    Best regards
    Anders Hidman
    Sweden

    Venutius
    Moderator

    This indicates you are using wordpress.com, we don’t offer support for that here, they have their own support forums and that specific error would need to be raised wit them.

    #304418
    Venutius
    Moderator

    This is straying off topic, could you open a thread on the plugins wordpress support forum please? I’m sure you’ll get a way better service there.

    #304317

    In reply to: Creating groups

    andhi1
    Participant

    This is what WordPress support say:

    Here is the lik you need:

    It may be an issue with your theme not including that feature. I would maybe contact BuddyPress with that link to the forum post and ask them to clarify the exact issue.

    #304287

    In reply to: Forum menu

    Venutius
    Moderator

    You would create a page called forums and bbPress will automatically populate this with your forums.

    #304260
    andhi1
    Participant

    I have bbPress instaled, but kan not from frontend create forum posts, and the forum posts I have created in bac end do not show up

    #304229
    shanebp
    Moderator

    These are the support forums for BuddyPress.
    You have a better chance of getting an answer if you use the support forum for Buddypress Group Email Subscription .

    #304225
    shanebp
    Moderator

    If you are good with html, css and php, you can overload BP themes and make changes.

    afaik, you can do the same with bbPress templates for forums, but you should ask on their support forums.

    #304224
    brunov99
    Participant

    @shanebp
    Thank you very much.
    As I thought, single install is best.
    Then how can I have different look for different forums eg chess, cooking, sports, dance, travel… and group pages ?
    bV

    #304223
    shanebp
    Moderator

    The plugin you mention should do the job.
    But these are not the support forums for that plugin.
    You should ask your question on the support forum for that plugin:
    https://wordpress.org/support/plugin/bp-activity-filter/

    claramovision
    Participant

    Hello there 🙂

    I would like to change what is shown per default in the sitewide activity stream. I only want to show new posts, new topics and new replies in forums.

    I already installed the plugin “BuddyPress Activity Filter” and tried to hide all things like new friendships, new profile picture and so on. But it still shows everything on the activity page.

    Any idea, what the problem is and how I could change it?

    Thanks a lot!

    #304215
    prasadd1989
    Participant

    Hello,

    I am working on one of my website, using buddy press installed on localhost with wordpress latest version 5.1.1, but the register page of the buddy press is not working, after submitting sign up form nothing happens, and redirects to home page. I am troubleshooting and searching the solution in the forum too. But didn’t get any fix.
    I have tried new fresh installation of wordpress with buddy press installation, no other plugin activated instead of buddypress and the twenty seventeen theme activated, but still facing same issue.

    Please help me with the solution.

    Thanks in advance.

    #303959
    shanebp
    Moderator

    These are the BuddyPress forums.
    The bbpress forums are here.

    #303925
    Venutius
    Moderator

    Glad you got it working. I can probably do something for @mentions, might not give the same level of control but I’ll look into it.

    But could you post your comments over on the plugins wordpress forum? best keep this forum for BP related issues.

    #303898
    shanebp
    Moderator

    These forums are for questions about BuddyPress.
    For questions about other plugins, such as wooCommerce and WC Vendors, please use their support forums. This thread is off-topic and closed.

    #303858
    hcportos
    Participant

    Hi.
    One more issue here (hopefully the last one)
    When I post a message to activity stream, everything is OK.
    But when I try to delete my own post (admin acc), I recieve 404 page and post or comment is not deleted.
    You can try here https://wikidiy.org

    I dont have any error in console…
    Tried to find something similar on this forum but…

    BuddyPress 4.2.0
    Wordpress 5.1.1

    #303797
    Venutius
    Moderator

    This sounds like a great feature to add to my plugin https://wordpress.org/plugins/bp-messaging-control/ might take be a couple of weeks though. Why not raise a thread in my support forum and we can discuss how it would work?

    Venutius
    Moderator

    Here’s how to remove forums from all users profile tabs and toolbar menu, this code would need to go in your child-themes functions.php:

    function venutius_remove_forums_on_usermenu() {
    global $wp_admin_bar;
    
    	if ( bp_use_wp_admin_bar() ) {
    		$wp_admin_bar->remove_node( 'my-account-forums' );
    	}
    
    }
    add_action( 'wp_before_admin_bar_render', 'venutius_remove_forums_on_usermenu' );
    
    function venutius_remove_profile_forums_tab() {
    
    	bp_core_remove_nav_item( 'forums' );
    
    }
    add_action( 'bp_actions', 'venutius_remove_profile_forums_tab' );
    #303729
    shanebp
    Moderator

    Please do not double post. Your duplicate post has been deleted.

    Please use the support forums for rtMedia for questions and issues re their plugin.

    #303686
    inderpreet2018
    Participant

    Hi,

    I added the code to exclude denied and pending users from member directory, listing and forum count. It works fine 2 days before. But now it’s not.
    2019-03-19_1051
    2019-03-19_1055

    Total memebers are 122 but it shows 119. Even I run the repair tool.

    Here is my code
    ///// Remove pending/denied users from the member directory////////
    add_filter( ‘bp_after_has_members_parse_args’, ‘buddydev_exclude_users_by_role’ );
    function buddydev_exclude_users_by_role( $args ) {
    // do not exclude in admin.
    if ( is_admin() && ! defined( ‘DOING_AJAX’ ) ) {
    return $args;
    }

    $excluded = isset( $args[‘exclude’] ) ? $args[‘exclude’] : array();
    if ( ! is_array( $excluded ) ) {
    $excluded = explode( ‘,’, $excluded );
    }

    $role = ‘subscriber’;// change to the role to be excluded.
    $user_ids = get_users(array( ‘role’ => $role, ‘fields’ => ‘ID’, ‘meta_query’ => array(‘relation’ => ‘OR’, array(‘key’ => ‘pw_user_status’, ‘value’ => ‘pending’), array(‘key’ => ‘pw_user_status’, ‘value’ => ‘denied’)) ) );

    $excluded = array_merge( $excluded, $user_ids );
    $args[‘exclude’] = $excluded;

    return $args;
    }

    /********** Excluded ADmin and pending/denied users from members listing page ***************/
    function exclude_total_users($count){

    $role = ‘subscriber’;// change to the role to be excluded.
    $user_ids = get_users(array( ‘role’ => $role, ‘fields’ => ‘ID’, ‘meta_query’ => array(‘relation’ => ‘OR’, array(‘key’ => ‘pw_user_status’, ‘value’ => ‘pending’), array(‘key’ => ‘pw_user_status’, ‘value’ => ‘denied’)) ) );

    $user_excluded = count($user_ids);

    return ($count – $user_excluded – 1);
    }
    add_filter(‘bp_get_total_member_count’,’exclude_total_users’);

    /******* Exclude pending/denied and admin users from forum stats ***********/

    function exclude_users_forum($user_count){

    $role = ‘subscriber’;// change to the role to be excluded.
    $user_ids = get_users(array( ‘role’ => $role, ‘fields’ => ‘ID’, ‘meta_query’ => array(‘relation’ => ‘OR’, array(‘key’ => ‘pw_user_status’, ‘value’ => ‘pending’), array(‘key’ => ‘pw_user_status’, ‘value’ => ‘denied’)) ) );

    $user_excluded = count($user_ids);

    return ($user_count – $user_excluded – 1);
    }
    add_filter(‘bbp_get_total_users’,’exclude_users_forum’);
    /*******************/

    Can you help me to sort it out, what is the issue??

    Thanks in advance.

    #303685
    chris19731973
    Participant

    {RESOLVED} : How to REMOVE “This field can be seen by:” ?

    In the folder of the Theme, add the code below at the end of the file called style.css :
    For me in Localhost : C:\xampp\htdocs\buddypressdivi2\wp-content\themes\Divi\Style.css

    .field-visibility-settings-toggle{display:none!important;}

    In Users/Profile Fields of WP-Admin, set the fields like below :
    Visibility = Everyone
    and Allow members to override

    For information, the visibility of “This field can be seen by: All Members/Everyone/…” will be removed in both the Registration page & Edit Profile page … except for the fields (Required) Name …

    It’s my first time on this BP Forum, please how to add “RESOLVED” ?
    Thank you …

    #303684
    chris19731973
    Participant

    It’s my first time on this BP Forum, please how to add “RESOLVED” ?

    #303568
    shanebp
    Moderator

    Try switching momentarily to a WP theme like 2019 and see if the issue persists.
    If not, then the issue is in your custom theme and beyond the scope of these forums.

    #303517
    Venutius
    Moderator

    you might be better off asking this question in https://bbpress.org/forums/ BuddyPress does not provide the forums it uses, it just integrates with bbPress. As far as I’m aware any forum labelled as hidden will not show up in a search and you’d probably need to create a custom search to achieve this.

    #303514
    Venutius
    Moderator

    Hi there,

    It’s not clear from the text exactly what you are looking for but it sounds like you’d need to do some customisation. For a lot of BP functions you only need to be a site members to perform a task and you’d therefore need to work out exactly what you’d like to restrict and then write the code for it. There are some plugins that do aspects of what you are looking for, for example https://wordpress.org/plugins/buddypress-restrict-group-creation/ will prevent standard users from creating groups and I’m currently working on a plugin to restrict messaging for users. For bbPress forums you could set the new user role to Spectator to prevent the creation of topics and replies but I think what you are looking for is probably ore granular than this and so will probably need custom code to deliver your vision.

Viewing 25 results - 726 through 750 (of 20,260 total)
Skip to toolbar