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
/* | |
* Replace Eicons with FontAwesome | |
*/ | |
.eicon { | |
display: inline-block; | |
font: normal normal normal 14px/1 FontAwesome; | |
font-size: inherit; | |
text-rendering: auto; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; |
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 | |
// Deactivate Eicons in Elementor | |
add_action( 'wp_enqueue_scripts', 'js_remove_default_stylesheet', 20 ); | |
function js_remove_default_stylesheet() { | |
// Don't remove it in the backend | |
if ( is_admin() || current_user_can( 'manage_options' ) ) { | |
return; | |
} |
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
Main Steps: | |
http://www.wpexplorer.com/migrating-wordpress-website/ | |
To Search/Replace SQL DB: | |
https://github.com/interconnectit/Search-Replace-DB | |
Change Prefix: (SQL and Steps after) | |
https://richjenks.com/change-mysql-database-table-prefix/ | |
http://tdot-blog.com/wordpress/6-simple-steps-to-change-your-table-prefix-in-wordpress |
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
https://tutorials.ubuntu.com/tutorial/tutorial-create-a-usb-stick-on-windows#1 | |
https://unetbootin.github.io/ | |
https://de.wikihow.com/In-Ubuntu-auf-Windows-Dateien-zugreifen | |
https://forum.ubuntuusers.de/topic/usb-festplatte-unter-ubuntu-einbinden/ | |
https://askubuntu.com/questions/859787/how-to-unmount-and-mount-pen-drive-in-ubuntu-via-command-line |
NewerOlder