Hide payment icons for trials
Hides the payment icons on checkout when the item in the card is a free trial
Add Custom Taxonomy to Woocommerce Single Product Page
add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…
Set the ranges for Calendar List View | Display Eventbrite Events
The following code snippet filters the valid ranges for the next/prev keys of the calendar list…
Cusdtom WP escape
One major difficulty with passing WordPress org security reviews is escaping late. This function may help.