Remove Order Notes in checkout page

/** * Snippet Name: Remove the Order Notes field section from the WooCommerce checkout. * Snippet…

Add Informational Message Below the Username Field in the Login/Register Form #The Greek

This code adds an informational message below the username input field in the login or registration…

Pharmacy Needs
<10

MemberPress: Prevent users from auto-login after registration

The code snippet is designed to disable the auto-login feature for users who register for a…

Make Private Posts Visible to Subscribers

/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…

Peter Beare
<10

Super Socializer Signin with google style

.theChampLogin.theChampGoogleBackground.theChampGoogleLogin{ height: 44px; background-color: #4285F4; border-radius: 2px; box-shadow: 0 5px 10px 0 rgba(0,0,0,.5); width: 184px; }…

Set Minimum total purchase amount

add_action( 'woocommerce_check_cart_items', 'required_min_cart_subtotal_amount' ); function required_min_cart_subtotal_amount() { // HERE Set minimum cart total amount $minimum_amount =…

REMOVE PRODUCT LINKS FROM YOUR SHOPPING CART

add_filter( 'woocommerce_cart_item_permalink', 'custom_remove_cart_product_link', 10 ); function custom_remove_cart_product_link() { return __return_null(); }

remove 'X' remove button in cart

.woocommerce table.shop_table .product-remove { text-align: center !important; display: none; }

Failed login: Don't show if username is correct

If a user's login fails, don't tell them whether the username or password was incorrect

1 2 3 4 7