Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 4,651 through 4,675 (of 22,602 total)
  • Author
    Search Results
  • #252204
    BobSD99
    Participant

    Hi Henry – thanks for response. As confirmed by both the Codex (Code Reference) and my successful use of this method in the same installation outside of BuddyPress, $title is indeed an array.

    In fact, I tested my function without the if ( bp_is_group() ){ conditional, and the filter works on the pages NOT created/affected by BuddyPress, which confirms BuddyPress is bypassing this filter.

    For testing purposes, I modified the function as follows:

    // test parameters passed to document_title_parts filter
    function test_groups_title( $title ){
    
    	print_r( $title );
    	exit;
    
    }
    add_filter('document_title_parts', 'test_groups_title', 10);

    And BuddyPress pages output the following array:

    Array
    (
        [title] => 
        [site] => My-Website.com
    )

    Which suggests that BuddyPress is neither supplying data to this array nor utilizing it for the title output.

    I did a grep of BuddyPress and bbPress and I am finding calls to the deprecated wp_title() function:

    $ grep -r 'wp_title' ../plugins/b*press/*
    ../plugins/bbpress/includes/core/filters.php:add_filter( 'wp_title',                'bbp_title',              10, 3 );
    ../plugins/bbpress/readme.txt:* Fix custom wp_title compatibility
    ../plugins/buddypress/bp-core/bp-core-filters.php: * @see wp_title()
    ../plugins/buddypress/bp-core/bp-core-filters.php:       * @see wp_title()
    ../plugins/buddypress/bp-core/bp-core-filters.php:       * Filters the older 'wp_title' page title for BuddyPress pages.
    ../plugins/buddypress/bp-core/bp-core-filters.php:add_filter( 'wp_title',             'bp_modify_page_title', 20, 3 );
    ../plugins/buddypress/bp-core/deprecated/1.5.php: * @deprecated Use wp_title()
    ../plugins/buddypress/bp-core/deprecated/1.5.php:        * Now, just simply use wp_title().
    ../plugins/buddypress/bp-core/deprecated/1.5.php:        * @deprecated Use wp_title()
    ../plugins/buddypress/bp-core/deprecated/1.5.php:               _deprecated_function( __FUNCTION__, '1.5', 'wp_title()' );
    ../plugins/buddypress/bp-core/deprecated/1.5.php:               $title = wp_title( '|', false, 'right' ) . get_bloginfo( 'name', 'display' );
    ../plugins/buddypress/bp-themes/bp-default/header.php:          <title><?php wp_title( '|', true, 'right' ); bloginfo( 'name' ); ?></title>
    ../plugins/buddypress/bp-themes/bp-default/archive.php:                 <h3 class="pagetitle"><?php printf( __( 'You are browsing the archive for %1$s.', 'buddypress' ), wp_title( false, false ) ); ?></h3>

    I guess this means I can and should hook in to the older (deprecated) wp_title() function? I’m a bit new to BuddyPress and WordPress, so maybe I’m missing something obvious, or barking up the wrong tree here….

    redokodesign
    Participant

    Hey all,

    A HUGE thank you to @djpaul and everyone else who helped to solve this problem for me.

    Paul asked me to install the following plugin:

    https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/

    – This fixed the problem for me instantly. The site now has working notifications for Buddypress, BPpress and WordPress. Amazing! If you too are running WP-mail-SMTP and having problems do try this fix.

    The Buddypress community is always so helpful.

    Thanks again,

    T

    Brandon Allen
    Participant

    For anyone using the wp_mail_from and wp_mail_from_name filters, commonly used in SMTP plugins, I’ve created a plugin that lets those filters work with BP emails.

    https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/

    Hope this helps someone!

    Juljan.By
    Participant

    Got the same erorr.
    It’s pity. Why this plugin is so hard coded?
    Why I cannot see log files with errors or change environment to development/production?

    Wordpress v4.4.2 (single site)
    Buddypress v2.5.2

    #252162
    Paul Wong-Gibbs
    Keymaster

    I think it comes down to privacy, and what how much a person wants to share to a specific community. I’m much more open in this WordPress community than I am in communities for various video games i’m involved with, for example.

    #252159
    nownesx
    Participant

    I have a good knowledge of php, but I’m not a super programmer. developing themes for wordpress. BuddyPress documentation for plugins is poor.
    Can you give me some guidance about? what are the files involved than post-form.php?

    #252123
    Paul Wong-Gibbs
    Keymaster

    I’ll continue to give this thought. If WordPress emails are sent without ANY plugin or customisation, I am not sure why BuddyPress emails aren’t being sent — we put a lot of work into the v2.5.2 release to try to fix this exactly situation/problem.

    Halo Diehard
    Participant

    Pretty sure your WordPress members have to post after BuddyPress has been installed, or they don’t show up as BuddyPress members 🙁 I’m currently looking into this as well, to see if any updates have remedied this. It’s very confusing to my members when they click the BuddyPress members link and everyone isn’t there. Some of my members keep in contact even if it isn’t through my site. It’s really not a true integration with WordPress set up this way, so I hope it’s been updated.

    #252112
    Henry Wright
    Moderator

    Can you post some information about your install?

    • Active theme
    • Plugins activated
    • BuddyPress version
    • WordPress version

    Thanks!

    #252101
    ngoegan
    Participant

    I deactivated the plugin Another WordPress Classified Plugin and it resolved the issue. I’m going to post over on the AWPCP support forum to see if they are aware of it and know how to fix the conflict.

    #252084
    manigopal
    Participant

    normal wordpress user registration working fine only buddypress registration is not working have a look into it.

    Thanks

    #252047

    In reply to: Multiple Groups types

    shanebp
    Moderator

    Have you taken a look at
    https://wordpress.org/plugins/bp-group-hierarchy/ ?
    It may give you some ideas of how to proceed.

    Jojanonone
    Participant

    Thanks a lot @berkelmudez!!

    Accidentally I noticed that activation emails were not being sent. And neither were notification emails, like when receiving a private message. Switched to Postman and all was sweet again.

    WordPress 4.4.2
    BuddyPress 2.5.2
    bbPress 2.5.8

    davidryal
    Participant

    update2: found shane’s answer here:
    http://wordpress.stackexchange.com/questions/196929/how-to-get-member-list-based-on-role-by-using-buddypress

    …and got it to work to only show a single role, which covers about half the users I want to show. I don’t really understand array syntax, but am now neck-deep in the new “role__in” thing in 4.4

    …and finally got it to work, after finding https://gist.github.com/sbrajesh/2142009 (the most recent comment is key, bringing in “role__in”

    berkelmudez
    Participant

    Hi,

    I just had a similar problem problem where emails were working perfectly from WordPress and BB press but not from Buddypress for some reason even tho my SMTP plugins were working.

    It turned out that the SMTP plugins I were using weren’t applying the configuration on Buddypress emails for some reason. The plugins that did not work for me were:Configure SMTP, Easy WP SMTP, WP-Mail-SMTP.

    The plugin for me that did succeed in setting the smtp for buddypress email notifications was ‘Postman SMTP’. I think it might be worth a shot trying this plugin to see if it works with this plugin.
    I have no idea why the other SMTP plugins didn’t work but this plugin did and it might work for you as well. Good luck

    #252008

    In reply to: Update Fail on 2.5.2

    danbp
    Participant

    Hi,
    you need to network activate, even if you have only one subsite and what ever the sub option (sub-dir or sub-domain) is.

    Mostly, BP is activated on the main site.

    your-site.com/ – here sit WordPress and BuddyPress and depending your options:

    your-site.com/my_second_blog/ (sub-dir)
    or
    my_second_blog.your-site.com (sub-domain)

    Installation in WordPress Multisite

    Configure BuddyPress for Multisite

    Paul Wong-Gibbs
    Keymaster

    @redokodesign Do you know how to access raw email headers, in whatever email client you use?

    If so, can you copy/paste the email headers of a WordPress email that you’ve received from the site (i.e. one that is working correctly and was sent)? Can you also share with me the “to” “from” “bcc” “cc” parts of the text that the BuddyPress email debug plugin sent you?

    You can find my email address on https://profiles.wordpress.org/djpaul/

    I have a suspicion this is something to do with the “from” or “reply to” properties being different for each email, but I need the data to prove this, and what SMTP plugin you are using to see how it is configuring WordPress.

    #251990
    planetearthlings
    Participant

    Thanks Henry…I tried that, but didn’t find anything. I’ll probably just test one of the regular WordPress plugins and hope it works okay.

    #251984
    Henry Wright
    Moderator

    @ala7lam if you go to Settings > BuddyPress you should see a check box next to Extended Profiles. If you uncheck that, the xProfile component becomes disabled. Then you can add your own custom solution (using WordPress usermeta if you wish).

    #251952
    berkelmudez
    Participant

    @davbot How you found a way to fix this? I use ‘Easy WP SMTP’ which perfectly sends emails from WordPress and BBpress as well but not Buddypress, which doesn’t send registration emails or any type of Buddypress action. Seems like it’s ignoring my my smtp plugin as well.

    #251934

    In reply to: translation email

    christianlersch
    Participant

    Hello,
    I try to translate Buddypress Emails into german. At the moment all Emails are listed are in English. I try to use the “reinstall emails” tool and always get the english version of the emails.

    On this ticket https://buddypress.trac.wordpress.org/ticket/6592 you mentioned the problem but I can find the solution.

    I set define( ‘WPLANG’, ‘de_DE’ ) in the wp_config and also download the newest translation files from here: https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/de/default

    What can I do to get the german version of the emails?

    Thank you for your help!

    #251926
    Paul Wong-Gibbs
    Keymaster

    No, not file formats. 😉

    Structured ways of representing data. WordPress’ exports use XML, with a particular format called WXR. Anything that needs to import data from WordPress uses an XML parser and looks for the structured markup defined by the WXR format.

    #251917
    valuser
    Participant

    Many Thanks @shanebp. Works. Ticket

    #251908
    johnnetr
    Participant

    Awesome! Sorry, I am new to wordpress and php development. Zero knowledge.

    The code that you posted, should I copy and paste in an existing php file? or should I create a new php file and put it in the buddypress folder?

    Thanks!

    #251905
    shanebp
    Moderator

    I’ve deleted that gist and added a new one:
    https://gist.github.com/shanebp/72a0c6fe7ffb6f9c1424a30bdb455d4f

    It should only check for duplicate names if on the first tab – ‘Details’.

    You can always create a ticket asking for a change to core files.

Viewing 25 results - 4,651 through 4,675 (of 22,602 total)
Skip to toolbar