【问题标题】:Where i can edit this price element woocommerce?我可以在哪里编辑这个价格元素 woocommerce?
【发布时间】:2017-03-27 19:22:30
【问题描述】:

我想替换所有产品中的“德:”字,但不知道在哪里

Link to website

【问题讨论】:

    标签: wordpress woocommerce woocommerce-bookings


    【解决方案1】:

    您可以通过woocommerce_get_price_html_from_text 过滤器更改“发件人”文本。

    你会这样做,像这样:

    add_filter( 'woocommerce_get_price_html_from_text', 'so_43054760_price_html_from_text' );
    function so_43054760_price_html_from_text( $text ){
        return __( 'whatever', 'your-plugin-textdomain' );
    }
    

    请记住,这是特定于 WooCommerce 3.0 的代码。我不确定它是否与 WC 2.6.x 向后兼容。

    【讨论】:

      猜你喜欢
      • 2012-12-30
      • 2021-10-08
      • 2023-03-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多