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; }
mobile sticky menu chatgpt html
Home Shop Cart Account
MemberPress: Move PayPal Smart Pay Buttons
Move the PayPal Smart Pay Buttons under the checkboxes for accepting Terms of Service and the…
Disable Order Receipt Email Optimizations
In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…
Increase After Order Actions Delay
By default, Easy Digital Downloads schedules a WP Cron event 30 seconds after a purchase is…
Elementor - Parallax
function jquery_parallax() { ?>
WP Simple Pay: Modify Customer Record Creation
Add custom parameters to the Stripe Customer creation request.
WP Simple Pay: Change Custom Amount Field Input Type
Changes the `type` attribute on the `input` tag. This helps some mobile keyboards have a better…
WP Simple Pay: Reduce Currency Minimum Amount
The minimum amount is $0.50 US or equivalent in charge currency. WP Simple Pay uses $1.00…
WP Simple Pay: Lower reCAPTCHA Threshold
Adjusts the reCAPTCHA v3 threshold for determining fraudulent interactions. 1.0 is very likely a good interaction,…
WP Simple Pay: Per-Form Fixed Tax Rate Percentages
Override the returned tax rate for a given Payment Form. Important: Tax rates with the percentage…
WP Simple Pay: Custom Thousand Separator
Changes the thousand separator from the default , (comma) to a . (period).