Universal_UserMetaScholar_Clients_AA - Scholar/Student Meta Fields - KIC Enterprises
WPCode Snippet: Scholar/Student Meta Fields - KIC Enterprises * Description: Additional fields for scholars/students - works…
Cortex Schema API
/** * Cortex Schema API v3.1 - Streamlined Schema Audit with Server-Side Filtering * * Focused…
Apollo Website Tracking
function add_apollo_tracker() { ?>
Mass Order Delete
Bulk delete orders from Easy Digital Downloads easily
Force account creation by category or tag
Forces the customer to create an account at checkout if a download in the cart has…
Disable Renewals for Specific Products
Prevents license keys for certain downloads from being renewed or extended.
Add vat over the commission
This will add VAT value over the commission
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 (…
Make All Users Vendors
/** * Make all new user registrations Vendors. */ add_filter( 'woocommerce_new_customer_data', 'wcv_woocommerce_new_user_data' ); function wcv_woocommerce_new_user_data( $data…
Remove Google Fonts
add_filter( 'elementor/frontend/print_google_fonts', '__return_false' );
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' );