【问题标题】:Wordpress woocommerce product attribute labe - remove "product"Wordpress woocommerce 产品属性标签 - 删除“产品”
【发布时间】:2017-06-28 00:39:24
【问题描述】:

我认为这一定很简单,但我很难在 Woocommerce 中找到要编辑的文件,以便在属性标签输出之前删除“产品”。

我这里的例子是车辆。我宁愿它没有说“产品年”,而只是“年”:

Product Year: 2014
Product Transmission: Automatic
Product Fuel: Diesel
Product Air Conditioning: Yes
Product Axles: 6x2

谁能帮我找出“产品”一词的来源以便将其删除? 我在 WP 4.8 和 WooCom 3.0.9 谢谢!

【问题讨论】:

    标签: wordpress woocommerce


    【解决方案1】:

    如果不知道标签的确切输出位置,很难知道要编辑什么,但我确实从this answer 发现,如果你像这样访问标签:

    $attribute_label = $taxonomy_object->labels->name; 
    

    您返回包含“产品”的标签,例如"Product Year",但如果您像这样访问它:

     $attribute_label = wc_attribute_label( $taxonomy );
    

    你只得到属性例如"Year"

    【讨论】:

      猜你喜欢
      • 2022-06-22
      • 2018-08-12
      • 1970-01-01
      • 2014-10-17
      • 1970-01-01
      • 2018-09-16
      • 2018-02-22
      • 2016-11-19
      • 2020-12-07
      相关资源
      最近更新 更多