Powertech Gaming case PT-743 + LED fan PT-908 Red

Powertech Gaming case PT-743 + LED fan PT-908 Red

Ένα όμορφο και φτηνό κουτί Πριν ξεκινήσω την περιγραφή, πρέπει να αναφέρω, οτι η επιλογή του κουτιού έγινε με τα εξής κριτήρια:   να δέχεται ATX motherboard να έχει όσο το δυνατόν καλύτερο εξαερισμό να έχει εξωτερικό βάθος μικρότερο από 40 εκατοστά να έχει το...
ΣΦΑΛΜΑ τα Cookies εμποδίζουν το login στο WordPress

ΣΦΑΛΜΑ τα Cookies εμποδίζουν το login στο WordPress

«ΣΦΑΛΜΑ: Τα coockies εμποδίστηκαν εξαιτίας αναπάντεχων δεδομένων……» Hi, Κολλήσατε στο login του WordPress αφού κάνατε όλες τις οδηγίες που βρήκατε στο Internet? Δείτε το παρακάτω link. https://grantnorwood.com/cannot-log-into-wordpress-cookies-blocked/...
w3schools Autocomplete does not work for mobile devices

w3schools Autocomplete does not work for mobile devices

While w3school is one of the most helpful tools on the internet to get ideas, advices and code. BUT a lot of times seems to miss the extra feature that you would like in your code. Like the autocomplete which is not working on mobile devices. When you have a list and...
PHP δεν δουλεύει μετά από αναβάθμιση KUBUNTU 16.04 σε 18.04

PHP δεν δουλεύει μετά από αναβάθμιση KUBUNTU 16.04 σε 18.04

Μετά από μια μικρή περιπέτεια με το Virtualbox, που αυτόματα γύρισε καποια αρχεία από 5.1.xx σε 5.2.xx, ηρθε η ώρα να δω τί έγινε με το localhost…. Μέρος του κώδικα εμφανιζόταν και φυσικά δεν δουλευε, τουλάχιστον μερικός. Πρώτα έλεγξα με το αρχείο test.php που...
Tag UL Μενου για DIVI Elegant themes WordPress

Tag UL Μενου για DIVI Elegant themes WordPress

Πώς μπορείτε να έχετε ένα δυναμικό μενού από την ετικέτα ul li μέσα στο DIVI Choice 1 Choice 2 Choice 3 Δημιουργήστε 2 στήλες, μία για το μενού ul και μία για εικόνα, slide show ή αυτό που θέλετε να εμφανίζεται όταν κάνετε κλικ στο μενού. Μεταβείτε σε κάθε εικόνα στην...
Προσθέστε Εικονίδιο Αλλαγής Γλώσσας στο Μενού (WPML)

Προσθέστε Εικονίδιο Αλλαγής Γλώσσας στο Μενού (WPML)

Προσθέστε τον κώδικα στο functions.php του θέματός σας. Ο κώδικας αρχικά υπήρχει σε αυτό το link , αλλά εμφάνιζε το κωδικό γλώσσας και όχι την σημαία. Ο παρακάκω κώδικας εμφανίζει την σημαία. function new_nav_menu_items($items,$args) { if...
Dial Up Modem and Caller ID in Greece

Dial Up Modem and Caller ID in Greece

Making an application that uses a dial-up modem is not only tricky because of the hardware-software connection, but also for finding the right hardware and setting it up properly. Be careful when you are buying a modem for caller id, make sure not only that it says...
PHP echo all post variables for debug

PHP echo all post variables for debug

You started your session, then you asked if it is a post request or not. Then you checked if that post variable isset() to start your code. Unfortunately the code never run and you have no idea what happened. Add the 2 lines in red in the following code to find out...
PHP echo all post variables for debug

How to add / remove month(s) to a date in PHP

This is an easy function to add or remove months from a date in PHP. There is a limitation, you can only subtract up to 999 years, but you can change that by increasing the 12000 number in the code, to whatever you want to. function add_month($strbegin, $count) {...