Replies
- Brajesh Singh on September 15, 2016 at 5:35 pm in reply to: Setting Issue or Bug? Can't Delete Media in MediaPress #5641
Hi Rick,
If feasible, Please provide me a temporary account on the site. I will like to take a look and assist you better.thank you
Brajesh - Brajesh Singh on September 15, 2016 at 5:33 pm in reply to: [Resolved] Looking for ideas – Post page with gallery attached #5640
Thank you. I am glad you sorted it out.
Another option to hide error was to use
show_error = 0 in the shortcode tag. - This reply has been marked as private.
- Brajesh Singh on September 15, 2016 at 4:32 pm in reply to: [Resolved] [UPDATED] Error 404 when joining a private group #5633
Hi Jaume,
I had checked it on my latest WordPtress/BuddyPress install before commenting. Please see the screeen here. I just checked again.I am glad it is workable for you at the moment but I still suggest checking for plugin conflict.
Regards
Brajesh Hi Tiziano,
Thank you.
That makes sense now.I am looking into it. seems like a recent change in BuddyPress is responsible for this behavior.
Regards
Brajesh- 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