add_action( 'woocommerce_after_add_to_cart_button', 'mytext_after_add_to_cart_button', 50);
function mytext_after_add_to_cart_button() {
if( is_product_category( 'coffee' ) ) {
echo '<div class="get-mytext-form"><a href="/mytext-form1/">Need help with form1?</a></div>';
} else {
echo '<div class="get-mytext-form2"><a href="/mytext-form2/">Need help with form2?</a></div>';
}
}