Replies
- Brajesh Singh on February 25, 2016 at 6:44 pm in reply to: [Resolved] User Galleries in user card in backend #2737
Hi Gregorio,
It is not available at the moment in the admin but we can add this functionality on all galleries screen and link to the profile.We will need a few days to do that though. Will it be fine if we release with this enhancement next week?
Thank you
Brajesh - Brajesh Singh on February 25, 2016 at 6:43 pm in reply to: BuddyPress Confirm Actions + Stripe #2736
Hi Kenny,,
I am sorry, seems like I forgot to mail you the modified code. I am too tired at the moment and leaving but I will send you the code and the message early morning.Thank you
Brajesh - Brajesh Singh on February 25, 2016 at 5:45 am in reply to: [Resolved] BP Autologin on Activation #2732
Thank you Jon 🙂
Appreciate you taking time to reply and confirm.Thank you
Brajesh - Brajesh Singh on February 25, 2016 at 5:44 am in reply to: BuddyBlog – Custom Post Type, Custom Taxonomies, and Permalinks #2731
Hi Devin,
Thank you for asking.1. No, You don’t need to put the code anywhere.
2. Please visit Settings->BuddyBloog and look for the following settingShow single posts on user profile?Set it to no, and it should redirect to single post instead of user profile. That should fix both the issue.
PS: If it is still giving 404, please visit Settings->Permalink, try to change it to something else and then change back. That will flush the permalink. When we register a post type(in general, It has nothing to do with the BuddyBlog), We need to flush the rules atleast once to make it work.
Please do let me know if that works for you or not?
Thank you
Brajesh - Brajesh Singh on February 23, 2016 at 5:33 pm in reply to: [Resolved] BP Autologin on Activation #2726
Hi Jon, Any update on this?
- Brajesh Singh on February 23, 2016 at 5:32 pm in reply to: [Resolved] [MediaPress] Enable admin to upload images to user gallery from frontend #2724
Thank you Gregorio and Ravi.
Marking the topic as resolved. Please feel free to open new topic if you need any further assistance. - Brajesh Singh on February 23, 2016 at 5:31 pm in reply to: [Resolved] Members need Logged In Users ONLY / Privacy Default Status Only Works on Backend #2722
Thank you.
Marking the topic as resolved 🙂 - Brajesh Singh on February 22, 2016 at 7:18 pm in reply to: [Resolved] Request to add 'Left group' activity entry to BuddyPress #2713
Hi Tony,
Thank you.I understand your point and will post the code sometime later today 🙂
- Brajesh Singh on February 22, 2016 at 7:06 pm in reply to: [Resolved] Gallery Shortcode Pages – Pagination 1 2 3 etc Built In? #2712
Hi,
Thank you for posting.
The pagination links are not supported in the shortcodes yet. Please allow me look into it today and see if I can get the pagination working.Thank you
Brajesh - Brajesh Singh on February 22, 2016 at 6:34 pm in reply to: [Resolved] Members need Logged In Users ONLY / Privacy Default Status Only Works on Backend #2711
Hi Horton,
Thank you for posting.1. Using default status in the dropdown:- I have enabled it now.
https://github.com/buddydev/mediapress/commit/f5ec642d033d63322e4871b291a07b73651f212d2. Yes, It is possible to limit status per component, we haven’t put the settings UI yet.
We use a function
mpp_component_add_status_support( 'component_name', 'status_name'); e.g mpp_component_add_status_support('sitewide', 'public');to add the support for a status with a component. Currently, It is enabled for all included components.
Until we put the UI, you can disable the support for a status by using the following code
function mpp_custom_disable_status_for_components() { mpp_component_remove_status_support('sitewide', 'public');//no public galleries for sitewide component //possible component names (groups, members,sitewide) //possible status names (public, loggedin,private,friendsonly, followersonly, followingonly, groupsonly) //public, loggedin,private applies to all components // friendsonly, followersonly, followingonly status only applies to members component //groupsonly only applies to groups } add_action( 'mpp_setup', 'mpp_custom_disable_status_for_components', 11 );Hope that helps.