Ok, no problem, could you help in other way: where can i find this form? I would like to change the names of lines (for example to change "subject" with "mobile")
I have a question to the support. I tried to change the slogan color on my webpage several times but it even does not work. But the dark gray is difficult to see for my visitors. Could you explain me why it doesn´t work to change the color?
Thanks
Raphael
http://www.archivalism.de
AS Templates
POSTED: 2016-03-18
Hello RHARTISCH,
The logo color you can change in '/templates/as002058/css/style.default.css' file in the following class (line 675):
#logo span.slogan {
color: #333333;
}
Our suggestion is to install it using quick-start installation package, after installing the package your site will look exact like our demo preview page and it will be easy for you to make changes in the content, preview all parameters and settings. The quick-start package is actually the template documentation. If by some reason you can't install it on your live server you can install on some demo server or demo folder and then preview all settings.
The package should be installed like regular Joomla installation, here you can find some more info: http://www.astemplates.com/joomla-template-documentation/209-002058
Hi. errors began with the entry of the 2nd menu.
"Fatal error: Cannot redeclare class modasmenuhelper in '/modules/mod_as_menu/helper.php on line 14"
how to fix this error?
thank you in advance!
http://www.technoen.ru template, extended license
at the opening session, the error disappears after a page refresh. but each new session, it pops up. the mobile version 8 creates menus that duplicate each other.
AS Templates
POSTED: 2016-03-28
Hello XXXXTESD,
It seems you have published the main menu twice, it should be published one time per page only.
Hello MERLINMIKE,
Your payment was in status pending because you made it from your bank account, the confirmation and download link you have to receive very soon.
Hello. How can i use accented and special characters (like à or ã, ' [single quote], etc) in category names and have those correctly displayed in isotope filter on gallery view?
AS Templates
POSTED: 2016-05-09
Hello JORGETREIS,
Please do not use any special characters, category names do not support them.
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
You can do it by editing 'modules\mod_as_menu\js\jquery.mobilemenu.js' file, see line 20.
Regards, AS Team.
View History
I have one more question. Is there any way how to change the contact form? for example to add new item.
The default Joomla form does not have such option, you have to use some extension instead.
Regards, AS Team.
View History
Please check this page: http://extensions.joomla.org/category/contacts-and-feedback/forms
Sorry, we are not supporting any third-party extensions, BTW, your license for our free support is expired.
Regards, AS Team.
View History
Thanks
Raphael
http://www.archivalism.de
The logo color you can change in '/templates/as002058/css/style.default.css' file in the following class (line 675):
#logo span.slogan {
color: #333333;
}
Our suggestion is to install it using quick-start installation package, after installing the package your site will look exact like our demo preview page and it will be easy for you to make changes in the content, preview all parameters and settings. The quick-start package is actually the template documentation. If by some reason you can't install it on your live server you can install on some demo server or demo folder and then preview all settings.
The package should be installed like regular Joomla installation, here you can find some more info:
http://www.astemplates.com/joomla-template-documentation/209-002058
Regards, AS Team.
View History
"Fatal error: Cannot redeclare class modasmenuhelper in '/modules/mod_as_menu/helper.php on line 14"
how to fix this error?
thank you in advance!
http://www.technoen.ru template, extended license
at the opening session, the error disappears after a page refresh. but each new session, it pops up. the mobile version 8 creates menus that duplicate each other.
It seems you have published the main menu twice, it should be published one time per page only.
Regards, AS Team.
View History
2 days ago I purchased this Template. I cant see this Template in my purchased Items. Where I can download this Template?
Best Regards
Can you please provide us with PayPal or 2CO transaction ID, we have to check this issue.
Regards, AS Team.
View History
Transactionscode 00T84552AE085970D
Usage: E16B8REWGPLPG5X
Best Regards
Your payment was in status pending because you made it from your bank account, the confirmation and download link you have to receive very soon.
Regards, AS Team.
View History
the words in the Menu are lowercase letters. How can I change this ?
Best Regards
You can do it by editing 'templates/as002058/css/ext.asmenu.css' file the following class (line 21):
#as-menu ul.as-menu > li a,
#as-menu ul.as-menu > li > span
{
color: #fff !important;
display: block;
font-weight: normal;
letter-spacing: 1px;
line-height: 20px;
margin: 0;
padding: 0 5px;
text-transform: lowercase;
}
You can easy determinate the file which should be changed and the css class by installing and using Fireblug plugin:
https://getfirebug.com/
For more info please see the following article:
http://blog.astemplates.com/firebug-tutorial/#more-402
Regards, AS Team.
View History
Please do not use any special characters, category names do not support them.
Regards, AS Team.
View History
Thanks
Please provide us with site URL.
Regards, AS Team.
View History
in templates/as002058/html/com_content/category/gallery.php at line 49
replace
foreach ($this->intro_items as $key => &$item){
$categoryTitle = strtolower(str_replace(" ","_",$item->category_title));
$galleryCategories[] = $categoryTitle;
};
with
foreach ($this->intro_items as $key => &$item){
$categoryTitle = array("title"=>strtolower(str_replace(" ","_",$item->category_title)),"titleDoDisplay"=>$item->category_title);
array_push ( $galleryCategories , $categoryTitle );
at line 63
replace:
$galleryCategories = array_unique($galleryCategories);
with:
$galleryCategories = array_map("unserialize", array_unique(array_map("serialize", $galleryCategories)));
at line 64
replace:
<?php foreach ($galleryCategories as $key => $value) : ?>
<li><a class="" href="#"data-filter=".<?php echo $value; ?>"><?php echo ucwords(str_replace("_"," ",$value)); ?></a></li>
<?php endforeach; ?>
with:
<?php foreach ($galleryCategories as $key => $value) : ?>
<li><a class="" href="#" data-filter=".<?php echo $value['title']; ?>"><?php echo $value['titleDoDisplay'];?></a></li>
<?php endforeach; ?>
that's it