Hi,
How can i get the registration form with popup window on posts load?
Actually i want to show some posts to registered users only.
so for that purpose i did the code in single.php.
<?php
if ( is_user_logged_in() ) {
the_content }
?>
<?php
else {
et_register_form(); // Geting registration Form.
}
?>
Its working perfect.
But my client is asking for registration form with popup window, same like pinterest.
like you can not see posts on pinterest landing page untill you registered or login.
is there any way to show the registration form with popup and close the popup with submit form ?
Thanks