fidi2610 Hi. The problem of blocking Your site was from my side. My blocks firewall was set like that, so I had to look at it from outside of my home/office and was finally able to figure that out.
Here is a code added to /layout/default.php
<?php if($this->API->modules('below_menu')) : ?>
<div class="gkAsideModule"><jdoc:include type="modules" name="below_menu" style="none" /></div>
<script>(function($) {$(document).ready(function() {
var isGkAsideModule = 0;
function checkForChanges() {
if( $('#gk-menu-overlay-wrap').size() > 0 && isGkAsideModule != 1 ) {
$('#gk-menu-overlay-wrap').append( $('.gkAsideModule') );
isGkAsideModule = 1;
} else {
setTimeout(checkForChanges,1);
}
}
$(checkForChanges);
});})(jQuery)</script>
<?php endif; ?>