Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 6,626 through 6,650 (of 69,106 total)
  • Author
    Search Results
  • onions2578
    Participant

    the above just output buddypress group fields values anywhere I like [bpps_profile_field field=Life tab=LifeColors] but no edit values anywhere i like

    Thank paul, I will check some survey plugins and sort some integration myself.

    ultimate members plugin has shortcode to add profile fields editing areas I think but only works with registration and base profile fields and not buddypress group fields

    any example of code (for editing profile group fields) on homepage or best buddypress survey plugins I can customize would help

    Boone Gorges
    Keymaster

    The simplest way to disable, at the moment, is to squelch the update_user_meta() call. Untested, but something like this should work:

    
    add_filter( 'update_user_metadata', function( $should_update, $object_id, $meta_key ) {
        if ( 'last_activity' === $meta_key ) {
            return false;
        }
    
        return $should_update;
    }, 10, 3 );
    

    I’ve opened a ticket to discuss disabling the backward compatibility feature in BP. https://buddypress.trac.wordpress.org/ticket/7882#ticket

    onions2578
    Participant

    THis is what I was looking for

    Profile field based content shortcode

    BP Profile Shortcodes Extra


    I am installing now, and may post updates if not what I want.
    I found these by searching “wordpress profile fields shortcodes” and there are heap more that I can use with buddypress
    Took over 10 hours researching before I tried this search term

    #273803
    gquadrat
    Participant

    You helped a lot!
    Thank you very much…

    I deactivated the buddypress_link plugin and now it works.

    Thank you and have a nice day

    #273800

    In reply to: Few things

    Paul Wong-Gibbs
    Keymaster

    This is not a BuddyPress question.

    #273794
    Paul Wong-Gibbs
    Keymaster

    It’d been helpful if you’d linked to it, @venuitius šŸ˜‰
    I’ve just tried searching myself and couldn’t find it.

    At any rate, this is not a BuddyPress problem — it’s an out of date and unsupported plugin.
    We are looking at trying to introduce some of these field types into the main BuddyPress plugin for future versions (it will happen, just a matter of number of contributors and time).

    #273793

    In reply to: GDPR compliance

    Paul Wong-Gibbs
    Keymaster

    Our position is that we want BuddyPress to provide tools that help site owners comply with privacy legislation.

    Our 4.0 release, about a month away, will be our first pass at this. Read the latter comments in https://buddypress.trac.wordpress.org/ticket/7698 for linked/related tickets, as well as https://buddypress.trac.wordpress.org/query?status=reopened&status=assigned&status=reviewing&status=new&status=accepted&group=status&milestone=4.0 to see all issues assigned to 4.0 (7855, 7856, 7866, 7867, etc).

    #273791
    smilingdeep
    Participant

    I am testing this, but wondering at the same time what is ā€ the repair email optionā€.

    Hello @alpokoskiniva, this solution is tested and has worked for everyone with activation mail issue. I am sure you will also be able to solve this.

    As for “reset email settings” – go to Dashboard> tools > BuddyPress tools and here you will find this option. This option resets Buddypress e-mail configuration to default. Hope it helps.

    #273790
    Paul Wong-Gibbs
    Keymaster

    We have this fixed for our next release, v3.1. This will be released next week (Wednesday) at the latest. The bug was addressed at https://buddypress.trac.wordpress.org/ticket/7869


    @alpokoskiniva
    “Repair email” deletes the emails from the “Emails” menu, then re-adds them. You don’t need to do this unless you’ve added a translation to your site after installing BuddyPress, and want the translated emails, or if you’ve made a code change to the email language in the BuddyPress files, which is what @filipponeri20 has done. We strongly recommend that no-one ever changes a core file of BuddyPress, because it will be overwritten when you update.

    #273789
    Paul Wong-Gibbs
    Keymaster

    You need to talk to whoever runs your server. It’s possible the PHP error logging configuration is different on each.

    Furthermore, you can see the problem comes from the folder /plugins/buddypress-links, which is not BuddyPress itself.

    I haven’t seen BuddyPress Links in a long time — I’m assuming it’s not compatible, and that your PHP configuration is indeed different (you were probably suppressing the error before).

    We can’t help more.

    #273786
    Alpo
    Participant

    I have fresh WordPress installation version 4.96 and Buddypress 3.0.

    Unfortunately the version 3.0 of Buddypress does not send confirmation email to new registered users. I removed the version 3.0 and tested the version 2.9.4. So in that version it worked.

    Several websites are in trouble if the registration process does not work as expected. Otherwise Buddypress is awesome plugin and thanks to the developers. Hopefully the team can fix the case soon.

    ethanstein
    Participant

    It seems like parameters 6-8 are no longer being passed with the new version of buddypress?

    This is my code which has been working:

    function bp_custom_format_buddypress_notifications( $action, $item_id, $secondary_item_id, $total_items, $format = 'string', $component_action, $component_name, $id ) {
    
      if ("wbp_party" === $component_name && is_user_logged_in()) {
    
        ...
    
    if ( 'string' === $format ) {
          $return = apply_filters( 'wbp_notification_filter','<a href="'.$custom_link.'">'.$custom_title.'</a> ', $custom_text, $custom_link );
    
          // Deprecated BuddyBar
        } else {
          $return = apply_filters( 'wbp_notification_filter_array', array(
            'text' => $custom_text,
            'link' => $custom_link
          ), $custom_link, (int) $total_items, $custom_text, $custom_title );
        }
    
        return $return;
      }
    
    }
    add_filter( 'bp_notifications_get_notifications_for_user', 'bp_custom_format_buddypress_notifications', 10, 8 );
    ethanstein
    Participant

    I also had the same issue. It has been working for the past six months but for some reason I’m now getting the error:

    [Thu May 31 03:17:57.637007 2018] [proxy_fcgi:error] [pid 20994:tid 140462744499968] [client 76.95.217.178:52226] AH01071: Got error 'PHP message: PHP Warning: Missing argument 6 for bp_custom_format_buddypress_notifications(), called in /opt/bitnami/apps/wordpress/htdocs/wp-includes/class-wp-hook.php on line 286 and defined in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/wbp/lib/party/notifications.php on line 40\nPHP message: PHP Warning: Missing argument 7 for bp_custom_format_buddypress_notifications(), called in /opt/bitnami/apps/wordpress/htdocs/wp-includes/class-wp-hook.php on line 286 and defined in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/wbp/lib/party/notifications.php on line 40\nPHP message: PHP Warning: Missing argument 8 for bp_custom_format_buddypress_notifications(), called in /opt/bitnami/apps/wordpress/htdocs/wp-includes/class-wp-hook.php on line 286 and defined in /opt/bitnami/apps/wordpress/htdocs/wp-content/plugins/wbp/lib/party/notifications.php on line 40

    #273783

    In reply to: GDPR compliance

    angrywarrior
    Participant

    How about Pseudonymisation and encryption of user data in BuddyPress?

    As I understand this must also be achieved under the GRPR directive.

    (And yes thank you @buddyboss for your initivite, it is step in the right direction).

    #273780
    Henry Wright
    Moderator

    The “Articles” tab isn’t something that BuddyPress adds. If the count isn’t compatible with Nouveau then I suggest you let the plugin author know at https://wordpress.org/support/plugin/social-articles

    #273779
    Venutius
    Moderator

    BuddyPress Xprofile Fields Type has been withdrawn and if unsupported.

    If you do a lookup for BuddyPress Xprofile Custom Fields (note the extra s) you will find that there’s a new fork of this plugin that should fix the problem.

    #273777

    In reply to: GDPR compliance

    BuddyBoss
    Participant

    We have released a plugin to help with GDPR compliance: https://wordpress.org/plugins/bp-gdpr/
    This will be helpful for now, until there is a major BuddyPress release with these features.

    pandraka
    Participant

    Is there a date for a fix to BuddyPress for this issues?

    #273773

    In reply to: User Extended Profiles

    Venutius
    Moderator
    #273768
    harry74
    Participant

    I am reposting the same with the code parts fixed (I hope)

    Wordpress Version: 4.9.6
    Buddypress version: 3.0.0

    Hello,

    I’ve been struggling for days with oEmbed, but I’m not a coder nor very experienced in WP so no luck yet. I want to be able to post on the activity stream from almost any source and generate a preview (same as on Facebook, Tumblr etc). First of all, even some major sites (Facebook, Flickr, Tumblr) from the WP whitelist do not generate a preview when posting a link in activity. A bug maybe? Also, Activity Plus and rtMedia are not solutions, because I tried them and both have problems. I should point out that I have multisite and BP Multi Network and have set BP_ENABLE_MULTIBLOG as true.

    Two very good plugins are Iframely and Embedly. The problem with the first is that there’s a limit of embeds in the free version and it doesn’t support as many sites as I need. Embedly does, but here’s the problem. When activated, there seems to be a conflict with some of the default embed providers of BP, like Vimeo and Youtube. A preview is still generated, but it is only a dead image of the video. You cannot click play or click on the title and open the video in a new tab. So the plugin becomes essentially useless (nobody could afford to have a social network where users can’t post YouTube videos). There’s a similar problem with Iframely (the YouTube video is OK but there’s a big blank area beneath it), but they have an option ā€œDo not override default embed providersā€ that solves the problem. Unfortunately Embedly doesn’t have such an option. Does anyone know if I could force it somehow to do the same? (I have already contacted their support days ago but they never answered.)

    Then, I thought to remove YouTube from the oEmbed providers list with

    <?phpĀ wp_oembed_remove_provider(Ā $formatĀ )Ā ?>

    hoping that this would eliminate the conflict, since Embedly alone would handle YouTube links. I’m not sure what I did it wrong, because at first I pasted this code as a test:

    <?php wp_oembed_remove_provider( 'http://wordpress.tv/*' ); ?>

    in the wp-includes/media.php file at the end and it returned syntax error, unexpected ā€˜<ā€˜. Then I tried:

    wp_oembed_remove_provider( 'http://wordpress.tv/*' );

    No error this time, but nothing changed. I could still post a link from wordpress.tv and a preview was generated. Can someone explain how to do this correctly? And do you think that if I remove YouTube from the providers it will solve the issue?

    Finally, I found out about oEmbed Discovery. The documentation is not very clear, so I’m not even sure what exactly it is supposed to do if enabled. Does it allow content from any site to be embedded? Or does it have limitations too? And what does it mean ā€œyou can give unfiltered_html users (Administrators and Editors) the ability to embedā€? If I used it, would I have to give every new user editor role so that they could post? Anyway, the thing is I installed the Enable oEmbed Discovery plugin, but absolutely nothing changed. I tried some test posts from various websites and only the link was posted as usual. Any idea what went wrong?

    I tried all the above with network activation, per site activation, network and per site together, everything… but to no avail. Any help will be greatly appreciated because this is a huge problem for my site. Sorry for the long post, at least I hope it might help others too with similar issues. Lastly, if anyone proposes a solution which includes some code, please mention where I should paste it (I do have a bp-custom.php file).

    Thanks in advance

    #273762
    Varun Dubey
    Participant

    @shahriar83 You have already created a thread with BP activity plus support, Explain to them how to replicate the issue.

    You can replicate the issue with Template Pack BuddyPress Nouveau after BP 3.0 install using WordPress Default theme “Twenty Seventeen” at singe group activity page.

    #273751
    Jonas
    Participant

    I had some issues with this earlier too, using the code supplied in this thread should clear up your issue.

    Here’s the code if you’re unable to click the link for some reason. You should put it in your bp-custom.php file.

    function toa_check_page_reqiurement_and_lie_to_buddypress ($is, $component) {
        global $bp;
        if ($is || "activity" !== $component) return $is;
        if ((defined('BP_GROUPS_SLUG') && bp_is_groups_component() && 'activity' == $bp->current_action)){
            return true;
        }
        return $is;
    }
    function toa_setup_activity_filter () {
        add_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10, 2);
    }
    function toa_teardown_activity_filter () {
        remove_filter('bp_is_current_component', 'toa_check_page_reqiurement_and_lie_to_buddypress', 10);
    }
    add_action('bpfb_init', 'toa_setup_activity_filter');
    add_action('bpfb_add_cssjs_hooks', 'toa_teardown_activity_filter');
    #273749
    Varun Dubey
    Participant

    I am able to replicate the issue, You can report here once
    https://wordpress.org/support/topic/problem-with-new-buddypress-template/

    #273746
    Varun Dubey
    Participant
    #273730

    Buddypress activity plus not active with groups in my web.

Viewing 25 results - 6,626 through 6,650 (of 69,106 total)
Skip to toolbar