Replies
- Brajesh Singh on August 29, 2018 at 2:33 am in reply to: [Resolved] BP member types pro: directory slugs and tabs don't work #17028This reply has been marked as private.
- This reply has been marked as private.
- Brajesh Singh on August 28, 2018 at 11:49 pm 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 - Brajesh Singh on August 28, 2018 at 10:41 pm 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 - Brajesh Singh on August 28, 2018 at 10:37 pm in reply to: [Resolved] Blog only showing one set of comments for all blogs #17022
Hi Richard,
Thank you for the update.Glad it all worked in the end 🙂
Best Regards
Brajesh 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- This reply has been marked as private.
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- Brajesh Singh on August 28, 2018 at 10:20 pm 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 - This reply has been marked as private.