【问题标题】:remove special word woocommerce products title删除特殊词 woocommerce 产品标题
【发布时间】:2019-05-24 21:38:16
【问题描述】:

我想删除特殊字 woocommerce 产品标题

例子:

Products title: vidaXL Dining Chairs 2 pcs Solid Acacia Wood Sheesham

所以,我想从 WooCommerce 网站上删除 vidaXL。该网站仍然提供 18000 种产品,因此无法手动进行。如果可能的话,请任何 WooCommerce 功能。

我已经试过了,请有人帮助我。

【问题讨论】:

  • 如果您必须删除的始终是同一个词 (vidaXL),则可以很容易地在您的数据库中找到并替换它,或者使用导入/导出产品插件和电子表格中的修改。

标签: wordpress woocommerce


【解决方案1】:
add_filter( 'gettext', 'theme_change_field_names', 20, 3 );
function theme_change_field_names( $translated_text, $text, $domain ) {



        switch ( $translated_text ) {

            case 'vidaXL' :

                $translated_text = __( '', 'theme_text_domain' );
                break;


        }



    return $translated_text;
}

【讨论】:

    猜你喜欢
    • 2018-12-11
    • 1970-01-01
    • 1970-01-01
    • 2022-06-22
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2018-08-12
    • 1970-01-01
    相关资源
    最近更新 更多