Prevent block variation inside certain parent blocks

A variation is a representation of the original block. if block-1 allows the insertion of block-2; then block-1 will except all variations of block-2. core/columns only allows the insertion of a core/column. If I create a variation of core/column I would expect the core/column to accept my variation. And therefor the reverse should also to … Read more

WordPress login/register custom CSS not working?

You can use the register_form hook. Add this to your functions.php: <?php add_action( ‘register_form’, ‘custom_css_register_form’ ); function custom_css_register_form() { ?> <style> #reg_passmail { color: white !important; } </style> <?php } ?>