I'm trying to append text to products that cointain the attribute "pa_sprog" value "dansk"
I am working from this post this is what I have so far:
add_action( 'woocommerce_before_add_to_cart_form', 'flag1' );
function flag1() {
$product = wc_get_product( $product_id );
// Get the product attribute value
$sprog = $product->get_attribute('pa_sprog');
// if product has attribute 'sprog' value(s)
if( $sprog="dansk" ){
echo '<div class="">"Dansk!"</div>';
} else {
// Engelsk
}
}