Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 8,951 through 8,975 (of 68,916 total)
  • Author
    Search Results
  • Kishores
    Participant
    #259622
    Venutius
    Moderator

    Try logging out and then viewing them from the frontend, they don’t display if you are already logged in, though I thought they just took you to the homepage.

    Failing that I would try deactivating all plugins apart from BuddyPress to see if there is a conflict.

    IF that does not help try changing the theme to 2015.

    #259620
    Venutius
    Moderator

    It’s easiest if you enable New Users to Register before you activate BuddyPress for the first time, it then creates these pages automatically.

    However if you installed BuddyPress and then enabled new users to register then you have to set these pages up yourself, it’s pretty easy, you go to Dashboard>>Pages>>Add New and create two pages, one called “Register” and the other called “Activate”.

    Then you go to Dashboard>>Settings>>BuddyPress and click on the Pages option, from here you can associate the BuddyPress Activate and Register Items with the pages you just set up.

    FYI, I am setting up a BuddyPress Blog and have just published an article on setting up BuddyPress for the first time, you may find it useful.

    BuddyPress User

    I’m going to follow up with testing and configuring your BP site pretty soon.

    #259617
    Slava Abakumov
    Moderator

    Better to prevent spam users to register at all. There are a lot of plugins, that help with it.
    I use WP-SpamShield successfully on a BuddyPress site.

    #259613
    Slava Abakumov
    Moderator

    Can BuddyPress send all other emails? Like new message, groups changes etc?
    So, is the email with activation link the only email, that is not sent by BuddyPress?

    Slava Abakumov
    Moderator

    Here is related Codex page.
    You will need to change in your template something like this:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>

    to this:

    <?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) . '&per_page=10' ) ) : ?>

    Check your theme /buddypress/activity/activity-loop.php file. If you don’t have it, just copy this file (preserving directories structure) from
    /wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/activity/activity-loop.php

    #259610

    In reply to: Login Keeps Admin

    Slava Abakumov
    Moderator

    That’s definitely not a BuddyPress issue.
    Make sure that you don’t have some “security” plugin activated, that might prevent the usual login process.

    Slava Abakumov
    Moderator

    AFAIK, installing BuddyPress on a subdomain of WordPress MultiSite won’t give you BP widgets (and other content) on a main site, thus you won’t be able easily (without coding) display BuddyPress content on any site in the network, excerpt the BP-site.
    So BuddyPress content will be available only on site where you activated BuddyPress.

    I hope I’ve answered your question.

    #259608
    Venutius
    Moderator

    I’ve been told that BP does not work that way and has never worked that way, however when I first set up the site that’s exactly how it worked. I tried your suggestion, unfortunately that did not work.

    I was also told to copy my three column layout file from the theme to /themes/buddypress.php but this did not work either.

    #259606
    Slava Abakumov
    Moderator

    So bp.example.com is the subdomain, that you use for BuddyPress. Does it have separate WordPress installation (not related to example.com)?
    Is WordPress on your example.com MultiSite or ordinary?

    #259603
    Slava Abakumov
    Moderator

    You definitely should try first to re-save page structure in Admin area => Pages => Members.
    Users profile inherits everything related to that page (like slug and structure), BuddyPress just substitutes that page content, so all its settings should be in place.

    #259602

    In reply to: Activity BuddyPress

    Slava Abakumov
    Moderator

    That’s quite a lot of custom code.
    All that activities are not related to BuddyPress directly. Although you can store them in activity directory when that action was performed using bp_activity_add() function.

    But as everything you described is not a default WordPress and BuddyPress functionality – I strongly advice you to find some developers, that will implement all that.

    #259600
    Hugo Ashmore
    Participant

    You’ll probably need to be a little more specific as to what you have done and are looking to control. BP provides many paths to custom styling you can create a child theme and then copy various BP templates or the stylesheets to it to modify, or you can create a new buddypress.php template from the themes page.php and redefine the get_template calls for header or footer so new unique ones are called when BP screens are being shown.

    The BP codex has all these details, have a hunt through the theme section and a read of the template hierarchy to learn how you can introduce new template parts.

    But re-state what you’re trying to do in a little more detail as we may be able to give better suggestions on how to achieve.

    #259589

    In reply to: Groups on Buddy press

    danbp
    Participant

    Hi,

    if you mean mailing blog posts to members and if you use BuddyPress only for it’s group component, you have better to use WP Groups plugin. You don’t need BP.

    if you mean group notices, you can code something yourself or use this plugin or this one and send the post permalink to the group users.

    Not exactly what you asked for, but i have no better idea.

    For the phone question, i’ve never heard about such an app.

    #259586
    danbp
    Participant

    hi @lemonsmcgee,

    this question is documented on codex

    Emails

    #259583
    danbp
    Participant

    hi @sherissa_r,
    i asked on Slack where @hnla answered that “clearly something is wrong”. I opened a ticket, just in case of.

    Now we’ve to wait a little moment the time a dev can investigate this.

    #259581
    danbp
    Participant

    try by adding $retval['per_page'] = 50;

    Codex reference

    Using bp_parse_args() to filter BuddyPress template loops

    #259577
    danbp
    Participant

    Hi,

    can be done from within the language file, if you want the message to be full part of the success message.

    The original string is here: bp-templates/bp-legacy/buddypress/members/activate.php:43
    Your account was activated successfully! Your account details have been sent to you in a separate email.

    or if you want to show persistent instructions, you can use one of the hooks available on the activation page: bp-templates/bp-legacy/buddypress/members/activate.php

    This will need a function like these:

    function my_registration_message() {
    echo 'My message text';
    }
    add_action( 'bp_before_activate_content', 'my_registration_message' );

    You can use same function to show a custom message on the register page, in wich case you use one of the existing hook in bp-templates/bp-legacy/buddypress/members/register.php

    For ex.
    add_action( 'bp_before_register_page', 'function_name' );

    Customizing Labels, Messages, and URLs

    #259576
    danbp
    Participant
    staxracing
    Participant

    Nevermind, got it working.
    For anyone having the same problem, use

    function jptweak_remove_share() {
    	if ( is_buddypress() ) {
    	    remove_filter( 'the_content', 'sharing_display',19 );
    	    remove_filter( 'the_excerpt', 'sharing_display',19 );
    	    if ( class_exists( 'Jetpack_Likes' ) ) {
    	        remove_filter( 'the_content', array( Jetpack_Likes::init(), 'post_likes' ), 30, 1 );
    	    }
    	}
    }
    add_action( 'loop_start', 'jptweak_remove_share' );
    #259554
    danbp
    Participant

    Hi,

    you’re on the BuddyPress support forum where we can’t help for third party plugins.
    If you have questions related to bbPress (if you use this plugin), you have to ask on their support.

    For BuddyPress for Sensei plugin or WC Sensei, you can check the doc and/or ask on the plugin support too.

    danbp
    Participant

    Hi,

    by reading the first topic, it sounds like you try to use more than one child theme !

    I already have activated my other child theme

    If it is the case, it’s not the way to proceed. 😉

    1) You should have only one child-theme activated.
    2) in this child, you add a folder called buddypress.
    3) if you need to modify some BP templates, you copy the original from wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress/ into the child BP folder.

    Example of what you should have:
    wp-content/themes/XYZ theme
    wp-content/themes/XYZ-child/

    Let’s say you want to modify BP’s register page.
    wp-content/themes/XYZ-child/buddypress/members/register.php
    or you want to modify the profile header template
    wp-content/themes/XYZ-child/buddypress/members/single/member-header.php

    And that’s it ! The only thing you have to do is to pick the right file and add it to the child by respecting the original path who starts at: /buddypress/path/to/file.php

    Inside the template file, yo can manipulate html tags and find different action hooks ( do_action( 'something' ); ). Take care to not rename or remove the existing class/ID names whithout knowing what you do.

    In bp-custom.php, you can manipulate BP’s behave by adding custom functions.

    In the child-theme style.css, you manipulate whatever related to your theme layout – for the entire site, including BP or other plugins.

    And as all this is done via the child, anything will remain after any update of BuddyPress, your original theme, WordPress or plugins.

    Reading actively the forum will bring you other answers, tips and tricks.

    insearchofasolution
    Participant

    Thanks @r-a-y. I need to do a little bit of both. I have tried to do it the way as in the article, unfortunately that doesn’t work for me. I do everything as described and tried it with and without placing add_theme_support( ‘buddypress’ ); in functions.php and nothing. I am using a child theme, can it have to do something with that?

    If you are talking about code snippets, you can use your theme’s functions.php file or wp-content/plugins/bp-custom.php.

    Thanks for the above!!

    #259548
    danbp
    Participant

    [Mod] changed title to something more explicit as a useless “Please Help…….Urgent !!!!” on a support forum.

    https://buddypress.org/support/topic/when-asking-for-support-2/

    The urgent is done, the indispensable is under way. For miracles, allow time.

    Please wait, I think.

    #259547
    danbp
    Participant

    Hey, do you mean this ?

Viewing 25 results - 8,951 through 8,975 (of 68,916 total)
Skip to toolbar