How can i use Advanced Custom Fields (ACF) in WooCommerce?

With a simple hook, Advanced Custom Fields (ACF) can also be integrated into WooCommerce.

add_action( 'woocommerce_before_add_to_cart_form', 'acf_field_woo', 30 ); 
 
function acf_field_woo() { 
echo get_field('feldname'); 
}
Without cookies
This website does not use cookies or tracking. More information can be found in the privacy policy.