Marcin Krzemiński
Marcin Krzemiński
**Is your feature request related to a problem? Please describe.** It would be great to have a bundler integrated. **Describe the solution you'd like** Integrate one of the popular bundle.
Today I have found a bug in the starter-theme/templates/single-password.twig. I was getting 502 on WP Engine for password-protected pages and posts. After some research, it turned out that WP Engine...
Since version 5.5 we have quite nice solution for getting the current environment: https://make.wordpress.org/core/2020/07/24/new-wp_get_environment_type-function-in-wordpress-5-5/ We might use it to replace `CHISEL_DEV_ENV`
Hi, what do you think about adding the: `overscroll-behavior-y: none;` to the body element? This will prevent from overscrolling vertically. Personally, this drives me crazy, and I'm this with Stylish...
Our `base.twig` template is missing a function that triggers `wp_body_open` hook that was introduced in version 5.2 of WordPress. Here's a snippet that I use in my current project: ```...
Our current implementation `add_theme_support( 'post-formats' );` throws PHP Notice ``` Notice: add_theme_support( 'post-formats' ) was called incorrectly. You need to pass an array of post formats. ```
Minor thing, but still ;). ``` src/styles/elements/_blockquote.scss src/styles/generic/_box-sizing.scss src/styles/tools/_clearfix.scss ``` We're using `:before` instead of `::before`. Same goes for after.
It's an a11y good practice to have a skip link. It's might look like something like this: `templates/layout/base.twig` ``` {{ __('Skip to content', 'text-domain') }} ... ... {% block content...
Add an option for a `front-page.twig` template in `page.php`. Code is very similar to what we have in `index.php` ```php
How about introducing a new option in the generator that's responsible for creating a text-domain? By default, it could be generated based on a project name. This way we could...