« Last post by datahell on November 01, 2025, 21:24:37 »
Lieber Nutzer, ich spreche kein Deutsch, und wenn ich einen Übersetzer benutze, erhalten Sie möglicherweise falschen Support. Möchten Sie Ihre Frage auf Englisch stellen?
« Last post by datahell on November 01, 2025, 20:53:57 »
Problem found and fixed. It was due to a change in DeepL translator API. I will release a new Elxis 5.6 version in a few minutes. Update your Elxis when you see the new release and you will be OK.
« Last post by datahell on October 31, 2025, 18:31:51 »
Έλεγξα το site σου, φταίει το template. Άνοιξε αυτό το αρχείο: templates/blahblah/css/template.min.css
Κάνε αναζήτηση για "dialog". Θα βρεις αυτό: article,aside,dialog,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}
Αφαίρεσε το "dialog" από τη λίστα ώστε να γίνει έτσι: article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}
Αποθήκευσε το αρχείο και είσαι έτοιμος.
Βασικά και όλα να τα σβήσεις είσαι καλύτερα γιατί έτσι κι αλλιώς όλα αυτά είναι block elements οπότε το display:block είναι πλεονασμός και μόνο πρόβλημα μπορεί να επιφέρει (καλή ώρα). Περισσότερα εδώ: https://www.w3schools.com/html/html_blocks.asp
« Last post by Blacksoll on October 31, 2025, 14:36:33 »
Ευχαριστώ για την απάντηση! Δυστυχώς δεν άλλαξε κάτι. Συνεχίζει και υπάρχει το μνμ. Άδειασα και την cache. Πρόσθεσα τα παραπάνω στην αρχη στο tempate.css και αφού δεν είδα διαφορά τα πρόσθεσα και στο user.config.css. Πάλι χωρίς αποτέλεσμα ! Κάπου έχω κάνει πατατιά. Το ψάχνω, αλλά.....Ψάξε, ψάξε δεν θα το βρείς, παίζω Στην μόνη σελίδα που δεν εμφανίζεται είναι η σελίδα επικοινωνίας.(contact-us.html)
« Last post by datahell on October 30, 2025, 21:42:31 »
Edit your template and place the following code on the spot you want to display the module (I give you 3 options).
A. If you want to load a modules position use this: if (eFactory::getURI()->getElxisUri() == 'tags/elxis cms') { if ($eDoc->countModules('myposition') > 0) { $eDoc->modules('myposition'); } } Replace "elxis cms" with your tag. Replace "myposition" with your module position.
B. If you want to load a specific module regardless the template position by using module name: if (eFactory::getURI()->getElxisUri() == 'tags/elxis cms') { $eDoc->module('mod_something'); } Replace "elxis cms" with your tag. Replace "mod_something" with your module's name. Tip: Set the module to position "hidden"
C. If you want to load a specific instance of a module in case you have multiple copies of it (for example mod_content), use the module's ID instead: if (eFactory::getURI()->getElxisUri() == 'tags/elxis cms') { $eDoc->module(34); } Replace "elxis cms" with your tag. Replace "34" with your module's ID. Tip: Set the module to position "hidden"
If you want to load the position or the module without parent DIV element use modules('myposition', 'none') or module('mod_something', 'none') or module(34, 'none') instead.