Replies
- Brajesh Singh on September 17, 2016 at 5:19 pm in reply to: Is there a way to remove menu items from mediapress like with buddypress? #5680
Hi Jaume,
It is easy to do it with mediaPress. We have a well defined API for adding/removing menu nodes from all places. can you please post some screenshot and mark the links you want to be removed?Thank you
Brajesh - Brajesh Singh on September 17, 2016 at 4:59 pm in reply to: [Resolved] How to Disable Automatic update of MediaPress Gallery Cover #5679
Hi Jaume,
Can you please post a screenshot? Do you mean the Gallery cover image? - Brajesh Singh on September 17, 2016 at 12:18 pm in reply to: [Resolved] Buddyblog Featured Image #5675
Hi all,
Thank you for your patience.I am able to reproduce it. Will have an update today.
Regards
Brajesh Hi Dandy
I have sent you a mail with the plugin attached. Please check and let me know.Thank you
Brajesh- Brajesh Singh on September 17, 2016 at 8:08 am in reply to: [Resolved] BP Custom Background for User Profile – Warning message #5671
Hi Leigh,
no problem. I am glad It is resolved. Thank ou for marking it as resolved.Regards
Brajesh - Brajesh Singh on September 17, 2016 at 7:57 am in reply to: BP Ajax Registration – Registration form loading on every page #5668
Hi Archaic,
Please do send me the copy of xprofile groups at [email protected]About the changes, I will suggest using the latest version and try fiddling with ‘is_page( ‘uploader’ )’ condition instead to see if the form is appearing on all pages on not.
Yesterday’s change was aimed at unifying the conditions instead of using multiple filters for 3 different kind of loading and is future proof.
- Brajesh Singh on September 17, 2016 at 7:43 am in reply to: [Resolved] Bug on the website – themes no longer showing #5667
Hi George,
Do you mean the BuddyDev site? Also, Is it the top menu links? It is working correctly. The themes are outdated and we are going to remove all theme by next week and replace with the upcoming themes. - Brajesh Singh on September 17, 2016 at 7:26 am in reply to: [Resolved] BP Custom Background for User Profile – Warning message #5666
Hi Leigh,
Please post your complete bp-custom.php on pastebin. It has nothing to do with my code. There are two possibilities:-1. There is at least once space before the beginning php or after the ending php tag
2.Or the code trying to create session is running too late.
Thank You
Brajesh - Brajesh Singh on September 16, 2016 at 5:38 pm in reply to: BP Ajax Registration – Registration form loading on every page #5660
Hi Archaic,
No problem. I have updated the plugin. The goal of this update was to streamline the loading of form/js/css etc.Please Upgrade and then, Please make sure to do the following:-
Please Visit Dashboard->settings->BuddyPress->Options
and un check the box that saysEnable Ajax Loading of Formunder the BuddyPress Ajax registration setting
Once you are done with that, you can put the following code
setTimeout( function () { show_reg_form(); }, 1000 );In the file wp-content/plugins/bp-ajax-registration/_inc/bp-ajax-register.js
Just after the linevar magnificPopup = jQuery.magnificPopup.instance;The above is copied from https://buddydev.com/support/forums/topic/buddypress-ajax-registration-popup-on-pageload/page/2/#post-5588
And the last thing, remove any php code you are using from my previous post. They are not needed any more. Just add the following code in your bp-custom.php
function bpajaxr_only_enable_on_this_page( $load = false ) { if ( is_page( 'uploader' ) && ! is_user_logged_in() ) { return true; } return false; } add_filter( 'bp_ajaxr_is_form_enabled', 'bpajaxr_only_enable_on_this_page');That will do it.
Since the BuddyPress currently only supports one Profile Group on registration(It will change in future), I haven’t done much on that front. Hoping to push another release in next week or so with the login/password reset feature.
Thank you
Brajesh - This reply has been marked as private.