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' );
After Checkout Event in EDD
This snippet would stop sending cart abandonment campaigns to your push subscribers as the purchase goal…
Class Clashes | Display Eventbrite Events
We have discovered conflicts between certain themes and classes, such as the .free class conflicting with…
Remove Unwanted Events | Display Eventbrite Events
Sometimes it is simplest to resort to code if you want to remove something from the…
Cores especificas para cada status do posts/pages
/*----------------------------------------------- Distinto color segun estado de entrada -----------------------------------------------*/ function posts_status_color() { ?>
Add a single Order export field with all Shipping address details
function custom_woo_ce_extend_order_fields( $fields ) { $fields[] = array( 'name' => 'shipping_address_full', 'label' => 'Shipping: All details',…
Lowercase Filenames for Uploads
Make all the filenames of new uploads to lowercase after you enable this snippet.
Defining Google Mailer Constants
This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…
Adding Text/Currency To Progress Bar On Campaign Pages
This only applies to campaigns created with the visual builder introduced in v1.8.0.