How to Change the WordPress Login Page...
This snippet allows you to easily change the URL of the logo on your WordPress login ...

WPCodeBox
126
This WooCommerce snippet allows you to change product tags to category-style checkboxes, displaying the Product Tags meta box as multiple select checkboxes, similar to Categories. It leverages WooCommerce taxonomy filters like woocommerce_taxonomy_args_product_tag for modifying default Category & Tag taxonomies.
<?php
function category_metabox_format_for_tags( $args ) {
$args['hierarchical'] = true;
return $args;
}
add_filter( 'woocommerce_taxonomy_args_product_tag', 'category_metabox_format_for_tags' );