Replace WordPress Logo on Login Page
Use your custom logo on the default login page, don't forget to edit the snippet...
Hide Login Errors in WordPress
Improve safety by hiding the specific login error information.
Disable Login Screen Language Switcher
Hide the Language Switcher on the default WordPress login screen.
Disable Login by Email
Force your users to login only using their username.
Update Cart Automatically
/** * Update Cart Automatically on Quantity Change * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/remove-update-cart-button.html…
home slider html
if (is_front_page()) : ?>
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; }…
home slider css
/* Increase the image size in the slider */ .container { width: 100%; max-width: 90%; /*…
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 =…
Make Private Posts Visible to Subscribers
/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…
Remove Order Notes in checkout page
/** * Snippet Name: Remove the Order Notes field section from the WooCommerce checkout. * Snippet…