Replace WordPress Logo on Login Page

Use your custom logo on the default login page, don't forget to edit the snippet...

3.9k

Disable Login Screen Language Switcher

Hide the Language Switcher on the default WordPress login screen.

3.2k

Hide Login Errors in WordPress

Improve safety by hiding the specific login error information.

3.1k

Disable Login by Email

Force your users to login only using their username.

1.6k

Extend Login Expiration Time

Toggling "Remember Me" will keep you logged-in for 30 days instead of 14 days.

100+

Update Cart Automatically

/** * Update Cart Automatically on Quantity Change * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/remove-update-cart-button.html…

Sticky header

/*Sticky header*/ #site-header { position: fixed; top:0; opacity: 0.98; } #main { margin-top: 70px !important; /*…

user menu for logged in and logged out users

function my_wp_nav_menu_args( $args = '' ) { if( is_user_logged_in() ) { $args['menu'] = 'logged-in'; } else…

display user name in a menu

/** * Show a user's display name/user name in a WordPress menu. * Once this code…

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 =…

1 2 3 4