Skip to content

Adding a Registration Popup

You can add a registration pop up on any landing page. This require a script code to be added to the footer section when creating or editing a page.

Copy and Paste this script into the footer section of the page if you want the user to be able to EXIT out of the popup/registration requirement.

<script>
 jQuery(document).ready(function($) {
   $('#idx-register-login').modal('show')
 })
</script>

(OR)

Copy and Paste this script into the footer section of the page if you want the user NOT to be able to EXIT out of the popup/registration requirement.

<script>
 jQuery(document).ready(function($) {
   $('#idx-register-login').modal({backdrop: 'static', keyboard: false})
   $('.close').css("display","none");
 })
</script>

Wordpress Details 1