Replies
- Brajesh Singh on September 15, 2016 at 4:02 pm in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5628
Hi George,
I don not use the zip files from github and I am not sure if renaming will do that or not. So, I recommended that to be on the safe side. If the uploaded file do not extract as mediapress, you may end up with two copies.Also, If it is not working for you, Please use ftp instead or will have to wait till the next release.
- Brajesh Singh on September 15, 2016 at 3:44 pm in reply to: [Resolved] insert image via wysiwyg into forum posts bbpress #5625
Congratulations Simon.
I will add it to our upcoming MediaPress resources pages.
- Brajesh Singh on September 15, 2016 at 3:37 pm in reply to: BP Ajax Registration – Registration form loading on every page #5623
Hi Archaic,
I am sorry, I had closed that topic per your last message.I can understand it happening. We are forcing the plugin to load on one page, It was not created for that. Here is a temporary solution. I will have better way to handle it in future.
For now, Please open bp-ajax-register.php and modify this
function bpajaxr_include_form() { if ( is_user_logged_in() || ! bp_get_signup_allowed() ) { return; } $is_enabled = get_option( 'bp_ajax_use_registration_form', 1 ); if ( $is_enabled ) { return; } $helper = BP_Ajax_Registration_Handler::get_instance(); BP_Ajax_Registration_Handler::show_form(); }to this
function bpajaxr_include_form() { if ( is_user_logged_in() || ! bp_get_signup_allowed() || ! is_page( 'sign-up' ) ) { return; } $is_enabled = get_option( 'bp_ajax_use_registration_form', 1 ); if ( $is_enabled ) { return; } $helper = BP_Ajax_Registration_Handler::get_instance(); BP_Ajax_Registration_Handler::show_form(); }That will do it.
- Brajesh Singh on September 15, 2016 at 3:36 pm in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5622
1. Please delete older version
2. Do not use the github download directly. You will have problem in future upgrades.3. Extract Zip file, It should be extracted to mediapress-master perhaps.
4. rename it to mediapress and zip it. Then upload.Or the easiest way is to use FTP.
- Brajesh Singh on September 15, 2016 at 2:43 pm in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5618
Hi George,
Please download the plugin from github. It is fixed now
https://github.com/buddydev/mediapress/commit/65339379f132950fbd9f566c1e0a4eb8de8827ddThank you
Brajesh - Brajesh Singh on September 15, 2016 at 2:34 pm in reply to: [Resolved] Any way to set Gallery ON by default for Groups? #5617
Hi Jaume,
Thank you. It was a bug. I have it fixed in
https://github.com/buddydev/mediapress/commit/061d913d578bcdaa5f50aaea365604e3c2647fa9It will be available in our next release.
Thank you
Brajesh - Brajesh Singh on September 15, 2016 at 1:40 pm in reply to: Social sharing buttons on image view #5613
Hi Simon,
Please use mpp-social-share plugin based on the Simple social pluginhttps://github.com/mediapress/mpp-social-share
We haven’t released it officially yet, so if you find any issue, Please do let us know.
Thank you
Brajesh - Brajesh Singh on September 15, 2016 at 8:46 am in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5608
Thank you. Just checked and I see the problem. Instead of returning the data as string the shortcode is echoing that. A fix is coming very soon today.
- Brajesh Singh on September 15, 2016 at 8:35 am in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5606
Hi George,
Can you please move the shortcode at the bottom of the content and see what happens? - Brajesh Singh on September 15, 2016 at 3:20 am in reply to: Buddypress Ajax Registration -> Popup on pageload #5601
Thank you. I am glad I was able to help.
We have plans to impart some functionalities in future in the plugin itself.
Marking it as resolved now.
Brajesh