Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: [Resolved] Bp branded login and activation links #7976

    Hi Daniele,
    Thank you for posting.

    You are right, It seems we did not consider the activation as we only considered BuddyPress registration.

    We can add support for custom account activation page or we can let wp-login.php handle it.
    What will be more useful for you ? Please let me know and we can update the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: sort galleries? #7975

    Hi Clay,
    Thank you for posting.

    We support “order” and “orderbyy” options in teh gallery list shortcode. By default, it is sorted by date in descending order.

    You can use the following options in the shortcode
    [mpp-list-gallery order =’DESC’ orderby = ‘date’]

    All the values for order/orderby supported in WP_Query are supported in the shortcode.

    https://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: [Resolved] Conditional Profile Fields #7964

    Thank you Denis,
    I and my team will be a bit off tomorrow. Please allow me to post a solution on Monday.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Problem with upload images #7963

    You are welcome. Please do let me know if using the plugin worked for you or not?

    I can provide code to avoid any image generation by Community Builder but that may not be the best solution.

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Plugin Request #7962

    Thank you Carl.
    Will do 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Rohan,
    Thank you for posting. we will push an update coming Tuesday to fix this and a few other issues.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Plugin Request #7903

    Hi Carl,
    Thank you.

    My apologies for missing the email.

    This is doable but due to my current work commitments, I am not in position to do anything for atleast 2 weeks. We have several plugins, themes lined up for BuddyDev. They have kept me a lot busy recently.

    I will be happy to do it in future, but I am unable to do so currently.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Ahh, sorry. I forgot about the first time ajax posting part.

    Please change ‘bp_template_redirect’ to ‘bp_init’

    That will do it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: [Resolved] Conditional Profile Fields #7898

    Hi Dennis,
    I am sorry for the inconvenience.

    If I was in this situation, I will mark the checkbox non required in admin and do a custom validation on ‘bp_signup_validate’ action to make sure that one of the checkbox is checked.

    I do understand that it is not a very suitable option for the site admins. I am willing to assit you if you can tell me the field ids and their dependency on the checkbox.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Dandy,
    Thank you.
    yes, that was only for oembed.

    Please add this to the bp-custom.php

    
    function buddydev_disable_activity_links() {
    
    	remove_filter( 'bp_get_activity_action',                'make_clickable', 9 );
    	remove_filter( 'bp_get_activity_content_body',          'make_clickable', 9 );
    	remove_filter( 'bp_get_activity_content',               'make_clickable', 9 );
    	remove_filter( 'bp_get_activity_parent_content',        'make_clickable', 9 );
    	remove_filter( 'bp_get_activity_latest_update',         'make_clickable', 9 );
    	remove_filter( 'bp_get_activity_latest_update_excerpt', 'make_clickable', 9 );
    }
    
    add_action( 'bp_template_redirect', 'buddydev_disable_activity_links' );
    

    Please do let me know how it goes.

    Thank you
    Brajesh