Replies
- 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 brajesh@buddydev.comAbout 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.
- Brajesh Singh on September 16, 2016 at 4:32 pm in reply to: Lightbox Responsivity on Mobile – Checking for Landscape or Portrait Orientation #5658
Hi Simon,
You may find this helpful
https://css-tricks.com/snippets/css/media-queries-for-standard-devices/Regards
Brajesh - Brajesh Singh on September 16, 2016 at 4:31 pm in reply to: Gallery Meta title and descriptions #5657
Hi Simon,
Yoast has issues with BuddyPress and most probably that is causing the issue here. Please do let me know if it is happening on non Yoast installation too. - Brajesh Singh on September 16, 2016 at 6:52 am in reply to: BP Ajax Registration – Registration form loading on every page #5651
Hi Archaic,
I am sorry for the trouble you had to go through. Please let me update the plugin instead and remove all these dependencies from the last topic and this and I am going to make it simple enough to load on any single page. Please let me do it for couple of hours.That will be better as it will avoid any issue for you in future upgrades.
- Brajesh Singh on September 15, 2016 at 5:40 pm in reply to: Mediapress – a couple of feature requests #5643
Hi George,
Thank you1. It will come sometime in future.
2. It is already part of MediaPress. Most probably you have playlist view enabled for the video/audio that’s why you don’t see it. It should be visible on photo galleries(always) and on audio/video gallery when grid view is used.
- Brajesh Singh on September 15, 2016 at 5:39 pm in reply to: [Resolved] Auto rename uploaded Mediapress files for security #5642
The plugin is very lightweight and I would have recommended it wholeheartedly if it allowed using it by 3rd party. For now, Please avoid it. May be I will try to send them a pull request on github in future when I have some free time.