MemberPress: Override Description for All Payment Methods on Click
This code snippet will override the description text from MemberPress settings for all payment methods. When…
MemberPress: Restrict Email Domains on Registration
This code snippet will limit the membership registration to only the allowed list of email domains.…
Allow Manual Donations Without Email
Allow donors to be be added without an email address.
product data tabs
/** * Rename product data tabs */ add_filter( 'woocommerce_product_tabs', 'woo_rename_tabs', 98 ); function woo_rename_tabs( $tabs )…
Replace Menu Icon
Replace the standard menu icon in Easy Digital Downloads with an icon from Dashicons
Force Minimum Password Length at Checkout
Force a minimum password length when a customer creates an account at checkout
Reverse variable pricing
Great for when you've added variable prices lowest to highest but want to show highest to…
Remove Method label
add_filter( 'woocommerce_cart_shipping_method_full_label', 'remove_shipping_method_title', 10, 2 ); function remove_shipping_method_title( $label, $method ){ $new_label = ''; if (…
Recent products table
if ( ! function_exists( 'wcv_remove_recent_product_table_columns' ) ) { /** * Remove columns from Recent Products table…
Force product type for all products
// Disable the product type drop down. add_filter('wcv_disable_product_type', function() { return true; } ); /** *…
mobile sticky menu chatgpt css
/* Reset some default styles */ body, h1, ul { margin: 0; padding: 0; } /*…
Move "Ships From" under the Product Meta, in the single product page template
Move "Ships From" under the Product Meta, in the single product page template by using 'product_ships_from'…