Replies
Hi Tristan,
I am sorry for the trouble.Can you please very that the child theme is active. I checked on the site but I don’t see the css file loaded(custom.css) and I have no other way to know if child theme is active.
PS:- Are you using our child theme example as a starting point or is it your own complete new child theme?
Regards
Brajesh- Brajesh Singh on January 7, 2018 at 11:19 pm in reply to: Modify visibility of Existing Profile Tab (in buddypress profile ) #12747
Hi Slim,
Please upgrade to 1.0.3
https://buddydev.com/plugins/buddypress-user-profile-tabs-creator-pro/I have added support for Friends, Followers, Following visibility level depending on whether Friends component is enabled and the BP Follow plugin is active.
Regards
Brajesh - This reply has been marked as private.
- Brajesh Singh on January 7, 2018 at 5:02 pm in reply to: [Resolved] Buddypress – How to Hide / Restrict Primary Name field? #12743
Thank you.
- Brajesh Singh on January 7, 2018 at 4:59 pm in reply to: [Resolved] Adding a gallery automatically on post creation #12742
Hi George,
you can use
if( function_exists('mediapress') ) { // }to check if MediaPress is active.
To mark a gallery as global shared, you can do the follwoing
mpp_update_gallery_meta( $gallery_id, '_mpp_is_all_upload_allowed', 1);Hope that helps.
Hi Tristan,
Welcome to BuddyDev Forums.Can you please provide me a link to your site? That will allow me to assist you better.
Thank you
Brajesh- Brajesh Singh on January 6, 2018 at 8:50 pm in reply to: [Resolved] Adding a gallery automatically on post creation #12733
sure, I am looking forward to it 🙂
- Brajesh Singh on January 6, 2018 at 8:39 pm in reply to: [Resolved] Adding a gallery automatically on post creation #12731
Thank you.
In order to update the gallery details, you can use the following function(s)
Updating gallery status(If you only need to update status)
mpp_update_gallery_status( $gallery, $status ); // $status can be any valid status e.g 'public', 'private' etc.Or you can use
mpp_update_gallery( $args );where $args can be
$args = array( 'id' => $gallery_id, // *Required 'title' => 'gallery title', // optional, if not given, keeps the current gallery title. 'description' => 'gallery description', //optional. 'slug' => 'gallery-unique-slug', 'creator_id' => $user_id,//who created this gallery. 'order' => 0, // menu order. 'component_id' => $user_id,//optional. will keep current component if not given. 'component' => 'sitewide', // optional 'status' => 'public', //new status 'type' => 'photo', //new type? );Everything except the id is optional.
For example, Here is how we are updating the gallery description.
https://github.com/buddydev/mediapress/blob/master/core/ajax/mpp-ajax.php#L1049
Hope that helps.
Regards
Brajesh - Brajesh Singh on January 6, 2018 at 8:28 pm in reply to: [Resolved] Adding a gallery automatically on post creation #12730This reply has been marked as private.
- Brajesh Singh on January 6, 2018 at 8:13 pm in reply to: [Resolved] Adding a gallery automatically on post creation #12727
Thank you for the update.
You can do that by using the following code
$associated_gallery_id = get_post_meta( $post_id, '_mppc_associated_photo_gallery_id', true );You should use the actual post id for fetching gallery id.