I had the same problem and found a hint via the linked GitHub issue. It seems to be caused by a WordPress internal theme caching functionality.
When I added these two lines in the wp-config.php, which deactivate caching among other things, new patterns were displayed and loaded immediately:
define( 'WP_ENVIRONMENT_TYPE', 'development' );
define( 'WP_DEVELOPMENT_MODE', 'theme' );
https://make.www.ads-software.com/core/2023/07/14/configuring-development-mode-in-6-3/
-
This reply was modified 3 months, 1 week ago by Dennis Seid.
-
This reply was modified 3 months, 1 week ago by Dennis Seid.