Replies
- Brajesh Singh on April 23, 2018 at 4:56 pm in reply to: [Resolved] Ajax registor form customization #14739
Hi Daniel,
I am marking it resolved as per our email discussion.Regards
Brajesh - Brajesh Singh on April 23, 2018 at 4:56 pm in reply to: mediapress upload video in sitewide style youtube #14738
Hi Paolo,
Hope you are doing well.MediaPress 1.3.6 is available now and you can hook into any upload stage now.
Please see the reference here.
https://buddydev.com/mediapress/topics/api-guides/mediapress-uploader-events-lifecycle/Hope it helps you to accoplish your goal.
Best Regards
Brajesh Hi Andrew,
I hope you are doing well.MediaPress 1.3.6 makes it easy to import. We still don’t provide any ui for bulk importing but a developer and use our API to import an attachment or any file on the server to MediaPress.
That will cut down the time needed for writing a solution significantly.
Please see the references herehttps://buddydev.com/mediapress/topics/api-reference/media/import-wordpress-attachment-mediapress-gallery/
https://buddydev.com/mediapress/topics/api-reference/media/importing-file-mediapress-gallery/Regards
BrajeshHi Ben,
Just wanted to update you on this. Today, I have pushed version 1.3.6 of MediaPress. unfortunately, the media comments could not make into it. I have an experimental version with me but I am not sure of it yet.I will be following up again in next 24-48 hours with the progress.
regards
Brajesh- Brajesh Singh on April 23, 2018 at 4:48 pm in reply to: Help with creating an import add-on for WP All Import and Mediapress #14734
Hi Keith,
I have some good new on this.In MediaPress 1.3.6, I have added API to allow importing a WordPress Attachment to MediaPress gallery as well as Importing any file from the server’s directory to MediaPress gallery.
They should make the job of migrating/importing very simple. all we need is a long running or process (or ajax based) to use these API functions to import.
Please see
https://buddydev.com/mediapress/topics/api-reference/media/importing-file-mediapress-gallery/
https://buddydev.com/mediapress/topics/api-reference/media/import-wordpress-attachment-mediapress-gallery/Best regards
Brajesh - Brajesh Singh on April 23, 2018 at 4:45 pm in reply to: [Resolved] BP Profile Tab Pro – Default Tab Error #14733
Thank you Sujee.
I will suggest to hold on to update for Ajax Registration. We are revamping it and It will be a lot different in next 10-15 days from what it is now.,Regards
Brajesh Hi Jill,
I will post a bit late today or early tomorrow. I did misread the replies.Thank you
Brajesh- Brajesh Singh on April 23, 2018 at 4:39 pm in reply to: [Resolved] MediaPress Default Resolution #14731
Please upgrade to 1.3.6 and set the Original image as the displayable image in the Single Media Page(The settings is under MediaPress->settings->General tab).
That will do it now.
Best Regards
Brajesh Hi Keith,
Most of our plugins are tested with the current trunk. I like to keep an eye on the changes.We will be listing the compatibility when the BuddyPress 3.0 RC comes.
Regards
Brajesh- Brajesh Singh on April 23, 2018 at 12:54 am in reply to: [Resolved] BP Profile Tab Pro – Default Tab Error #14724
Hi Sujee,
No problem.You most probably copied the function name and php does not allow two function definitions with same name in any given scope/namespace.
Here is how you can do it.
/** * Register post type for User Content. */ function buddydev_register_post_type() { register_post_type( 'bp_user_content', array( 'label' => 'User Content', 'labels' => array( 'name' => 'User Contents' ), 'public' => false, 'show_ui' => true, 'supports' => array( 'title', 'editor', 'author', 'custom-fields' ) ) ); /* New post type*/ register_post_type( 'post_type_name', array( 'label' => 'Label Post Type', 'labels' => array( 'name' => 'Plural Label' ), 'public' => false, 'show_ui' => true, 'supports' => array( 'title', 'editor', 'author', 'custom-fields' ) ) ); } add_action( 'init', 'buddydev_register_post_type' );I hope it helps.