By Christopher Ambler on Thursday, 08 June 2017
Posted in Technical Issues
Replies 9
Likes 0
Views 505
Votes 0
I note after the last update, there's a loader and spinner on my front page. I can't seem to figure out what this is.

Here's the code block that seems to be doing it:


<div class="eb-template" data-name="site/layout/image/popup">
<div id="eb" class="eb-image-popup">
<div class="eb-image-popup-header">
<div class="eb-image-popup-close-button"><i class="fa fa-close"></i></div>
</div>
<div class="eb-image-popup-container"></div>
<div class="eb-image-popup-footer">
<div class="eb-image-popup-thumbs"></div>
</div>
<div class="eb-loader-o size-lg"></div>
</div>
</div>
Hi there,

It would be best if you can provide us with your backend and FTP access for further check on this issues.
·
Thursday, 08 June 2017 12:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Why do you need that kind of access? I'm just trying to determine why this is showing up. You guys wrote the template, not me.

Giving out admin access is not something I regularly do, as the server has PII. This would violate my security agreement with credit card processors.
·
Tuesday, 13 June 2017 22:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi there,

Why do you need that kind of access? I'm just trying to determine why this is showing up. You guys wrote the template, not me.

It is required for us to check on your site as it might got conflict with your current template or plugin as we cannot replicate those issus faced by you on our local instance.

Thanks for your understanding
·
Wednesday, 14 June 2017 10:20
·
0 Likes
·
0 Votes
·
0 Comments
·
hi, this is easy to do with a minor override.

First locate /components/com_easyblog/themes/wireframe/structure\default.php

Second copy this file in this folder YOUR-JOOMLA-THEME\html\com_easyblog\blogs\structure\

Third change the orginal code :

<?php
/**
* @package EasyBlog
* @copyright Copyright (C) 2010 - 2017 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Unauthorized Access');
?>
<div id="eb" class="eb-component eb-<?php echo $this->theme;?> eb-view-<?php echo $view;?> eb-layout-<?php echo $layout;?> <?php echo $suffix;?>
<?php echo $this->isIphone() ? ' is-iphone' : '';?>
<?php echo $this->isMobile() ? ' is-mobile' : '';?>
<?php echo $rtl ? ' is-rtl' : '';?>"
>
<?php echo $jsToolbar; ?>

<?php if ($miniheader) { ?>
<div id="es" class="es">
<?php echo $miniheader; ?>
</div>
<?php } ?>

<?php echo $toolbar; ?>

<?php echo EB::info()->html();?>

<?php if ($loadImageTemplates) { ?>
<?php echo $this->output('site/layout/image/popup'); ?>
<?php echo $this->output('site/layout/image/container'); ?>
<?php } ?>

<?php echo $contents; ?>

<?php if ($jscripts) { ?>
<div>
<?php echo $jscripts;?>
</div>
<?php } ?>
</div>



To this:

<?php
/**
* @package EasyBlog
* @copyright Copyright (C) 2010 - 2017 Stack Ideas Sdn Bhd. All rights reserved.
* @license GNU/GPL, see LICENSE.php
* EasyBlog is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
defined('_JEXEC') or die('Unauthorized Access');
?>
<div id="eb" class="eb-component eb-<?php echo $this->theme;?> eb-view-<?php echo $view;?> eb-layout-<?php echo $layout;?> <?php echo $suffix;?>
<?php echo $this->isIphone() ? ' is-iphone' : '';?>
<?php echo $this->isMobile() ? ' is-mobile' : '';?>
<?php echo $rtl ? ' is-rtl' : '';?>"
>
<?php echo $jsToolbar; ?>

<?php if ($miniheader) { ?>
<div id="es" class="es">
<?php echo $miniheader; ?>
</div>
<?php } ?>

<?php echo $toolbar; ?>

<?php echo EB::info()->html();?>

<?php echo $contents; ?>

<?php if ($jscripts) { ?>
<div>
<?php echo $jscripts;?>
</div>
<?php } ?>
</div>



Like you see we delete the code wich load the popup container.

And of curse this will disable popup functionality in front page
·
Saturday, 24 June 2017 18:18
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing Zeosing, but I am not encourage to do this changes is because this will not solve that main issue, it might conflict one of his current template or one of the system plugin.

@Christopher, perhaps you can try temporary setup a staging site so we can able to troubleshoot this issue from there and it will not affect with your live site.

Or you can try temporary switch to Joomla default template Protostar and see that issue is it still persists? If yes, mean one of the plugins causing this issue.
·
Saturday, 24 June 2017 21:20
·
0 Likes
·
0 Votes
·
0 Comments
·
I have the same spinner on frontpage. I also cannot give access. But thats stuckideas
·
Sunday, 16 July 2017 04:06
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Michael,

We would like to check this issue but if you didn't provide us with your site access, that was really difficult for us to know what issue causing this.
·
Sunday, 16 July 2017 10:34
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post