Replies
- Brajesh Singh on August 28, 2019 at 12:04 am in reply to: Get a cover image automatically for a video like YouTube #25034
Hi Kir,
For video thumbnail, we have worked on automatic video thumbnail. You will need FFMPEG to use it thoughhttps://buddydev.com/plugins/mpp-local-transcoder/
For the view button, Please use any translation tool.
Regards
Brajesh Hi Carsten,
You may want to take a look at this
https://css-tricks.com/almanac/properties/h/hyphenate/Regards
Brajesh- Brajesh Singh on August 27, 2019 at 7:11 pm in reply to: [Resolved] Conflict with Ocean WP? Activity feed won't upload after update #25024
Please try clearing cache if any.
- Brajesh Singh on August 27, 2019 at 7:06 pm in reply to: [Resolved] Moderation Tools – Report Button position #25022
Hi Vivek,
Thank you for reporting.It seems you have following code in your child theme
@media (max-width: 767px) .bpmts-moderation-button-wrap.generic-button { position: absolute; top: -50px; right: 0; } ....some other code }This is causing the issue. It is most probably added by someone to fix the positioning on button on some other place and has the side effect here.
If you can tell me why this code was added originally, I may be able to provide a better context specific solution.
Regards
Brajesh - Brajesh Singh on August 27, 2019 at 7:00 pm in reply to: [Resolved] Conflict with Ocean WP? Activity feed won't upload after update #25021
Hi Kir,
I am sorry for the trouble. We noted the issue 3 days ago and fixed it. It was a bug on our side.
https://github.com/buddydev/mediapress/commit/2ee09eb8d69a3e27220e7c4b134efe32bcc7d932I will push a release by tomorrow as need to cleanup a few things.
Thank you
Brajesh Hi K,
Thank you for the question.Please see
https://buddydev.com/mediapress/code-snippets/renaming-wall-gallery-title-for-mediapress/#example-4- Brajesh Singh on August 27, 2019 at 9:41 am in reply to: How to limit the number of post a user can publish per day to one #25012
Hi Tosin,
I am sorry. This involves the plugins which we do not use or don’t have any affiliation.That’s why we are unable to support you. We can support any plugin but that takes time and within our free support, we are unable to do that.
I suggested asking the plugin developer as they have interest in supporting their plugins. That will save you time and cost.
For any 3rd party code(except BuddyPress, bbPress which we support for free here), Please feel free to use our custom services.
https://buddydev.com/services/
Regards
Brajesh - Brajesh Singh on August 27, 2019 at 9:37 am in reply to: [Resolved] Member Type, Login Peronalized Redirection Does Not Work #25011
Hi,
I haven’t been able to add compatibility with your theme yet. Hoping that today I can.Thank you
Brajesh Hi Carsten,
I am sorry but I could not understand thisNow hyphenation and separation of words turns out as a problem, any simple code to solve this as well?
Please help me understand the question and I will assist.
Regards
Brajesh- Brajesh Singh on August 26, 2019 at 11:04 pm in reply to: Only one Gallery per user and auto create gallery during registration #24999
Hi,
Please add the following code too./** * Redirect from members/user/mediapress/ to their single gallery. */ function mpp_custom_redirect_to_single_gallery() { if ( ! function_exists( 'mpp_is_user_gallery_component' ) || ! mpp_is_user_gallery_component() ) { return; } // we are on some internal page, no need to redirect. if ( bp_current_action() ) { return; } // find out the gallery permalink and redirect. $gallery_id = get_user_meta( bp_displayed_user_id(), '_mpp_predefined_gallery_photo_1', true ); if ( ! $gallery_id ) { return; } $permalink = mpp_get_gallery_permalink( $gallery_id ); if ( $permalink ) { bp_core_redirect(); } } add_action( 'bp_template_redirect', 'mpp_custom_redirect_to_single_gallery' );It should work in conjunction with our previous code.
Please give it a try and let me know(I haven’t tried it yet).
For create gallery, I will be assisting you later.
regards
Brajesh