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…
Remove Order Notes in checkout page
/** * Snippet Name: Remove the Order Notes field section from the WooCommerce checkout. * Snippet…
Block Email Domains 'secmail.pro' etc #The Greek
With this code you can block all the bots from login to your website. Notification -->…
Logout URL
This snippet creates a simple logout URL link that you can use as a shortcode.
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…
agnomade
ads
custom footer chatgpt css
/* Style the footer container */ #custom-footer { background-color: #fff; /* White background */ padding: 1px;…
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 =…
Make Private Posts Visible to Subscribers
/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…
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; }