Hello,
the button for login and register is not working. And i have never seen any theme that use for styling the css editor from wordpress. Normally this area is for changes from the site owner. Not for a theme developer.
Very bad development. Hope you fix the login / register script.
This reply has been marked as private.
MkModerator
Please add following code in Wp-admin -> wplms -> footer ->Google Analytics Code
jQuery(document).ready(function($){
var headerheight=$('header').height();
var windowheight= $(window).height()+headerheight;
$('.homescreen').css('height',windowheight+'px');
$(window).scroll(function(event){
var st = $(this).scrollTop();
if($('header').hasClass('fix')){
if(st > windowheight){
$('header').addClass('fixed');
}else{
$('header').removeClass('fixed');
}
}
});
$('.open-popup-link').magnificPopup({
type:'inline',
midClick: true // Allow opening popup on middle mouse click. Always set it to true if you don't provide alternative source in href.
});
});
If still its not working please share admin credentials in private reply .