Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,951 through 3,975 (of 69,016 total)
  • Author
    Search Results
  • #309966
    Prashant Singh
    Participant

    Hi,

    Please check this: https://wordpress.stackexchange.com/questions/6664/how-to-auto-accept-a-friend-request-in-buddypress-based-on-user-meta

    Please remove the condition of is_user_expert and check after that. You should try this on the dev/staging version of your site and if it works for you then you can use it on your live site.

    For members addition in a group automatically, please check this one https://buddypress.org/support/topic/how-to-add-new-members-to-groups-automatically/

    Hope it will help you.

    #309959
    shanebp
    Moderator

    Nicename is not a BuddyPress field.
    It is a field in the WP users table.
    You need to use a WP function like:
    https://codex.wordpress.org/Function_Reference/get_userdata

    shanebp
    Moderator

    In wp-admin, go to Settings > BuddyPress > Pages and assign a page to Register.
    If you need to, create a blank page with the title ‘Register’.

    #309956

    In reply to: Spam via messages.

    jobcareercritic
    Participant

    i have a spam problem in my forums section and Wordfence, which i have installed, suggested my problem maybe this. their words:
    “You will need to ask the BuddyPress plugin authors for current best recommendations if they are recommending very outdated information on their support page to prevent spam registrations.”
    is this true and if so what is the solution? how do i stop this spam?
    ​

    #309954
    patilkavya
    Participant

    Hi,

    Is it possible to extract each employee created data via Buddypress cron Job into email format automatically? The goal is to save a copy of each of these types of items – Posts / Comments / Articles / Likes and push everything into a journaled mailbox.

    Is it possible to set up a cron job to run once a day??

    As this matter is urgent, I look forward to hearing from you as soon as possible.

    Thank you.

    ricardo231190
    Participant

    Hello guys,

    First of all I’m new to wordpress and can’t code yet so I use plugins and themes. I’m having trouble after deleting the Ultimate member plugin because now I can’t register users at all (it used to work before). I now just want to add members with the regular buddypress but BP asks me in which page the users are “registering” and that page does not exist I think… How can I make the users register without using any plugins apart from BP (user registration is enabled in Settings > General). I just want the normal registration with BP to work (so I can add the profile) and can’t seem to make it work. I have to make a “registering” page or something? How can I do that without plugins?

    Thank you in advance

    WP version is 5.3.2, BP version is 5.1.2 and page is http://www.languageslearningclub.com

    #309941
    Beardy
    Participant

    Hi

    I have a clean installation of Buddypress and WordPress (only) with Twenty Twelve theme.

    When a user publishes a (standard non-cpt) post and selects an featured image, the image does not appear in the activity feed.

    It does however, appear if I go back to the post, make an edit and then save again. If I do this, and refresh the activity the page, the featured image appears.

    Is there a fix or something I need to configure so that the feed shows the featured image once the post is published the first time?

    #309940
    andrewpiana
    Participant

    heavily requested features by BuddyPress users was the ability to add Repeater Fields or Repeater groups of fields dynamically to BuddyPress Profile, without having a predefined number
    Official Site

    #309936

    In reply to: BuddyPress 5.1.2

    yemajose
    Participant

    Hi,


    @imath
    I have this version of Buddypress installed and I keep getting this error message. “There was a problem cropping the group profile photo” when I try cropping/uploading group avatar image. Please help. Thanks

    #309932

    In reply to: Buddypress widgets!

    Carsten
    Participant

    Hi Renato.
    Thanks for replying. Sorry for not responding. Lets just say, that I have been elsewhere. 🙂 No luck with any plugin on wordpress.
    However, I found this snippet and it works very well. If you deactivate the Friends Connections in Buddypress. But I would really like to have this feature. So maybe you know someone. Who can locate the issue and fix it. That would be a great help.
    Best regards Carsten.

    //Widget Filter:
    —————————————————————————————————-
    class BP_Custom_User_Ids {

    private $custom_ids = array();

    public function __construct() {

    $this->custom_ids = $this->get_custom_ids();

    add_action( ‘bp_pre_user_query_construct’, array( $this, ‘custom_members_query’ ), 1, 1 );
    add_filter( ‘bp_get_total_member_count’, array( $this, ‘custom_members_count’ ), 1, 1 );

    }

    private function get_custom_ids() {
    global $wpdb;

    // figure out if the logged-in user is man or woman
    // CHANGE FIELD id “3” BELOW
    $gender = xprofile_get_field_data( 3, bp_loggedin_user_id() );

    if ( $gender == ‘Man’ )
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Woman'”;
    else
    // CHANGE FIELD id “3” BELOW
    $query = “SELECT user_id FROM {$wpdb->prefix}bp_xprofile_data WHERE field_id = 3 AND value = ‘Man'”;

    $custom_ids = $wpdb->get_col( $query );

    return $custom_ids;
    }

    function custom_members_query( $query_array ) {

    $query_array->query_vars[‘include’] = $this->custom_ids;

    }

    function custom_members_count ( $count ) {

    $new_count = count( $this->custom_ids );
    return $new_count;

    }
    }

    function custom_user_ids( ) {

    // Don’t do this for the admin
    if(!current_user_can(‘administrator’) ) {
    new BP_Custom_User_Ids ();
    }

    }

    // WORKS FOR DIRECTORY NOT WIDGETS
    // add_action( ‘bp_before_directory_members’, ‘custom_user_ids’ );

    // EITHER OF THESE WORKS FOR WIDGETS BUT NOT DIRESCTORY
    //add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );
    // add_action( ‘bp_pre_user_query_construct’, ‘custom_user_ids’ );
    add_action( ‘bp_pre_user_query’, ‘custom_user_ids’ );

    —————————————————————————————————-

    samtime
    Participant

    Hey Thomei,
    I found this article super-helpful to make the BuddyPress Display Name the same as the user’s username when they register: https://buddydev.com/buddypress-better-registration-part-1-remove-full-name-confirm-password-from-buddypress-registration/

    It doesn’t solve all the problems you mentioned, but can make the registration process much cleaner, as it only asks for one username on sign up.

    Hope it helps,
    Sam

    samtime
    Participant

    Hi, I have discovered that bbPress forum moderators can access another user’s BuddyPress Email & Password page by going to URL/members/USERNAME/settings/ revealing the user’s email address.

    How can we block access to this page to protect user’s privacy?

    Thank you, Sam

    WordPress 5.3.2
    bbPress 2.6.3
    BuddyPress 5.1.2

    shanebp
    Moderator

    The error should indicate the file that made the call to bp_loggedinuser_link()
    bp_loggedinuser_link() is deprecated.

    The proper function is bp_loggedin_user_link()

    bp_loggedinuser_link

    sanderthijs
    Participant

    After logging in the site crashes due to a Fatal error: Uncaught Error: Call to undefined function bp_loggedinuser_link()
    However I am able to reach my WP backend.

    The Buddypress plugin is installed on my wordpress backend.
    Can someone explain where this bp_loggedinuser_links() is located and how I can check if the whright path is being accessed when this function is called.

    The page I need help with: https://inspirathors.proeverijthijs.nl/

    bibblybob
    Participant

    Completely agree with your post. It’s 2020 now, and there should be the functionality to at least make the display name optional. In searching the annals for answers, I see questions going back to 2013 asking for this because users were getting confused with usernames / display names. It would be great to have something like Reddit, where just a username / email is required. Despite this frustration, massive thanks to those working on BuddyPress.

    Guy Hubert
    Participant

    After changing Template Pack from “BuddyPress New” to BuddyPress Heritage” in BuddyPress/Options Settings, it works well now …

    Any problems known with “BuddyPress New” Template Pack ?

    Guy

    #309897
    mrbiggboss
    Participant

    HI there

    I’m busy making a website for the hood that gives them to register, login and interact with a nother. We even have a forum and other options. But now i want to create a better and cleaner profile page. But when i want to create it, i havent got the elements in my divi builder, just like woocommerce. So how can i make the profile page a better look?

    Thnq so much for help

    #309886
    shanebp
    Moderator

    This works, in wp-config.php or bp-custom.php,
    define( 'BP_GROUPS_DEFAULT_EXTENSION', 'forum' );

    #309883
    danielafer
    Participant

    hello how can I do so that the url that is created when installing buddypress is not indexed. For example, I do not want links to user profiles, groups and some other sections to be indexed. Can someone help me please?

    reelscene
    Participant

    Hi guys

    I have the Aardvark theme which comes bundled with Paid Memberships Pro and BuddyPress/bbPress.
    WP version 5.3.2, BP version 5.1.2
    I’ve set the site so any non logged-in user goes to a set page, the site is essentially private.

    For some reason, the activity feed on the homepage wall only shows activities when logged in as admin. Any other user gets the message “Sorry, there was no activity found. Please try a different filter.” If they post a status, it’s visible when posted and goes into the database, but refreshing the homepage leads to an empty wall again.

    I’ve only made one recommended tweak to the child theme – redirecting non-logged in users to a “public page”. I can provide the admin login if that helps.

    function my_template_redirect_require_membership_access() {
    if(!is_admin()){
    if ( function_exists( 'pmpro_has_membership_access' ) && ! pmpro_has_membership_access() ) {
    wp_redirect( pmpro_url( 'levels' ) );
    exit;
    }
    }
    }
    
    add_action( 'template_redirect', 'my_template_redirect_require_membership_access' );

    ​​As I don’t know where the problem lies I’m not sure what settings to show you. I’ve tried disabling all of the additional plugins I’ve installed to no avail. Here are the plugins I have installed:

    Aardvark Plugin

    bbP private groups
    This plugin adds private groups to the forums, allocating users to groups, and combinations of forums to those groups, creating multiple closed forums.

    bbPress
    bbPress is forum software with a twist from the creators of WordPress.

    bbPress Notify (No-Spam)
    Sends email notifications upon topic/reply creation, as long as it’s not flagged as spam. If you like this plugin, help share the trust and rate it!

    BP Profile Search

    BuddyPress

    BuddyPress Xprofile Custom Field Types

    Classic Editor

    Coming Soon Page, Under Construction & Maintenance Mode by SeedProd

    Contact Form 7

    Elementor

    Envato Market

    Events Manager

    GD bbPress Attachments

    LayerSlider WP

    Paid Memberships Pro

    Paid Memberships Pro – bbPress Add On

    Paid Memberships Pro – BuddyPress Add On

    Paid Memberships Pro – Mailchimp Add On

    Passster
    Plugin to password-protect portions of a Page or Post.

    Responsive for WPBakery Page Builder

    rtMedia for WordPress, BuddyPress and bbPress

    Sensei Certificates

    Sensei LMS

    Smash Balloon Instagram Feed
    Display beautifully clean, customizable, and responsive Instagram feeds.

    Smush
    Reduce image file sizes, improve performance and boost your SEO using the free WPMU DEV WordPress Smush API.

    Theia Sticky Sidebar

    Transcoder

    Ultimate Reviewer

    UpdraftPlus – Backup/Restore
    Backup and restore: take backups locally, or backup to Amazon S3, Dropbox, Google Drive, Rackspace, (S)FTP, WebDAV & email, on automatic schedules.

    WooCommerce

    Wordfence Security

    Wordfence Security – Anti-virus, Firewall and Malware Scan

    WordPress Popular Posts

    WP Google Review Slider
    Allows you to easily display your Google Places business reviews in your Posts, Pages, and Widget areas!

    WP-Live Chat by 3CX
    The easiest to use website live chat plugin. Let your visitors chat with you and increase sales conversion rates with WP-Live Chat by 3CX.

    WPBakery Page Builder

    Youzer

    I can send a link to a zip file of the settings of the various membership and theme plugins if that helps.

    I understand the issue could be complex but I’m a PHP developer, so if you know of some places I can look in the code or starting points for investigation that would be really helpful 🙂

    Cheers

    #309880
    evillizard
    Participant

    It’s the best wordpress plugin imho …

    If not for buddypress i don’t think i would be using wordpress

    And with people like @sbrajesh who assisted me when i was totally clueless.. The Dude is practically a legend… And il’d forever be grateful to him, We Need more people like that on earth


    Because buddypress is open-source i don’t think people who use it would let it go that easy .. I support open-source because i believe knowledge should be distributed freely for quick advancement of the human race as a whole.

    Danny Santoro
    Participant

    Hi there,

    What I’m looking to do is to add the dynamic BuddyPress profile URL in a page, so for example:

    “Thanks for registering! Head over to your profile to get started.”

    Where “your profile” is the link like https://example.com/members/john-doe/

    Is this something that can be done with the core plugin that I’m missing, or would I need some code to make it happen?

    Thank you!

    #309871
    sebe6
    Participant

    Problem solved, if anyone is in the same case :
    Buddypress store image in uploads/avatars/{user_id}
    It select avatar based on the last updated image

    You can find my work around there :
    https://stackoverflow.com/questions/59828308/change-bp-avatar-through-wp-rest-api/59857943#59857943

    #309870
    tekNorah
    Participant

    I am experiencing this same issue. So, I created a ticket on trac here: https://buddypress.trac.wordpress.org/ticket/8218#ticket

    ziridian
    Participant

    Hi,

    I assigned different topics on Forums (bbpress) and arranged its heirarchy.

    However when I added groups, there was an option to add forums to groups. I ticked add forums to groups. I thought the forums added via groups will only be viewable in : groups.

    When I checked my forums, the ones on top are already the group names. The forum topics I created are already on the bottom part.

    1. May I please ask how the group forums can be automatically assigned to the last part of the forums so the forum heirarchy I assigned will remain the same? When there are members who’ll add groups, the layout won’t be messed up since the groups (forums assigned by group) will just be placed on the lower part.

    Or

    2. How do I remove the portion in Groups where the group creator can add forums? This is so the members won’t be able to add their group forums on the forums I originally created (only when #1 doesn’t work).

    Thanks.

Viewing 25 results - 3,951 through 3,975 (of 69,016 total)
Skip to toolbar