I am trying to create an automatic text in the description of the WooCommerce articles and put \"article only available in the store.\"
I thought about putting it in
I update to say I found a solution to my problem:
I created a "shipping class" in "products" with the name "article only available in the store" and the slug "productshop".
Then in (mytheme)/woocommerce/single-product/meta.php I have included:
get_shipping_class();
if ($clase=="productshop") {
if (get_locale()=='en_US') {echo 'Product only available in store';}
else {echo 'Producte només disponible a la botiga';}
}?>
Then I have only to select the shipping of product into the method.
And that's it!
Thanks for your answers