Auto Generate Virtual Coupon After a Customer Completed an Order

/** * Generate a virtual coupon when order is completed. * * @param int $order_id Order…

Restrict WordPress Admin Access by Country

Restrict access to wp-admin based on visitor country using Cloudflare's country header. Useful for agencies, membership…

Untitled Snippet

google.com, pub-9481928342352849, DIRECT, f08c47fec0942fa0

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

Set the ranges for Calendar View | Display Eventbrite Events

The following code snippet filters the valid ranges for the next/prev keys of the calendar views…

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' );

<10

WC Vendors Activate All Inactive Vendors

Activates all inactive Vendor Stores in a WC Vendors Marketplace. NOTE: To be ran once.

Menu Item image Animation on Hover

When you hover over a menu item, the will be an image which will slide behind…

<10

MemberPress: Display Account Tabs Anywhere

This code registers a new shortcode: [mepr-account-links]. This shortcode can be used anywhere to display the…

1 86 87 88 89 90 225