Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,051 through 10,075 (of 73,985 total)
  • Author
    Search Results
  • #268737
    webaccount
    Participant

    Hi Team,

    I want to change the layout of the user profile page according to my design.
    Below is the link to the profile page:http://www.goodmourning.co/members/alyssa311/

    But I am unable to find out which plugin file needs to be edited in order to change layout.

    I am also using BuddyPress Xprofile Custom Fields Type plugin.
    Please help me to know the exact that needs to be manipulated for changing the layout of the above URL.

    Quick response will be highly appreciated.

    tackleb0x
    Participant

    Hello,

    I would like to modify the default Member’s page to remove the “bp_member_latest_update”. Currently the page shows the list of members, not including the “Admins”. I achieved this by adding the following function to the functions.php page:

    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 = 'administrator';//change to the role to be excluded
        $user_ids =  get_users( array( 'role' => $role ,'fields'=>'ID') );
    
        $excluded = array_merge( $excluded, $user_ids );
    
        $args['exclude'] = $excluded;
    
        return $args;
    }

    The page shows the default behavior: Avatar, Name, Latest Activity (with a link that reads “view”), and the last active time.

    I would like to remove/hide the latest activity (including the word “view”) from the list altogether. Any ideas on how I could achieve this? Perhaps with a snippet to add to the functions.php file?

    I have the following installed:
    BuddyPress – 2.9.1
    WordPress – 4.8.2
    Theme – Buddy (child)

    I appreciate any help in advance!

    #268733
    Callib Carver
    Participant

    Hi,

    We’ver recently launched our site, http://www.theknightsrequiem.com. Our site usses both buddypress and bbpress. We are having an issue with cover photos being uploaded to users profiles.

    When you try to upload the photo, you get a progress bar, like you would see any other time. However it never appears, you just receive the message
    “For better results, make sure to upload an image that is larger than 0px wide, and 225px tall.”

    Again no image is actually uploaded or displayed. However, we can upload user profile photos.

    We are running WordPress 4.8.2
    Our theme is Game Addict by Skywarrior
    Potential plugins that could be affecting this, Buddypress itself, bbpress.

    Thank you for your time and help.

    #268726

    I can recommend the WooCommerce WooMembers bundle – allows you to limit access to the site and take monthly subscription payments: https://woocommerce.com/products/woomembers-bundle/

    It mostly works with BuddyPress (in that you can limit access to most pages and bbPress forum posts) but they do have work to do to make it fully protect a BP install, but it is on their radar.

    Hope that helps

    #268725
    willallen83
    Participant

    I struggled with this for weeks. It never worked out well for me.
    I used the Register Helper add-on plugin to add custom fields to the PMPro registration. I tried the above mentioned fixes, but nothing I tried let the PMPro registration process communicate with the BuddyPress (basically, I wanted one registration page to fill out the BuddyPress profile AND the necissary PMPro info).
    Whichever way I tried it, they remained seperate. Of course, the PMPro registration process did add the user to BuddyPress, but with an empty profile, regardless of the custom fields that I added.

    FINALLY, after MANY hours of working with this, I tried s2Member. This plugin is much more involved to configure, BUT it works perfectly AND integrates well with MailChimp. So now, I not only have integration with BuddyPress (specifically the profile, although the display is a bit off), but also with Mailchimp. And, this means that I can have different mail-lists or mail-list groups within Mailchimp! Perfect 🙂

    Basically, what I am saying is that if you want a better integration, go with s2Member.

    Note: I did not pay the $300 / year for paid membership pro support (too expensive for me), maybe they would have been able to help me resolve this issue. I did scour the forum and glean every bit of info I could to solve this without paying, but to no avail. BUT, with s2Member, it is free AND only $80 one time for the Pro version of the plugin.

    Good luck!

    And, if anyone sees this and has a solution, please add. As people (I assume because I was) are still looking for a solution.

    #268719
    amitrwt
    Participant

    I want to set a profile field where a user will list his experience in a particular organization. From and To.. I tried Date -> Range but it just renders single dropdown. The best possible scenario would be having a datepicker with range.?
    I’ve installed BuddyPress Xprofile Custom Fields Type but even this doesn’t have a range date picker.
    Anyone has any suggestion/solution would be appreciated.

    #268715
    khappamj
    Participant

    Hi everybody another problem when i try to edit some buddypress template files.
    I just copied the file register.php from

    original directory
    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php

    to
    /wp-content/themes/my-child-theme/buddypress/members/register.php

    and it still reading the original file. What should i do?

    #268714
    lovelylifevines
    Participant

    Hey Guys, i have tried installing buddypress plugin for my website http://www.lovelylifevines.com through wordpress cms and showing an unknown error. Will post screenshot on the same.

    #268713
    otty-dev
    Participant

    1) Can someone help me with the code needed to remove these bullet points from the Buddypress Menu? Can I put the code in a plugin like custom css?

    bullet points

    2) also, my default page setting has a sidebar, but I want the Buddypress pages all to be full-width. How can I change that?

    BuddyPress version 2.9.1 & WordPress version 4.8.2

    steverusso66
    Participant

    Hi, I’m trying to keep one or more WP basic roles, specifically editor and author.. out of my Buddypress community but still allow them to use other WP functionality like publishing posts, etc.

    In this case scenario, I’m using BP for the main population of users, and Ultimate Member for another category of users who are insulated from the BP community but have a profile that can be viewed by all. UM profiles are celebrities who are present in the site with a profile created through the UM registration system and mainly write blog posts. BP profiles are people who interact with each other and use mainly the BP functionality, no blogging.

    Its all working so far but I just haven’t figured out how to get the UM “celebrity” members out of the BP directories, including the alphabetical directory. When the UM member registers, there’s also a BP profile created for him. These should not be available to BP users, only the UM one so I need a way to filter them out completely.

    Another big question I have is how to restrict Buddypress pages, directories, groups etc. I’m using Groups by Itthinx for most of my membership functionality.

    Thanks for any help anyone can provide.

    #268708
    johnsimoneau
    Participant

    Here is more specific details. Ignore the $200 if it requires more then 2 hrs of work…

    Buddypress Custom Queries to Feed Justified Image Grid Plugin

    #268704
    roseashm
    Participant

    I ask this again because I am running WP482 on my site & I have also downloaded Super Socializer because I thought I had to as I had only a startup WP at that time & thought I would need Super Socializer to connect however it has made my job so much harder & longer.
    I now am asking if I really need it, I would rather be spending the time with BuddyPress installation/themes etc as long as the connect is ok without it and can be done with your support.
    My site is http://www.thecrystalgateway.org and also wondering if the theme can be expanded into BuddyPress? that I have now.
    I am a Beginner but giving it a go, I appreciate any advice you could give me, Kind Regards Roseashm

    #268697

    In reply to: Lost all bbpress roles

    shanebp
    Moderator

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

    #268691
    thinkinginxyz
    Participant

    Hello,

    I am new with buddypress, I am trying to create a social network to share info about 3d printers. I am looking for the way to automatically create the structure of a group and its forum, when this is created by the user.

    Please could any one help me?

    I wanted to create wikis in each groups, but i couldnt find any solution. So i was thinking at least to create a forum topics and sub-topics automatically when any user create a new group.

    I hope you can help me guys.

    Thanks in advance
    Ting

    #268689
    valuser
    Participant

    hi,

    try putting the po annd mo files into wp-content/languages/plugins/

    please have a look at

    A Good Explanation

    #268687
    khappamj
    Participant

    problem found and it was in the “Analitycs” plugin so,
    there is another analitycs plugin which works properly with Yoast SEO and Buddypress?

    #268685
    khappamj
    Participant

    Members can edit and use every pages of their BuddyPress account,
    as Admin i cant get access to BuddyPress pages, I have full access to the entire site but all BuddyPress pages are BLANK only for Admin.
    No error nothing than nothing but BLANK pages!

    Why?

    #268680
    harveyando
    Participant

    Can anyone recommend how to achieve a site such as http://www.tutora.co.uk and http://www.tutorhunt.com using wordpress/buddypress?

    We want to have a home page, about etc but then a search page where users can search for tutors based on subject level and location.

    Tutors can sign up and create a profile with these custom fields.

    They can then private message each other and agree to work together.

    Upon acceptance, the user can then purchase the tutors details – payment made to our site.

    I was looking at buddypress for the profile and private messaging – is this possible?

    What about the payment and search functionality – does anyone have any recommendations on how to achieve this?

    #268679
    mattadin
    Participant

    @kendude

    I ended up using Paid Membership Pro and BuddyPress. However, if you’re only semi-passionate about your idea, or don’t have much time to build your site, I would reconsider your attempt. A very basic site without much customization would be relatively simple, but to build anything that is appealing at the front end and provides a simple user experience is far from it. In addition to the two plugins above, I’ve had to add BP Redirect To Profile, Theme My Login, Disable User Login, Remove Dashboard Access, Restrict User Access, SiteOrigin CSS, SiteOrigin Widgets Bundle and WP Maintenance Mode just to name a few.

    Then there is getting all plugins to operate happily with each other, which for me has included communicating with WP support to re-establish my sites VaultPress connection, believed to have been broken by PMPro, preventing the traditional BP/WP Login which would allow members to join without paying and much more.

    I don’t want to deter you from trying, but if you’re still relatively new to WP and coding, you’ll need to be prepared to invest A LOT of hours.

    #268676
    manm0untain
    Participant

    Hi

    we have a mildly busy Buddypress community, we are receiving from 50 to 100 registrations per day.

    We are having some problems with users registering and confirming their email as working. Then, going on to use the various activity features like, comment etc. Then the users email hits a problem such as full inbox or whatever. That then sends a bounced mail back to us for every action that user takes.

    I can find no way to flag user emails as dead in the system. The only thing I can think to do is to delete that user, I don’t really want to upset our users like that.

    Does anyone have experience or know what the best practices are for dealing with bounced user emails? If anyone can point me in the right direction I would really appreciate it thanks.

    #268675
    nspeedrace
    Participant

    Hi,

    I’ve been looking for a few chat options that are compatible with BuddyPress. Pretty much, I want my users to be able to communicate with each other through a live chat and for those chats to be indexed in the message component of buddy press.

    I’ve tried WordPress, BuddyPress Users Chat Plugin but it is riddled with very bad code and security vulnerabilities.

    Anyone have other options…I’ve seen some online but they cost upwards of $200.

    I’m even thinking of developing a solution myself.

    #268674
    sarkku
    Participant

    Hi

    Private messages in BuddyPress should be in my opinion, private.
    As a site admin I can see everyone’s private messages.

    How can I turn this off?
    I do not want to see other people’s private messages.

    Is this really something that should be visible to site admins in the first place?

    Checked and no registered users nor users with no admin rights cannot see private messages. Only visible with admin rights.

    WP-version: 4.8.2–fi
    BuddyPress Version: 2.9.1
    Theme used: Kleo
    site: https://eurosinkut.net

    Thank you in advance for your support.

    Br,
    Sarkku

    #268672
    David Cavins
    Keymaster

    BuddyPress uses a theme compatibility layer, meaning it uses its own templates that are designed to drop into any theme. You can overload all kinds of template parts for BuddyPress:

    Template Hierarchy

    However, there are plugins (I’ve not tested) that you could maybe get to work if you have two themes in mind: https://wordpress.org/plugins/jonradio-multiple-themes/

    Best,

    -David

    #268670
    David Cavins
    Keymaster

    There’s no way to do that via shortcode as far as I know, but lots of ways to do it via theme. You could apply a page template to the “members” page to modify what is output. You could also overload the template at /buddypress/members/single/home. Read more about the template hierarchy:

    Template Hierarchy

    David Cavins
    Keymaster

    This is the codex article I was thinking of:

    Modifying the Registration Form

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