andrewnormore
Forum Replies Created
-
Please see here — Your SERVER SIDE pixel is bugged out.
My BROWSER side hack works.
Forum: Networking WordPress
In reply to: multisite custom template not working on home pageI hijacked front-page.php to detect subdomains, and do a force redirect to that sub1.mysite.ca/home, which is like a psudo home page.
Not pleased about it, but, hey.
This is an AJAX error. Still looking for solution.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Captcha supportCool! I added the CSS. Just cleans it up a little bit. The devil is in the detail.
Thanks so much for this plugin. It ROCKS.
Forum: Plugins
In reply to: [Videopack] NOT PROCESSING: Video Embed & Thumbnail Generator Encoding QueueAh I see what you’re saying about Cron Manager. Here is my current list of Cron:
The only kgvid reference is kgvid_cleanup_queue
It appears I may be missing some cron functions!?
Forum: Plugins
In reply to: [Videopack] NOT PROCESSING: Video Embed & Thumbnail Generator Encoding QueueThanks for your timely reply, here’s what I found:
– Works the same on 4.2.1 as it ever did
– I am running a script executing every 60 seconds to update some stuff, and that’s working great.
– Screenshot of my Que: https://i.imgur.com/QS5NSf8.png
– When I click Update, it says it’s qued to run: https://i.imgur.com/uiftsza.png
I don’t see any errors while logging :S
This is pretty buggy stuff, the register_form is a useless function man. You’re better off building your own damn register page.
It didn’t even give me the email field. I’ve got the two working nicely together, here’s the finished code that worked for me, seen at actualrewards.com
<form method="post" action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" class="wp-user-form"> <input id="user_email" class="input" type="text" value="" name="user_email"> <?php do_action('register_form'); ?> <input type="submit" name="user-submit" value="<?php _e('Sign up!'); ?>" class="user-submit" tabindex="103" /> <?php $register = $_GET['register']; if($register == true) { echo '<p>Check your email for the password!</p>'; } ?> <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>?register=true" /> <input type="hidden" name="user-cookie" value="1" /> </form>
This took me a while to figure out, it’s pretty silly.
Reason: do_action(‘register_form’) only shows the form. That’s it. No <form> tags, no <input type=’submit’ />
Solution:
<form method="post" action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" class="wp-user-form"> <?php do_action('register_form'); ?> <input type="submit" name="user-submit" value="<?php _e('Sign up!'); ?>" class="user-submit" tabindex="103" /> <?php $register = $_GET['register']; if($register == true) { echo '<p>Check your email for the password!</p>'; } ?> <input type="hidden" name="redirect_to" value="<?php echo $_SERVER['REQUEST_URI']; ?>?register=true" /> <input type="hidden" name="user-cookie" value="1" /> </form>
Forum: Plugins
In reply to: [Hotspots Analytics] Not tracking LinksThanks for a quick reply. I’ll check in with different browsers and report back. ??