Compare commits

..

2 Commits

Author SHA1 Message Date
04ac839b2b Enfold Debugging-Info ausblenden 2025-10-29 18:15:51 +01:00
0cfd80d0b9 First version 2025-10-29 18:15:09 +01:00
2 changed files with 31 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
## agentur2c-enfold-child
### Child Theme for the Enfold Wordpress Theme
*Installation in Wordpress:*
```
ZIP-Paket herunterladen:
https://git.agentur2c.net/agentur2c/agentur2c-enfold-child/archive/main.zip
In Wordpress -> Design -> Themes -> [Theme hinzufügen]
```
*Installation auf Server:*
```
cd $WORDPRESS/wp-content/themes/
wget https://git.agentur2c.net/agentur2c/agentur2c-enfold-child/archive/main.tar.gz -O agentur2c-enfold-child.tar.gz
tar xvzf agentur2c-enfold-child.tar.gz
chown -R web$$:web$$ agentur2c-enfold-child
```

View File

@@ -2,4 +2,13 @@
/* /*
* Add your own functions here. You can also copy some of the theme functions into this file. * Add your own functions here. You can also copy some of the theme functions into this file.
* Wordpress will use those functions instead of the original functions then. * Wordpress will use those functions instead of the original functions then.
*/ */
// Enfold Debugging-Info im Quelltext ausblenden
if(!function_exists('avia_debugging_info')){
function avia_debugging_info() {
//
}
}