Dear Sir, I will like to know if there is a solution to the login authentication time or I I need to use my jQuery code in footer.
Actually I solved forcing a page reload after login,
jQuery(".course_button").on( "click", function() {
jQuery(".loginform a").bind('click', function() {
setTimeout(function() {
window.location.reload();
}, 500);
});
});
jQuery(".vibebp-login").bind('click', function() {
setTimeout(function() {
jQuery("#vibebp_login_wrapper > div > div > div > div.loginform > a").bind('click', function() {
setTimeout(function() {
window.location.reload();
}, 500);
});
}, 500);
});
But I don't think this is the best solution.
Thank you, Marco