Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,226 through 10,250 (of 68,948 total)
  • Author
    Search Results
  • #253265
    Henry Wright
    Moderator

    I think this should be a question for the core team. You should post it on Trac:

    https://buddypress.trac.wordpress.org

    #253254
    Henry Wright
    Moderator
    #253252
    MD FAKRUL ISLAM
    Participant

    @mfalk75

    I faced the same issue when I copied the buddypress.css from buddypress/bp-templates/bp-legacy/css to mythemes/buddypress/css

    Here is the code below I used to get rid of this…

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-parent-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Hope it helps..

    #253251

    In reply to: Private Member?

    shanebp
    Moderator

    I don’t believe bp_parse_args() was available when I wrote that codex page.

    But you should use it instead; it should solve your issue:
    https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    #253245
    Henry Wright
    Moderator

    There are a few articles that could be useful to you. Check out:

    Customizing Labels, Messages, and URLs

    Customizable Slugs in BuddyPress

    #253233
    LavishDhand
    Participant

    I had no idea that creating a BuddyPress email template was necessary. Just created one and now it’s working.

    Thank you

    #253219
    andy60rm
    Participant
      Resolution today

    my personal steps
    1. restore latest wp backup with version 4.5.1
    2. complete remove of buddypress
    3. disactivation of the following plugins (i don’t know exactly the cure but bp works now)

    INACTIVE Cryout Serious Theme Settings 0.5.6
    INACTIVE Huge IT Slider 3.1.82
    INACTIVE mathtex latex equation editor 1.1.5
    INACTIVE Ultimate Tables 1.6.3
    INACTIVE WP-Polls 2.73
    INACTIVE WP-Pro-Quiz 0.37

    #253211

    In reply to: virtual kiss or wink

    danbp
    Participant
    #253181
    fidelleon
    Participant

    “Solution” told here works fine but requires modifying core:

    https://buddypress.org/support/topic/2-5-html-email-styling-not-working/

    The BP Registration Options plugin forces in some way to send the emails using content_plaintext instead of content_html:

    $must_use_wpmail = apply_filters( ‘bp_email_use_wp_mail’, $wp_html_emails || ! $is_default_wpmail );

    It gets set to true so:

    if ( $must_use_wpmail ) {

    […]
    $email->get( ‘content_plaintext’, ‘replace-tokens’ )

    If you visit the “Manage Signups” and send an email to the user (reminding to activate their accout), the mail is 100% HTML w/o touching anything…

    #253165
    peter-hamilton
    Participant

    This is a great chat plugin and very facebook-ish, although no video, but chat has multichat function etc.

    http://codecanyon.net/item/wordpress-buddypress-users-chat-plugin/10776067

    #253161

    In reply to: Birthday Notifications

    lucaram
    Participant

    Thanks Henry,

    Unfortunately I struggle to understand how to produce the code, I’m not a code expert like you guys.

    Here is what I have and how I would like to implement it for my friend’s birthday:
    bIRTHDAY nOTIFICATIONS

    I have found this that mentioned the “bp_notifications_add_notification()” function:

    BuddyPress: Adding Custom Notifications

    That is for notifications when someone comments on their blog post, but it is far too complex for me to modify for birthdays I’m afraid 🙁

    Any chance somebody could share the code?

    #253160
    shanebp
    Moderator

    I would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
    because buddypress have not given any hook for changes content type text

    You can create an enhancement ticket here using the same login as you use for these forums.

    Henry Wright
    Moderator

    If you’re already using WordPress then BuddyPress might be a good option because of how tightly integrated the two are. BuddyPress is just a plugin so to get started you simply have to activate it from your WordPress dashboard.

    My advice would be to set up a test install and give BuddyPress a try. You’ll then get a feel for if it will meet your exact requirements. Lastly, if BuddyPress core doesn’t have the functionality you need, then you’ll find many plugins in the Plugin Directory written specifically for BuddyPress. Taking a quick look at your requirements, one that you may want to check out is BuddyPress Follow.

    #253151
    Bharat
    Participant

    Hello Guys

    I have found solutions for html email text
    there is some changes in bp_core files :
    You can change content type given below path:
    \wp-content\plugins\buddypress\bp-core\bp-core-functions.php line number 2962

    put content_html text instead content_plaintext:
    content_plaintext should be send plain text email and content_html should be

    send html email:
    $email->get( ‘content_plaintext’, ‘replace-tokens’ )

    $email->get( ‘content_html’, ‘replace-tokens’ )

    I would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
    because buddypress have not given any hook for changes content type text

    fidelleon
    Participant

    WordPress 4.5.1
    BuddyPress 2.5.1
    Geodirectory framework and Geodirectory’s Modern theme.

    Buddypress mails get sent but only using the plain text version. I have modified one of the templates with different wording for HTML and plain text, and no matter what, the system always send the plain text version, so it seems like some part of the system is deciding to just take such version.

    My WordPress instance doesn’t have (and very likely won’t have) a local SMTP server so I’m using “Easy WP SMTP” to communicate with Google servers. I also use BP Registration Options to get account validations.

    #253146
    danbp
    Participant

    Hi,

    read here please: https://buddypress.org/support/topic/buddypress-registration-without-username/

    Other solutions (untested):
    https://wordpress.org/plugins/smart-wp-login/
    https://wordpress.org/plugins/ppress/
    There maybe other plugins.

    If you don’t have a good php experience, i would recommand you to not alter this sensible WP core part in any way.

    #253144
    writerscentre
    Participant

    Thanks @shanebp. Yes, I contacted LearnDash over night and they suggested we look BuddyPress.

    They said:
    “I would look into BuddyPress. This has private groups and you can associate courses with different groups as well as allow each group have a private forum. You can find our add-on for BuddyPress here:
    http://support.learndash.com/buddypress/”

    I had a question about associating courses with different groups. I could only associate a course with 1 group. Is it possible to associate a course with multiple groups?

    We would have the course Creative Writing
    And multiple groups that we’d like to associate with it. Is that possible?

    What does the association actually do? Do we need to associate the group with a course?

    Thanks for your help!

    #253142
    danbp
    Participant
    Glenn
    Participant

    it’s not entitlement, it’s just (clearly unjustified) expectation. my questions were very simple questions for BuddyPress aficionados. and i’m not the only one who gets ignored in here, it’s apparent.

    please excuse me for asking for help. i’ll know better next time.

    and at least i wasn’t rude.

    shanebp
    Moderator

    requests for help in these forums don’t seem to get much attention to me

    Everyone here is a volunteer. Nobody is obligated to answer your questions – especially ones steeped in entitlement.

    If you want more attention and faster attention – hire a developer.

    Or at least use gist to share the code you’ve written in attempting to find a solution.

    For your task, I would use the Group Extension API.

    #253126
    shanebp
    Moderator

    Is your edited file in the correct place?
    It should be here:
    .../wp-content/themes/your-theme/buddypress/groups/create.php

    #253109
    danbp
    Participant

    hi @artisantopia,

    seems you found a bug ! 😉 I tested your issue and got the same behave.

    Please report this on Trac and mention your first topic. Trac login use same credentials as here.

    I report this on bbPress slack immediatly. (in case of)

    Thank you.

    #253107
    Artisantopia
    Participant

    Further testing:
    – I’ve changed to TwentyFifteen theme
    – deactivated all plugins except for BuddyPress and bbPress

    I still can’t see topics that the user should be able to see. And they can access a private forum they aren’t a member of.

    Where do I even begin to figure out what is going wrong with this site?

    #253106
    Artisantopia
    Participant

    I just ran 2 forum repairs:
    – Recalculate private and hidden forums
    – Repair BuddyPress Group Forum relationships

    and now I have a different problem. I’ve actually been experiencing this problem on and off now for about 2 weeks and I’m starting to pull my hair out!

    So now if I go to the forum list (at the category level) I can see that there are topics in the child forums. But when I click through to the child forum it tells me “Oh bother! No topics were found here!” This is for a group that the user is a member of. There are definitely topics in that forum.

    If I change the user from a Participant to a Moderator they can see the topics.

    If I change them back to a Participant and then toggle the forum from private to public to private they can see the topics again. I have done this toggling of forum visibility several times over the past week and it only lasts for a day or two, then I’m back at this problem.

    #253105
    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\groups\create.php

    Then, in your template overload, remove the html for the Private and Hidden options.

Viewing 25 results - 10,226 through 10,250 (of 68,948 total)
Skip to toolbar