Replies
Hi Greg,
Thank you for confirming.1. For notifications, Please check your spam emails. Most probably the mails are going in spam/junk folder if not appearing in the inbox.
2. There are multiple ways to achieve it.
a. Create 2 different tabs with different name/slug and for each tab, select the group you want them to attach from the right side Scope area.
b. or Create 2 tabs with same slug and different labels and scope them to different groups.
Regards
Brajesh- Brajesh Singh on June 7, 2022 at 12:49 pm in reply to: Mediapress strongly downgrade images when posting them – URGENT #45214
Hi Giuseppe,
Thank you.1. In your example, you are referring to a resized version of the image.
When an Image is uploaded, there are 3 resized versions of image is created by us for use on cover/thumbnail.
Please use the ‘original’ size for single image and It will use your originally uploaded image (If the dimension is huge, It might be constrained via css in the browser though).
Regards
Brajesh - Brajesh Singh on June 7, 2022 at 12:46 pm in reply to: buddyblog medium editor not displaying embeds #45213
Hi Tosin,
The embed is working for us.1. Is the video publicly embeddable?
2. Are you using gutenberg? If yes, is the video appearing when embedded in a page created with it?Regards
Brajesh - Brajesh Singh on June 7, 2022 at 12:44 pm in reply to: [Resolved] BuddyPress Custom Xprofile Fields – Decimal Field #45212
Hi Quint,
Thank you for the question.I will not suggest using the number field for lat/long. You should either use the text field(even number is stored as text data due to xporofile table structure) or use teh BuddyPress Xprofile Geolocation plugin which is better suited for similar task.
Regards
Brajesh - Brajesh Singh on June 7, 2022 at 11:42 am in reply to: Mediapress strongly downgrade images when posting them – URGENT #45208
Hi Giuseppe,
Thank you for using MediaPress.MediaPress does not do anything with the quality of images. For the non original sizes, we ask WordPress to resize it for us.
Are you using any optimization plugin that controls quality?
Also, what do you mean by degradation? Is it the image size or the dimension?Please let me know and I will assist.
Regards
Brajesh Also,
Please check your spam mail if you are not receiving the notification.Regards
BrajeshThank you Greg,
Please do the following.
1. Add the Tab slug in the first screenshot in the list( please put some value such as discount-tab)
2. In the 3rd screenshot, under Sub Nav, Please do the followinga. Tick is enabled(should be checked)
b. Put a label “Discount” or something on that line without quotation marks.
c. Put a slug such as ‘discount’ without quotation marks.
d. specify position (may be 5)
e. Add some Content/shortcode that you want to show the user.All your other settings are correct and please do keep them as they are.
Please give it a try and let me know.
Regards
Brajesh- Brajesh Singh on June 6, 2022 at 11:10 pm in reply to: [Resolved] Buddyblog change author if post is published in a specific category #45201
Hi Tosin,
Please share your complete posting workflow(is the post moderated etc). If it’s not working, I need to understand your workflow to amend the code.Also, are you sure that user Id you used for anonymous user actually exists?
Regards
Brajesh Hi Tomas,
Thank you for purchasing from us.The Emoji needs to convert the posting area from plain text to content editable and that may have issues with some of the themes as we don’t have control over their js. That’s why it is available with our theme currently.
I have seen your mail and the name of the theme. I will be writing back over mail for more details as I update the plugin to support your theme.
Regards
Brajesh- Brajesh Singh on June 6, 2022 at 7:35 pm in reply to: [Resolved] Buddyblog change author if post is published in a specific category #45197
Hi Tosin,
Please try this code
/** * Update BuddyBlog Author when a post is submitted in a specific category. */ add_filter( 'bblpro_post_submission_prepared_data', function ( $post_data, $form_id, $post, $is_submission ) { // update author if the category was selected. Don't do anything on edit. $anonymous_cat_id = 1487; $anonymous_user_id = 4766806; if( ! $is_submission ) { return $post_data; } $selected_terms_ids = isset( $post_data['tax_input'] ) ? (array) $post_data['tax_input'] : array(); $selected_categories = isset( $selected_terms_ids['category'] ) ? (array) $selected_terms_ids['category']: array(); if( ! $selected_categories || ! in_array( $anonymous_cat_id, $selected_categories ) ) { return $post_data; } // Update. $post_data['post_author'] = $anonymous_user_id; // keep current user data for future? if ( ! empty( $post_data['ID'] ) ) { update_post_meta( $post_data['ID'], '_bbl_original_post_author', get_current_user_id() ); } return $post_data; }, 10, 4 );Regards
Brajesh