Hello @pt51 ,
Okay, it’s hard to tell how the plugin WooFunnels is removing the sipping last name field as I do not have access to this plugin. I have used WooCommerce’s suggestion on removing the shipping fields from here – Customizing checkout fields using actions and filters
I am using this code in my theme’s functions.php file –
add_filter( 'woocommerce_checkout_fields', 'customize_woo_checkout_fields' );
function customize_woo_checkout_fields( $fields ) {
unset( $fields['shipping']['shipping_last_name'] );
return $fields;
}
When I checkout I only put my last name on the billing form and after the order, I do not get auto-filled on the shipping details – https://prnt.sc/106xm4z.
So, you can try the above code on your site. I hope it will work. If not, then the plugins you are using can be the reason behind it. You can do a conflict test to figure out the problematic plugin.
Thank you ??