Joomla! Template 002061 - Item Support

Hi ASTeam,

Thanks for te help with the Menu Items. I have the same issue with the blog section which i assume is because the extension javascript is clashing with the template. Any suggestions on that one?

I understand how to change the image size but from the code or website perspective how can i 'specify image dimensions' to reduce load time and increase page speed?

Thanks,
Todd.
Hello TODDJAMES,
It looks like you have caching on your server, we think we fixed the issue with menu java script, but because of the caching we can't check it, lets do it tomorrow.
The second error msg is not related to our products, it is located in the
'/plugins/system/jch_optimize/assets2/jscss.php', try to disable this plugin.

Regards, AS Team.
Sorry ASTeam,

I should have repeated the images i am trying to specify dimensions for are:
http://'mydomain'/images/sampledata/asimage/blank.gif (Dimensions: 1 x 1) (8 uses)
http://'mydomain'/images/sampledata/asimage/featured/installation.png (Dimensions: 84 x 84)
http://'mydomain'/images/sampledata/asimage/featured/maintaining.png (Dimensions: 84 x 84)
http://'mydomain'/images/sampledata/asimage/featured/planning.png (Dimensions: 84 x 84)
http://'mydomain'/images/sampledata/asimage/featured/repairs.png (Dimensions: 84 x 84)
http://'mydomain'/templates/as002061/images/logo.png (Dimensions: 400 x 74)

These were listed in the GTmetrix tests.

Also could you please remove the previous post with my website listed.

Thanks,
Todd.
Hello TODDJAMES,
The dimensions you may to change using any image editor.

Regards, AS Team.
Hi ASTeam,

Thanks, hopefully it works tomorrow, could you please let me know if the change didn't work.

Also with the images- I understand how to change the image size in photoshop or any other image editor but from the code or website perspective how can i 'specify image dimensions' to reduce load time and increase page speed? There is some kind of css or code somewhere that is not defined with an image height and width and because of that my rating is not as high as it could be.

Thanks,
Todd.
Hello TODDJAMES,
All images in percentages, because it is responsive template, so each image should be changed accordingly to the device resolution, means you do not have such option in the template, but, it doesn't mater what is the image dimensions when you need to reduce the load time, in this case it is important the image size.

Regards, AS Team.
Hello,
Just purshased the extended licence, the template is having problem on Ipad, please check:
http://mobiletest.me/ipad_mini_emulator/#u=http://www.pascalmoise.be
/4youconsulting.be/
original website:www.pascalmoise.be/4youconsulting.be/

On the homepage, the text behind the picture does not show on Ipad

Thanks for your help

Pascal
Hello PASCALMOISE,
In iPad it shows title and button only, you can see it in our demo preview:
http://www.astemplates.com/itempreview/224

Regards, AS Team.
Dear AS Team,

I'm evaluating the free version of this theme. I'm looking for some documentation on module positions (what goes where) and related stuff. Is there a documentation page that shows all module positions and their associated styling?

Thanks and regards,

Paul
Hello PAULVANHAREN,

http://www.astemplates.com/joomla-template-documentation/224-130-template-module-positions


Regards, AS Team.
Dear AS Team,

My evaluation was successful and I purchased the template.

It seems that the translation files for the accompanying module mod_articles_news_adv is missing in the installer files. I copied one from the demo data of the full site package and everything seems to be OK now.
But you may want to include the files into the module installer as well.

Thanks and regards,

Paul
Hello PAULVANHAREN,
Thank You for the info, we will add it in the next version.

Regards, AS Team.
Dear AS Team,

I ran into some more issues and I'm making some modifications to the template overrides. How can I best forward these to you for inclusion in a next version?

Thanks and regards,

Paul
Hello PAULVANHAREN,
You can just publish all these overrides in your post.

Regards, AS Team.
Please find the revised code for the override html/mod_login/default.php. It solves the translation of the strings "Forgot your username" and "Forgot your password".

Thanks and regards, Paul

=====================

