Replies
- 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.
- Brajesh Singh on February 21, 2016 at 6:34 am in reply to: Mediapress Galleries not showing up on Gallery page #2707
Thank you.
I have already pushed a fix for this on github repo herehttps://github.com/buddydev/mediapress/commit/703d1686672049b5cc464ce32c8f1d28f87797cb
I will push on WordPress.org later as I want to fix one more issue with MediaPress related to uploader shortcode.
I will message you back here after the update.
Thank you
Brajesh - Brajesh Singh on February 21, 2016 at 6:13 am in reply to: Mediapress Galleries not showing up on Gallery page #2705
Thank you.
I am sorry for all the trouble. I have found the issue and it is with MediaPress because of one of my Assumptions.
In MediaPress, I am not setting up directory query when the “User Galleries” component is disabled. That was an oversight on my part. The directory has nothing to do with the User galleries and should have been enabled by default.Please let me work on it today and I will push an update. I am sorry for all the inconveniences. For now, you may tick “User Galleries” and the directory will work.
Thank you
Brajesh - Brajesh Singh on February 21, 2016 at 5:05 am in reply to: Mediapress Galleries not showing up on Gallery page #2703
That is strange. I believed it was a slug conflict. Can you please create an account from me to check on the site? My email is brajesh@buddydev.com
Thank you
Brajesh - Brajesh Singh on February 21, 2016 at 4:11 am in reply to: Mediapress Galleries not showing up on Gallery page #2701
Thank you.
It helps a lot. Can you please settings->Sitewide gallery and change the permalink slug from ‘gallery’ to ‘albums’ and then please visit Settings->Permalinks and try changing and restoring the permalinks. Last step is needed to flush the rewrite rules.We have a slug conflict between gallery directory and single gallery permalink and that may be causing the issue. This is one of the things that we can check before debugging further.
- Brajesh Singh on February 21, 2016 at 3:54 am in reply to: Mediapress Galleries not showing up on Gallery page #2699
Can you please visit “MediaPress->Tools” and post me the debug log? That will help me to understand the issue and assist you better.
Thank you
Brajesh