r0manenk0 – The ‘WooCommerce – Gravity Forms Product Add-On’ is a premium plugin, one I dont know anything about and don’t have a copy of.
I suggest you speak with the woocommerce support team.
You used to be able to run a filter to stop HTML from being stripped, but I’m not sure if this is still the case or the solution for you.
It was something like this
add_filter( 'woocommerce_gforms_strip_meta_html', 'configure_woocommerce_gforms_strip_meta_html' );
function configure_woocommerce_gforms_strip_meta_html( $strip_html ) {
$strip_html = false;
return $strip_html;
}
Let me know if you can find out what’s needed to make this work with woocommerce so I can let others know if they ask.