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; }
Untitled Snippet
popup
MemberPress: Change Username Field’s Placeholder and/or Label of the Field on Login Page
document.addEventListener('DOMContentLoaded', function() { // Select the input element by its id var usernameInput = document.getElementById('user_login'); //…
Customize Login Area
Replace standard Wordpress logo and URL at the login. Requires site logo image path link to…
FC - Establecer expiración de cookie de login a 1 año
Establece la cookie de login en 1 año, sobre todo para sitios que solo entramos nosotros
Untitled Snippet
import { BrowserRouter, Routes, Route, Link } from "react-router-dom"; import "./styles.css"; function Header() { return (…