Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,851 through 7,875 (of 69,109 total)
  • Author
    Search Results
  • PinkishHue
    Participant

    Thanks for sharing this link, very helpful 🙂

    It’s perhaps been discussed before but it seems like this should be a default feature for Buddypress/bbpress, including notifications for subscribed forums AND topics within the alert.

    I need this function for new replies on topics and unfortunately this plugin doesn’t do that.

    I will keep looking.

    #267661
    dhsllc
    Participant

    I think you are referring to the message that appears after the registration page is submitted. If so, it’s not a different page or something you can turn-off anywhere (as far as I know). The message appears on register.php.

    To modify it, you’ll want to make a copy of it, edit it then add it to your child theme: mytheme/buddypress/members/register.php

    #267660
    dhsllc
    Participant

    I didn’t have a big problem with the look of the registration but the little cosmetic changes I made with handled with CSS. However, the message that appeared after the form was submitted, that needed work.

    To customize it, I made a copy of register.php, modified the section where the message appeared and added this new directory in my child theme > mytheme/buddypress/members/register.php

    Looks much better now. Hope this helps.

    Try this plugin. It hasn’t been updated for 2 years, but it works perfectly for me.

    BuddyPress Admin Only Profile Fields

    Adds these options to the visibility options: ‘Admin’, ‘Everyone (Admin Editable)’ and ‘Only Me (Admin Editable)’

    Hope that helps

    #267654
    awpt
    Participant

    anyone solved this problem? When I get the css file from buddypress plugin to the css folder in my theme it doesnt show it too.It saves the cover image because when I remove the file I can see it but the problem is when i make changes on the css file I can also see the changes.

    Is there any required php file to integrate it in the correct mode?

    A screensho from my theme the black background is from just a css command not an image.
    https://s2.postimg.org/f8lwj34o9/Schermata_2017-08-22_alle_10.37.16.png

    #267646

    In reply to: url > permalink

    shanebp
    Moderator

    This is the BuddyPress support site.
    Try asking on the bbPress support site.

    #267623

    In reply to: Custom Code

    Abdullah Al Mamun
    Participant

    @peter-hamilton Im using BuddyPress Xprofile Custom Fields Type plugin too.

    #267622

    In reply to: Custom Code

    Abdullah Al Mamun
    Participant

    buddypress – bp-templates – bp-legacy – buddypress – members – single – settings.php?

    Here inside i added:

    <div class=”item-list-tabs no-ajax” id=”subnav” aria-label=”<?php esc_attr_e( ‘Member secondary navigation’, ‘buddypress’ ); ?>” role=”navigation”>

      <?php if ( bp_core_can_edit_settings() ) : ?>

      <?php bp_get_options_nav(); ?>
      link text
      <?php endif; ?>

    </div>

    But its not working.

    #267621

    In reply to: Custom Code

    peter-hamilton
    Participant

    1. You could use the template for buddypress – members – single – settings
    Here you could add a link inside the navigation div, right after the call to get-options-nav

    This should be in your buddypress folder in your child theme.

    2. I do not know

    #267617
    peter-hamilton
    Participant

    Very impressive work @m_uysl and good to know that Buddypress can scale to such a userbase, albeit with lots of serverpower available.

    Henry Wright
    Moderator

    You can add items to the activity stream using bp_activity_add().

    See here https://codex.buddypress.org/developer/function-examples/bp_activity_add/

    #267596

    As far as I know, there’s no way to do that with BuddyPress’ built-in tools.

    However, it is possible with plugins such as the one you identified.

    I had a similar requirement and ended up doing it by utilising BP’s Member Types functionality (which require a plugin or custom code to set up), a plugin called BuddyPress Xprofile Member Type Field to map that to an xprofile field (so that the user can change it herself… it was the easiest way I found to add that to the user’s profile, although there might be a better way), all tied together with custom code to patch in to the xprofile_updated_profile action to check what the change is and then use the groups_accept_invite() and groups_remove_member() functions to change the membership accordingly.

    I know that’s not very detailed, but due to lots of other functionality, such as adding to email lists, my code ended up being quite complex, so it’s not possible to paste it here.

    Hope that helps

    #267591
    khappamj
    Participant

    Hi man , the Buddypress version i use is 2.9.0 and this problem is about every images. Its working but the cropping image tool is very very small, just 1×1 or 2×2 pixels, so its unusable for users.
    I dont think the issue is about images,
    so what can i do?

    #267587
    r-a-y
    Keymaster

    What version of BuddyPress are you using?

    Can you upload the avatar that you wanted to use somewhere so we can test?

    Henry Wright
    Moderator

    Hi @gyrus

    You can de-queue BuddyPress styles like @r-a-y suggested in that thread (see #202777). This won’t break anything functionality wise although, of course, it will change your theme’s look and feel because all of the styling information will be gone.

    #267534
    webizone
    Participant

    Hi, I realize this is an old thread. However, I thought of posting my solution, just in case someone finds it helpful. (tried posting it three times.., it just disappears from here)

    Solution:

    1. Copy the the contents of the bp-templates/bp-legacy/buddypress/members/register.php into the new registration page template

    2. At this point, the registration form will show up, but nothing will happen when we submit the form.

    3. To solve that, we need to add a custom function to the “bp_screen” hook. In the custom function, we will paste the contents of the “bp_core_screen_signup” function. (located in bp-members/bp-members-screens.php)

    4. Then, in our custom function, we will remove this

    if ( ! bp_is_current_component( 'register' ) || bp_current_action() )
    
    		return;

    and put this

    if ( !is_page( 'your-page-slug' ) || bp_current_action() )
            
            return;

    5. Next, we’ll remove these lines
    bp_core_load_template( apply_filters( 'bp_core_template_register', array( 'register', 'registration/register' ) ) );
    It will work now.
    Here is the pastebin of the custom function created in bp-custom.php

    #267527
    Henry Wright
    Moderator

    Hi @franckw

    This is a question you should ask WC Vendor Pro. BuddyPress doesn’t handle reviewing.

    r-a-y
    Keymaster

    bbPress handles its integration into BuddyPress, not the other way around.

    You should look into what it would take in bbPress to alter the slugs for BuddyPress groups. I don’t believe this is possible at the moment from what I remember though.

    You might want to check out the bbPress forums as well:
    https://bbpress.org/forums/

    #267515
    Henry Wright
    Moderator

    Hey @udarmo

    Thanks for the report. Can you open a Trac ticket for this so it can be investigated?

    https://buddypress.trac.wordpress.org/

    ygagnon2016
    Participant

    I like your idea about calling a function from the php for the modal window.

    Just FYI .. this is what I have set up for colorbox (which isn’t a real ajax call, you’ll see):

    echo '<a class="ajax cboxElement launch-dashboard" href="' . get_stylesheet_directory_uri() . '/buddypress/members/single/dashboard.php?username=' . $row->username . '" title="Dashboard">Launch Dashboard</a>';

    If you aren’t familiar with how colorbox works … note that the modal window is being enabled by simply adding the “ajax” class to the link … similar to how a lightbox popup works.

    Ideally .. it’d be great if I didn’t have to call these 2 lines in my dashboard.php file either:

    require("../../../../../../wp-blog-header.php");
    require('../../../../../../wp-load.php'); 

    It’s my understanding that this is a terrible approach anyways .. since the WordPress engine is supposed to be already loaded in the background (making it redundant).

    So how would I implement something like what you’ve suggested? Could you show me an example, maybe? I’m assuming that if I don’t load the WordPress engine in my dashboard.php file, that I wouldn’t be able to call a function that’s been added to my functions.php file, right?

    Here’s a dumb question. Should I maybe just place my dashboard.php file in a different location within my child theme directory structure, perhaps? I ask because I’m starting to think that I might need to treat this as a normal WordPress template file .. instead of a standalone PHP script. Any thoughts?

    vgvidscom
    Participant

    Dear R-A-Y,

    Thank you for the support, appreciate it, and sorry I did not check google myself to find out you need to create bp-custom.php in case it does not exist yet.

    It seems there is a conflict with my theme after extra review of my theme builders’ team.

    Once they update the theme it hopefully works with the updated wordpress and buddypress. If I need your help afterwards, I will send a new request.

    Only issue left is that I don’t know why the lines of coding don’t match in my buddypress version, I never changed code in the core buddypress files.

    Thanks for the support,

    Bart

    VGVIDS

    #267500
    r-a-y
    Keymaster

    You’ll want to see a very similar thread to yours:

    Template modification not shown on website

    r-a-y
    Keymaster

    You can check the “Users > Pending Accounts” page in the WordPress admin dashboard. Then, you should be able to just delete them from there.

    It might be worthwhile for BuddyPress to have a built-in script that removes pending accounts that are older than a month or so.

    Also, just to get some clarity, would inactive users be causing BuddyPress to slow down all functions on my website, such as loading a member profile, or the activity page?

    Not really.

    If you indeed do have a popular website with many users that are concurrently logged in and performing operations, then this will slow down your site. You will need to utilize object caching plugins and the like (I believe WPEngine already has something built in for this). You might also need to consider upgrading your WPEngine plan.

    We’re also thinking of doing some performance enhancements in the next version of BuddyPress that will decrease the amount of code that needs to run on non-BuddyPress pages.

    jaykdoe
    Participant

    Also, just to get some clarity, would inactive users be causing BuddyPress to slow down all functions on my website, such as loading a member profile, or the activity page? Because the entire site loads incredibly slow on every page, until I disable buddypress. Then it seems to function well.

Viewing 25 results - 7,851 through 7,875 (of 69,109 total)
Skip to toolbar