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?
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
AS Templates
POSTED: 2014-09-02
Hello PAULVANHAREN,
Thank You for the info, we will add it in the next version.
Regards, AS Team.
paulvanharen
POSTED: 2014-09-03
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
AS Templates
POSTED: 2014-09-03
Hello PAULVANHAREN,
You can just publish all these overrides in your post.
Regards, AS Team.
paulvanharen
POSTED: 2014-09-04
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
*/
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
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
http://www.astemplates.com/joomla-template-documentation/224-130-template-module-positions
Regards, 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
Thank You for the info, we will add it in the next version.
Regards, 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
You can just publish all these overrides in your post.
Regards, AS Team.
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>
Just updated it, thank You.
Regards, AS Team.