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; }

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: Add Customer Phone to Customer Metadata

Adds the "Telephone" customer field value to the Customer record's metadata. This value is normally only…

WP Simple Pay: Translate Stripe Error Messages

For more information about the available error codes and messages visit: https://stripe.com/docs/error-codes

WP Simple Pay: Set a Per-Form Custom Amount Programmatically

Adjust a single payment form's custom amount value programatically.

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: Custom Decimal Separator

Changes the decimal separator from a . (period) to a , (comma).

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…

1 62 63 64 65 66 159