tango15mk
Forum Replies Created
-
Hi! Thanks for the reply.
This is the code I have implemented:
// Send Google Event Tracking On User Login add_filter( 'user_registration_login_redirect', 'ur_track_user_login_session', 10, 2 ); function ur_track_user_login_session($redirect,$user){ userActivity::add_new_user_activity(null,'Account','Logged In'); // Use your code here to track event ?> <script>ga('create', 'UA-XXXXXX', 'auto');ga('send', 'event','Account','Logged In');</script> <?php // The $redirect parameter expects an url to be returned by this filter. return $redirect; }
I have replace my Google analytics code with XXXX for the purpose of posting here.
My own custom site tracking works fine ‘userActivity::add_new_user_activity’ so I know the hook is working, unfortunately however the Event send to Google analytics is not working?
Any ideas?
Forum: Plugins
In reply to: [WooCommerce] How To Reorder Address Fields?Forgot to mention that I would like this across the billing / shipping address as well as the order forms etc if possible.
Thanks!
Forum: Plugins
In reply to: [SEO Ultimate] Undefined Index 00 in locale.phpSolved! Thank god that a ‘reinstall’ function was added to this plugin! A quick reinstall and the error is gone!
Thanks!
Forum: Fixing WordPress
In reply to: htaccess pretty url problemI have done that and it works for my posts, but my above example is for a page I have coded myself.
Thanks
Forum: Plugins
In reply to: [Theme My Login] How to check whether a posted value exists?Thank you very much and finally how can I then compare that value?
For example:
$myMonth = "February"; if ( $template->get_posted_value( 'dob_month' ) && **posted value is equal to $myMonth**) { echo "The submitted month matches the variable!"; }
I have installed your update and it seems to have corrected the API timeout error I was getting.
Just FYI, since installing the update I have noticed a PHP notice showing in my debug notes that there is an undefined index ‘m’ in:
/sucuri-scanner/sucuri.php on line 5116
Thanks
GaryYorman, thank you for providing the alternative code, excuse my ignorance but am I right in thinking that all I would need to do is disable my existing plugin installation of Sucuri and then install the plugin alternative you have provided above?
Any idea of when the update may be coming out officially?
Thank you for your help.
Gary
Forum: Plugins
In reply to: [Async JS and CSS] INSECURITY – plugin deactivated by hostscdwb Sorry for contacting you through here but I can’t seem to find any other way of getting you, I saw that you managed to resolve the issue of the theme my login profile page validation which I am stuck with myself, can you contact me to help? Its the last part of my project so desperately need it fixing ?? email on profile page! Thanks! ??
Forum: Plugins
In reply to: [Theme My Login] Login form redirect issue?Tried it again now and it does what I would like it to but am curious in adjusting it so it wouldn’t show the register form in the widget in the future?