« 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.
« Last post by datahell on October 30, 2025, 21:20:00 »
Συγνώμη για την καθυστέρηση στην απάντηση, τώρα είδα το μήνυμά σου.
Έχει αλλάξει το CSS καθώς προστέθηκαν μηνύματα σε παράθυρα dialog (πολύ πιο εύχρηστα σε σχέση με alerts ή Modals). Αν χρησιμοποιείς κάποιο άλλο template εκτός του "ios" που είναι το default κάνε edit το css του template σου και πρόσθεσε τα παρακάτω. Αν χρησιμοποιείς το ios πάτα control+F5 για να ανανεώσεις την cache του browser.
« Last post by Blacksoll on October 22, 2025, 08:13:24 »
Μετά την αναβάθμιση του elxis και του openshop στην τελευταία έκδοση εμφανίστηκε το παρακάτω σε όλες τις σελίδες. Έκανα unpublish όλα τα module και πάλι υπάρχει. Οπότε ξαναδημοσίευσα αυτά που είχα και περιμένω την βοήθειά σας ή την γνώμη σας !
Edit 23/10 : Βρήκα το συγκεκριμένο μνμ στο \components\com_shop\includes\js. Γραμμή 670
« Last post by seadhna on October 19, 2025, 13:05:17 »
Yes, this is what I did, but the module does not appear on the front-end. If I make a menu item: content:tags/one and apply a module to that menu item, I can see the module on the front-end, but if I then edit the menu item to be: content:tags/one+two, the module disappears on the tag page.
« Last post by webgift on October 18, 2025, 17:54:16 »
Hello, Find the module position where the module will be placed. Try create a new menu item on a menu collection where it will point the url: www.example.org/tags/one+two
Finally visit the module's assignment tab of this module and select the menu item you've created above.