<?php
/**
* @package Joomla.Site
* @subpackage mod_login
*
* @copyright Copyright (C) 2005 - 2012 Open Source Matters, Inc. All rights reserved.
* @license GNU General Public License version 2 or later; see LICENSE.txt
*/

defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('bootstrap.tooltip');

$moduleclass_sfx = htmlspecialchars($params->get('moduleclass_sfx'));
?>

<div class="mod-login mod-login__<?php echo $moduleclass_sfx ?>">
<form action="<?php echo JRoute::_('index.php', true, $params->get('usesecure')); ?>" method="post" id="login-form" class="">
<?php if ($params->get('pretext')): ?>
<div class="mod-login_pretext">
<p><?php echo $params->get('pretext'); ?></p>
</div>
<?php endif; ?>
<div class="mod-login_userdata">

<label for="mod-login_username" class=""><?php echo JText::_('MOD_LOGIN_VALUE_USERNAME'); ?></label>
<input class="inputbox mod-login_username" type="text" name="username" tabindex="1" size="18" placeholder="<?php echo JText::_('MOD_LOGIN_VALUE_USERNAME') ?>" />

<label for="mod-login_passwd" class=""><?php echo JText::_('JGLOBAL_PASSWORD'); ?></label>
<input class="inputbox mod-login_passwd" type="password" name="password" tabindex="2" size="18" placeholder="<?php echo JText::_('JGLOBAL_PASSWORD') ?>" />

<?php if (JPluginHelper::isEnabled('system', 'remember')) : ?>
<label for="mod-login_remember" class="checkbox"><?php echo JText::_('MOD_LOGIN_REMEMBER_ME') ?>
<input class="mod-login_remember" type="checkbox" name="remember" value="yes"/>
</label>
<?php endif; ?>

<div class="mod-login_submit">
<button type="submit" tabindex="3" name="Submit" class="btn btn-primary"><?php echo JText::_('JLOGIN') ?></button>
</div>

<?php
$usersConfig = JComponentHelper::getParams('com_users'); ?>

<ul class="unstyled">
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=remind'); ?>" class="" title="<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?>"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_USERNAME'); ?></a></a>
</li>
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=reset'); ?>" class="" title="<?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?>"><?php echo JText::_('MOD_LOGIN_FORGOT_YOUR_PASSWORD'); ?></a></a>
</li>
<?php if ($usersConfig->get('allowUserRegistration')) : ?>
<li>
<a href="<?php echo JRoute::_('index.php?option=com_users&view=registration'); ?>"><?php echo JText::_('MOD_LOGIN_REGISTER'); ?></a>
</li>
<?php endif; ?>
</ul>

<input type="hidden" name="option" value="com_users" />
<input type="hidden" name="task" value="user.login" />
<input type="hidden" name="return" value="<?php echo $return; ?>" />
<?php echo JHtml::_('form.token'); ?>
</div>
<?php if ($params->get('posttext')): ?>
<div class="mod-login_posttext">
<p><?php echo $params->get('posttext'); ?></p>
</div>
<?php endif; ?>
</form>
</div>
Hello PAULVANHAREN,
Just updated it, thank You.

Regards, AS Team.
Helo, When I want to use the QUICK-START to install joomla with sample data, I do not work in step 3 to give install, the tables are created but aborts the installation.
Hello GHOSTENP,
Please try to delete all database tables and reinstall it one more time.

Regards, AS Team.
Hello GHOSTENP,
Please provide us with an access to your server via control panel provided to you by your hosting provider, the info please put in the Special info area under your purchased items section of your AS account.

Regards, AS Team.
Comment in status pending...

It will be published after it has been approved by the Website Administrator.
*You must Sign In or Sign Up to discuss this item.
Item Name:
002061
Author:
Downloads:
6291
Sales:
1269
Created:
2014-01-04
Updated:
2024-01-07
Item Version:
4.0.0
Supported Joomla:
Joomla 5 Product
$29.00
Regular License
This item may be used for a single domain only.
$39.00
Extended License

AS Designing Templates Club

Templates Club
Get an access to all 94 items designed and developed by AS Designing team plus all the future items which will be released over the course of your club subscription.

Price starting from $59.00