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…

Ensure Webfont is Loaded

add_filter( 'elementor_pro/custom_fonts/font_display', function( $current_value, $font_family, $data ) { return 'swap'; }, 10, 3 );

<10

On Scroll Elementor show/hide element

Note: You need to set the id for the button or element to "#scrolling-button".

Disable "Scheduled export e-mail of ... returned false when sending to ..." notice in Scheduled Exports

function custom_woo_ce_cron_export_email_wp_mail_failure_notice() { // Turn off the error notice return false; } add_filter( 'woo_ce_cron_export_email_wp_mail_failure_notice', 'custom_woo_ce_cron_export_email_wp_mail_failure_notice' );

<10

WordPress Memory Exhausted

WordPress is written in PHP, which is a server-side programming language. Additionally, every website needs a…

HTG

[wpgetapi_endpoint api_id='HomeToGo' endpoint_id='HTG' debug='false']

om-custom-smart-tag-all-query-args.js

const queryString = window.location.search; // capture all query args document.addEventListener('om.Dtr.init', function(event) { // use this event…

1 81 82 83 84 85