Failing to load my script files in wordpress! i can’t figure out what i’m doing wrong

Probable Cause I strongly suspect that you do not call wp_head() in your header.php file, immediately before the closing HTML </head> tag: <?php wp_head(); ?> </head> You must call this template tag, in order to fire the wp_head action. The wp_head action in turn fires the wp_enqueue_scripts action. So, without having <?php wp_head(); ?> in … Read more

Register through url

I see a few possibilities. When you generate the emails (I don’t know how you are doing this but we’ll skip that), register an user for each email generated. Then track the user logins. If, after a week or so, the user has not logged in, delete the user. When you generate the emails, generate … Read more