BP_Nouveau::platform_login_scripts()
Description
Source
File: bp-templates/bp-nouveau/buddypress-functions.php
public function platform_login_scripts() {
?>
<script>
jQuery( document ).ready( function () {
if ( jQuery('.popup-modal-register').length ) {
jQuery('.popup-modal-register').magnificPopup({
type: 'inline',
preloader: false,
fixedContentPos: true,
modal: true
});
jQuery('.popup-modal-dismiss').click(function (e) {
e.preventDefault();
$.magnificPopup.close();
});
}
if ( jQuery('.popup-modal-login').length ) {
jQuery('.popup-modal-login').magnificPopup({
type: 'inline',
preloader: false,
fixedBgPos: true,
fixedContentPos: true
});
jQuery('.popup-modal-dismiss').click(function (e) {
e.preventDefault();
$.magnificPopup.close();
});
}
});
</script>
<?php
}
Questions?
We're always happy to help with code or other questions you might have! Search our developer docs, contact support, or connect with our sales team.