Skip to content

Instantly share code, notes, and snippets.

@kreamweb
Created January 28, 2016 14:38
Show Gist options
  • Save kreamweb/14f1ee98972b05ae1c17 to your computer and use it in GitHub Desktop.
Save kreamweb/14f1ee98972b05ae1c17 to your computer and use it in GitHub Desktop.
YITH WooCommerce Social Login Wp Engine Fix
<?php
function ywsl_process_login_start()
{
setcookie( LOGGED_IN_COOKIE, md5(rand()), time()+15, preg_replace('|https?://[^/]+|i', '', YITH_YWSL_HYBRID_URL ) );
}
add_filter( 'ywsl_process_login_start', 'ywsl_process_login_start' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment