This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$domainConfiguration = [ | |
'www.first-domain.com' => PAGE_UID, | |
//'www.second-domain.com' => PAGE_UID, | |
//'www.third-domain.com' => PAGE_UID | |
]; | |
$txRealUrlConfiguration = [ | |
'init' => [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{REQUEST_URI} !(\.css|\.js|\.png|\.jpg|\.gif|robots\.txt)$ [NC] | |
RewriteRule ^.*$ /index.html [L,R=301] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lib.language { | |
# select the language uid of languages in menu | |
uidList = 0,1,2,3,4 | |
# language uid, if no languages in url given | |
normalWhenNoLanguage = 0 | |
# set languages param in them order how "uidList" | |
addParams = &L=0 || &L=1 || &L=2 || &L=3 || &L=4 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(document).ready(function() { | |
var dselect = jQuery('.contact-select').val(); | |
jQuery('.contact div#contact-' + dselect).show(); | |
jQuery('.contact-select').on('change', function() { | |
var cselect = jQuery(this).val(); | |
jQuery('.contact div.contact-wrapper').hide(); | |
jQuery('.contact div#contact-' + cselect).show(); |
NewerOlder