wordpress - 按价格过滤,更改按钮标签

标签 wordpress woocommerce widget hook-woocommerce

我不太确定这是哪个插件,但我要冒险问一下。我已经尝试过搜索,但找不到更改标签 Filter 的按钮文本的方法。

enter image description here

我想将其更改为 Apply Filter 而不是 Filter

enter image description here

小部件中没有可用的选项,所以我认为某种hook 可以改变它。

这个问题特别针对 WordPressWoocommerce,我不确定它是否是 Woocommerce 的一部分,但它在 Appearance 中可用>> 小部件

最佳答案

widget使用如下模板文件,覆盖修改即可解决

https://github.com/woocommerce/woocommerce/blob/master/templates/content-widget-price-filter.php line: 30

  • The template for displaying product price filter widget.
  • This template can be overridden by copying it to yourtheme/woocommerce/content-widget-price-filter.php

替换

<button type="submit" class="button"><?php echo esc_html__( 'Filter', 'woocommerce' ); ?></button>

<button type="submit" class="button"><?php echo esc_html__( 'Apply Filter', 'woocommerce' ); ?></button>

关于wordpress - 按价格过滤,更改按钮标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61412363/

相关文章:

php - 在 wordpress 中设置 php 生成的链接样式

php - 根据 Woocommerce 中的运输方式和付款方式添加费用

wordpress - woocommerce_my_account 在转移到另一个托管服务提供商后停止工作

php - 更改或翻译 Woocommerce 中的特定文本

go - 未能扩展 fyne 的小部件

javascript - 如何制作类似 Paypal 的星巴克小部件?

java - 如何在 Android 中捕获小部件的位置

mysql - Wordpress + 远程数据库 = 建立连接时出错

php - Wordpress Cron 错误 "SSL certificate: unable to get local issuer certificate"

wordpress - WooCommerce 法典 : How to create an order from an existing cart (wc_create_order)