Replies
- Brajesh Singh on December 30, 2018 at 1:58 pm in reply to: [Resolved] Question about Blog Categories For Groups setting #19812
Hi Bin,
We will be assisting you on Monday/Onwards. Our Community Support is not available on the weekends.
Thank you for the patience.
Regards
Brajesh - Brajesh Singh on December 30, 2018 at 1:43 pm in reply to: [Resolved] paiement with featured Member #19804
Hi Herve,
Thank you.
Happy Holiday and Wish you a wonderful year ahead:)Regards
Brajesh - Brajesh Singh on December 30, 2018 at 1:42 pm in reply to: [Resolved] BP Auto Activate Autologin Redirect – new members not showing on site #19801
Marking Resolved. Please open new topic if facing any issue.
Regards
Brajesh - Brajesh Singh on December 30, 2018 at 1:42 pm in reply to: [Resolved] Users disappeared after registration with BuddyPress Auto Activate Auto Login #19800
Marking it resolved. If anyone reading it have any isue with the plugin, Please open a new topic and we will assist promptly.
Regards
Brajesh Hi Carsten,
Thank you for the questions.The avatar sizes may get overridden by css(forced size). Let us keep that in mind and then see our options now.
1. BP_AVATAR_FULL_WIDTH is used for full size avatars. By default, when you visit a user’s profile or a single group page, the display photo uses this size. It can be overridden by themes.
BP_AVATAR_THUMB_WIDTH is used for user/group thumbnails(The size you see in directory). Widgets my use css to override it(default widgets do).
Please do note that any change in the avatr constants will be reflected for new uploads. It won’t show for the existing uploaded avatars much.
2. That section deals with setting default avatar images for users who have not uploaded it. By dynamically, I am referring that you can use user attributes to decide which avatr you want to show them(An example will be showing gender based avatar)
3. BP_AVATAR_ORIGINAL_MAX_WIDTH it is the size of image used for canvas while cropping avatar. If you upload an image which has larger width/height than then, they will be scaled to this width/height as maximum. And this scaled image will be used to let you crop. Try uploading a larger image and seehow they are shown on the crop screen.
Hope this clarifies.
Regards
Brajesh- Brajesh Singh on December 29, 2018 at 11:37 am in reply to: [Resolved] Do not force redirect on non BuddyPress pages with force follow function #19791
Hi Tosin,
Here is your update function/** * Buddydev force follow 6 members function. */ function buddydev_check_or_redirect() { // Force profile photo active? $fp_active = class_exists( 'BD_Force_User_Avatar_Helper' ); // skip if logged and on non bp page. if ( is_user_logged_in() && ! is_buddypress() ) { if ( $fp_active ) { remove_action( 'bp_template_redirect', array( BD_Force_User_Avatar_Helper::get_instance(), 'check_or_redirect', ), 1 ); } return; } if ( ! function_exists( 'bp_follow_get_the_following_count' ) || ! is_user_logged_in() || is_super_admin() ) { return; } $is_dir = bp_is_members_directory(); // if we are on directory and force profile is not active // return. if ( $is_dir && ! $fp_active ) { return; } $follow_count = bp_follow_get_the_following_count( array( 'object_id' => get_current_user_id() ) ); if ( $follow_count >= 6 ) { return; } if ( $is_dir && $fp_active ) { remove_action( 'bp_template_redirect', array( BD_Force_User_Avatar_Helper::get_instance(), 'check_or_redirect', ), 1 ); return; } bp_core_add_message( __( 'Please follow 3 more members to continue.' ), 'error' ); bp_core_redirect( bp_get_members_directory_permalink() ); } add_action( 'bp_template_redirect', 'buddydev_check_or_redirect', 0 );Please give it a try.
Thank you
Brajesh - Brajesh Singh on December 29, 2018 at 11:17 am in reply to: [Resolved] add twitter video in activity stream #19789
Hi djoula,
Thank you. The reason is we support linking in the following 2 cases currently
1. The link is a direct link to a file hosted on any site.
2. Or the link can be embedded via oembed.In the second case, we go a bit further and check for the content type of the oembed response before allowing it.
In case of twitter, the returned content type is “rich” and from it we are unable to deduce if it is a video or status update.
That’s why MediaPress does not support it. We support the providers which explicitly state the oembed content type to be video/photo.
AS for activity plus, It works by scrapping the content from the page and adding it. So, they are able to deduce the type and add it.
We are hoping to have a new type(rich content/link) and do the same in march onwards.
PS:- I have received your messages and was going to suggest using Activity Plus for the same but I see that you have already tried it.
Regards
Brajesh - Brajesh Singh on December 29, 2018 at 9:39 am in reply to: [Resolved] media press for adult content based site links #19785
Hi djoula ,
Thank you for asking.I am sorry but we are unable to confirm as we did not check.
Also, I am very sorry but our team won’t be able to assist much as we are not very comfortable with adult content. If you plan to use MediaPress, Please do consider the support aspect before taking a decision.
Regards
Brajesh - Brajesh Singh on December 29, 2018 at 9:30 am in reply to: [Resolved] BP Auto Activate Autologin Redirect – new members not showing on site #19783
Hi Joey,
We have issued your refund.If you need any other help, Please do let me know.
Thank you
Brajesh - Brajesh Singh on December 29, 2018 at 9:28 am in reply to: [Resolved] Users disappeared after registration with BuddyPress Auto Activate Auto Login #19782
Hi Joey Barker,
Your refund has been issued. Please check.If you still want to use this plugin or check a live demo of the plugin where it is working(since you commented about this), please do let me know.
Thank you
Brajesh