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: 25402
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: To/From Values custom field issue #17027
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: [Resolved] .Mov Format Video not playing #17026

    Thank you Darren.

    That will give me a bit more time to test and cleanup. I am also going to aim for multi resolution and image extraction too now.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: [Resolved] paiement with featured Member #17024

    Hi Herve,

    I am sorry but I don’t understand the question.

    If you are asking whether the function ‘bp_featured_members’ is available on ‘parse_request’ action, then I can assure that it is.

    ‘parse_request’ is not an early action, the function is available from very early action(anything after ‘plugins_loaded’ ).

    If you are using get_current_user_id() then it is only available on init(which means, It will work fine on parse_request).

    Please post me the error log if you have and I can get some idea.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402

    Hi Richard,
    Thank you for the update.

    Glad it all worked in the end 🙂

    Best Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: To/From Values custom field issue #17021

    Hi Carsten,

    If you are using bp-legacy template pack,you can use the following code in bp-custom.php or in your child theme’s functions.php

    
    
    /**
     * Show the field in members list(directory).
     */
    function buddydev_custom_show_field_in_members_list() {
    	echo join( '-', (array) xprofile_get_field_data( 2374, bp_get_member_user_id() ) );
    }
    
    add_action( 'bp_directory_members_item', 'buddydev_custom_show_field_in_members_list' );
    
    

    If you are using the bp-nouveau, you will need to edit their members-loop.php and put the line

    
    echo join( '-', (array) xprofile_get_field_data( 2374, bp_get_member_user_id() ) );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: Branded Login Issue #17020
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: multi wildcard usage #17019

    Hi Chris,
    I am sorry, the plugin does not support regular expression in the options. I checked the code and I found that we escape the regular expression.

    Normal users can not write regular expression and that’s why this decision was. I can add an option to allow expert mode where you can use regular expressions but please do note that in that case
    .ino will match xinfo, sinfo etc(. will start substituting single character).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: [Resolved] .Mov Format Video not playing #17018

    Hi Darren,
    I am hoping to put the first version late today PST. I have got most of the part working. There are a few small glitches.

    I haven’t been able to put the image extraction(It is currently converting all videos to h.264 mp4).

    If you can allow me another day, that will be awesome as I can use some extra time. Otherwise, I will put it today.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25402
    Brajesh Singh on in reply to: Branded Login Issue #17012
    This reply has been marked as private.