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

WPCodeBox
100
Easily set a minimum order amount for your WooCommerce store. This snippet displays a customizable error message when the cart total is below your set threshold, ensuring customers meet your minimum purchase requirements.
<?php
add_action( 'woocommerce_checkout_process', function() {
global $woocommerce;
$minimum_order_amount = 50;
if ( $woocommerce->cart->get_cart_total() < $minimum ) {
$woocommerce->add_error( sprintf( 'The minium order amount is ' . $minimum ) );
}
});