image or content on mobile menu?
Ooops Sorry/// forgot that ... I had an administrator dir protection in place...
I updated the fields and I gave you the credentials for this place as well...
I don't have any IP blocking service or geofence restritctions in place...
So if you cannot login with the credentials I updated, please let me know!
- Edited
fidi2610 So if you cannot login with the credentials I updated, please let me know!
Kindly review as the htacess login details arent working which also attributes to details not mentioned in structured way in edit fields
Can you add the details under respective headings in edit fields enabling us to access with ease:
Site admin account
Admin panel username/password
htaccess login - username/password
Ftp info (host, user, pass)
ftp hostname, username, password
Hi again...
I removed htaccess to make it easier... I updated the credentials... pleace check and let me know if you have any problems!
Thank you in advance for your time...
Sorry to hear that!... I am sending you the zipped default.php (though as I told you it is exactly the same as the original file... )
let me know if the attachment got through!
Thank you for your efforts (I really appreciate it)
Are there any news about /layouts/default.php ?!?!?!
Hi.
I really don't want to rush things out...
But initially I was given the impression that, what I asked was quite simple! (the solution first given to me was claimed to work on your side!)... I am fairly satisfied with your service so far (my subscription is due to renew in some days and I will be happy to renew).
But do we have a time estimate about an answer given to my question? The initial question was posted 10 days ago!
Seriously?
No answer from no one? My last post was two days ago just to see about the progress of my question!
Should I raise a premium ticket support?
I wait for your reply.
Thank you in advance.
ok @saguaros....
(Please pay some attention to this matter, because the last time you told me you "will get back" to me, was 5 days ago!)
I understand your efforts and amount of posts you have to pay attention to. I just want to be updated about progress and not feel abandoned!
Thank you in advance
fidi2610 Hi. Ok I see where the problem in my idea is. Please remove this line I've told You about before and instead add this code:
<?php if($this->API->modules('top_nav')) : ?>
<div class="gkAsideModule"><jdoc:include type="modules" name="below_menu" style="none" /></div>
<script type=“text/javascript">(function($) {$(document).ready(function() {
$('.gkAsideMenu').after('.gkAsideModule');
});})(jQuery)</script>
<?php endif; ?>
copy all of it right before closing </body> tag in the same default.php file. There may be one issue with that, so please make sure to inform me after You will add this code so I'll be able to check it.
I just realized that the module is showing up at the end of the page but NOT on the mobile background-transparent menu!
So it's still not working!
Waiting for further instructions...
fidi2610 Hi. It's hard to tell why since I cannot see Your site still. Can You Inspect Your site (option on Right Mouse Button click) and check the Console tab? Can You see there any errors? Maybe I've done some typo.
Anyway try with this simplified script despite of the above tip:
<?php if($this->API->modules('top_nav')) : ?>
<div class="gkAsideModule"><jdoc:include type="modules" name="below_menu" style="none" /></div>
<script>(function($) {$(document).ready(function() {
$('.gkAsideMenu').after('.gkAsideModule');
});})(jQuery)</script>
<?php endif; ?>
I usesed the simplified script but I donn't see any difference... At the console I see no errors....
The custom module still shows at the end of the page (not at the black-transparent mobile menu!)
(why can't you login with the credentials I gave you? there is no geofence whatsoever!!!)
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; ?>