Download Archive Purchase Buttons
Output purchase button below the full content on download archive pages.
WWPAY - Add Purchase Order Number field to Wholesale Payments at classic checkout
One caveat: this only support WooCommerce Classic Checkout.
Auto Generate Virtual Coupon After a Customer Completed an Order
/** * Generate a virtual coupon when order is completed. * * @param int $order_id Order…
Detect Orphaned Content in WordPress Admin
Identify published posts and pages that are not linked internally from other published content on your…
Untitled Snippet
<meta name="google-adsense-account" content="ca-pub-9481928342352849">
Custom Field to Vendor Settings Page
/* WC Vendors Pro - My Custom Field */ function store_bank_details( ){ if ( class_exists( 'WCVendors_Pro'…
Remove table from dashboard
if ( ! function_exists( 'wcv_remove_recent_order_table_columns' ) ) { /** * Remove columns from Recent Orders table…
wpadmin add phone number with address in orders page
add_action( 'manage_shop_order_posts_custom_column' , 'custom_orders_list_column_content', 50, 2 ); function custom_orders_list_column_content( $column, $post_id ) { global $the_order, $post;…
After Checkout Event in EDD
This snippet would stop sending cart abandonment campaigns to your push subscribers as the purchase goal…
Combined Date – Time Format (Do something with the Local Start Time) | Display Eventbrite Events
The combined date / time format appears in several layouts and typically looks like 12/02/2019, 10:00…
Switching between ftp_put and ftp_fput FTP upload methods in Store Exporter Deluxe
function custom_woo_ce_cron_export_ftp_switch() { // ftp_put or ftp_fput return 'ftp_fput'; } add_filter( 'woo_ce_cron_export_ftp_switch', 'custom_woo_ce_cron_export_ftp_switch' );