Automatic text in short description of WooCommerce products

后端 未结 2 758
不知归路
不知归路 2021-01-07 03:58

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

2条回答
  •  春和景丽
    2021-01-07 04:32

    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

提交回复
热议问题