The Sign Up Form is appearing on every page, how can I set to open it only once for each users?
You can use the following parameter, during the initialization:
'once_per_user': true
If you would like to display it once for users who already signed up, then add:
'once_per_filled': true
The initialization will look like:
<script type='text/javascript'>
jQuery(document).ready(function() {
jQuery('body').sspopup({'once_per_user':true});
});
</script>
Of course, you can add many more additional paramaters, see the full list in the Documentation in the downloaded ZIP file.