diff --git a/README.md b/README.md index d23a0b2..9b2fc38 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A lightweight and minimalist WordPress theme for Elementor site builder. The theme's main focus is on providing a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. It is optimized for speed and performance, and its simplicity and flexibility make it a great choice for both beginners and experienced website designers. -The theme supports common WordPress features which can be extended using a child-theme. In addition, there are several ways to add custom styles. It can be done from **Elementor**, from the WordPress customizer, using a child-theme, or with an external plugin. To customize the theme further, visit [Elementor developers docs](https://developers.elementor.com/docs/hello-elementor-theme/). +The theme supports common WordPress features which can be extended using a child-theme. In addition, there are several ways to add custom styles. It can be done from **Elementor**, using a child-theme, or with an external plugin. To customize the theme further, visit [Elementor developers docs](https://developers.elementor.com/docs/hello-elementor-theme/). ## Liked Hello Elementor? diff --git a/readme.txt b/readme.txt index 27dc176..ba543c4 100644 --- a/readme.txt +++ b/readme.txt @@ -17,7 +17,7 @@ Hello Elementor is a lightweight and minimalist WordPress theme that was built s The theme's main focus is on providing a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. It is optimized for speed and performance, and its simplicity and flexibility make it a great choice for both beginners and experienced website designers. -The theme supports common WordPress features which can be extended using a child-theme. In addition, there are several ways to add custom styles. It can be done from **Elementor**, from the WordPress customizer, using a child-theme, or with an external plugin. To customize the theme further, visit [Elementor developers docs](https://developers.elementor.com/docs/hello-elementor-theme/). +The theme supports common WordPress features which can be extended using a child-theme. In addition, there are several ways to add custom styles. It can be done from **Elementor**, using a child-theme, or with an external plugin. To customize the theme further, visit [Elementor developers docs](https://developers.elementor.com/docs/hello-elementor-theme/). == Copyright == @@ -37,10 +37,10 @@ Source: https://stocksnap.io/photo/4B83RD7BV9 == Changelog == = 3.0.0 = -* New: Option to disable site-wide header & footer +* New: Option to disable cross-site header & footer * Tweak: Update `Requires PHP 7.3` * Tweak: Update `Tested up to 6.4` -* Tweak: Move site-wide header & footer styles to a separate CSS file +* Tweak: Move cross-site header & footer styles to a separate CSS file * Tweak: Don't load `header-footer.min.css` when disabling header & footer * Tweak: Don't load `hello-frontend.min.js` when disabling header & footer * Tweak: Replace jQuery code with vanilla JS in the frontend diff --git a/webpack.config.js b/webpack.config.js index 5f05e08..bd38c33 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -69,9 +69,9 @@ const moduleRules = { }; const entry = { + 'hello-admin': path.resolve( __dirname, './assets/dev/js/admin/hello-admin.js' ), 'hello-editor': path.resolve( __dirname, './assets/dev/js/editor/hello-editor.js' ), 'hello-frontend': path.resolve( __dirname, './assets/dev/js/frontend/hello-frontend.js' ), - 'hello-admin': path.resolve( __dirname, './assets/dev/js/admin/hello-admin.js' ), }; const webpackConfig = {