Replies
- Brajesh Singh on August 29, 2018 at 12:56 pm in reply to: [Resolved] No preview available to PDFs PPTs DOCs #17036
Hi Matt,
Glad you found another way for it.To add more extensions, please visit dashboard->MediaPress->settings->General and you will see the list of extensions allowed for doc. Please add ppt, pptx to that.
Regards
Brajesh - Brajesh Singh on August 29, 2018 at 12:16 pm in reply to: [Resolved] paiement with featured Member #17034
Hi Herve,
Can you please point me to the code and the hook that is being used to process the IPN. I am sure it is an issue with the payments plugins. Most probably they are either doing it too early or not even loading WordPress.
Please link me and I will assist.
Thank you
Brajesh - Brajesh Singh on August 29, 2018 at 12:14 pm in reply to: [Resolved] No preview available to PDFs PPTs DOCs #17033
Hi Matt,
Welcome to BuddyDev.is there a chance that you are testing it on a local install? Google Doc needs the document to be available on web and will not work for local documents.
It is possible to replace the viewer with something else but at the moment, we don’t have any alternative. We will keep looking for the alternative and add support in core or as addon in future.
For now, Let us get the Google Viewer working for you.
Regards
Brajesh - Brajesh Singh on August 29, 2018 at 12:10 pm in reply to: [Resolved] BP member types pro: directory slugs and tabs don't work #17032This reply has been marked as private.
- 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