- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
正如主题所说,我想将搜索字段占位符从“搜索产品...”更改为“搜索优惠...”。我怎样才能做到这一点?我尝试遵循 WooCommerce 在product-searchform.php 上所说的内容:
<?php
/**
* The template for displaying product search form
*
* This template can be overridden by copying it to yourtheme/woocommerce/product-searchform.php.
*
* HOWEVER, on occasion WooCommerce will need to update template files and you
* (the theme developer) will need to copy the new files to your theme to
* maintain compatibility. We try to do this as little as possible, but it does
* happen. When this occurs the version of the template file will be bumped and
* the readme will list any important changes.
*
* @see https://docs.woocommerce.com/document/template-structure/
* @author WooThemes
* @package WooCommerce/Templates
* @version 2.5.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label class="screen-reader-text" for="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>"><?php _e( 'Search for:', 'woocommerce' ); ?></label>
<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field" placeholder="<?php echo esc_attr__( 'Search products…', 'woocommerce' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
<input type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'woocommerce' ); ?>" />
<input type="hidden" name="post_type" value="product" />
</form>
我编辑自:
class="search-field" placeholder="<?php echo esc_attr__( 'Search products…', 'woocommerce' ); ?>"
致:
class="search-field" placeholder="<?php echo esc_attr__( 'Search Offers…', 'woocommerce' ); ?>"
没有任何改变。我也尝试在原始 WooCommerce Product-searchform.php 上执行相同的操作,得到相同的结果。
如果有帮助,我检查元素时的代码:
<form role="search" method="get" class="woocommerce-product-search" action="https://mywebsite.com/">
<input class="search-field" placeholder="Search Products…" value="" name="s" title="Search for:" type="search">
<input value="Search" type="submit">
<input name="post_type" value="product" type="hidden">
</form>
CSS:
/****
Search form Header
****/
.header-search {
float: left;
position: relative;
width: 25px;
height: 25px;
text-align: center;
}
.header-search-button {
color: #cbc7c2;
font-size: 14px;
line-height: 20px;
cursor: pointer;
}
.header-search:hover .header-search-button {
color: #fff;
}
.header-search-input {
display: none;
position: absolute;
top: 100%;
right: 0;
width: 220px;
padding: 5px;
background: rgba(26, 26, 26, 0.9);
}
.header-search.header-search-open .header-search-input {
display: block;
}
.header-search.header-search-open .header-search-button {
color: #fff;
}
.header-search-input input[type=submit] {
position: absolute;
z-index: 9;
top: 5px;
right: 5px;
width: 28px;
height: 33px;
border: none;
background: none;
text-indent: -9999999px;
}
.header-search-input input[type="search"] {
width: 100%;
padding: 10px;
padding-right: 28px;
border: none;
border-radius: 0;
font-family: "Roboto Condensed", sans-serif;
font-size: 12px;
line-height: 12px;
letter-spacing: 2px;
}
.header-search-input:after {
display: inline-block;
position: absolute;
z-index: 8;
top: 5px;
right: 5px;
width: 20px;
width: 33px;
color: #999;
font-family: "Glyphicons Halflings";
font-size: 12px;
font-weight: 400;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
line-height: 1;
line-height: 33px;
content: "\e003";
}
嗯,我想我走错了路,你能帮助我吗?提前致谢。
注意令人震惊的事情仍然是,当我编辑位于“woocommerce/templates/product-searchform.php”中的插件“product-searchform.php”时,没有发生任何事情。我还删除了所有这些代码:
<form role="search" method="get" class="woocommerce-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label class="screen-reader-text" for="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>"><?php _e( 'Search for:', 'woocommerce' ); ?></label>
<input type="search" id="woocommerce-product-search-field-<?php echo isset( $index ) ? absint( $index ) : 0; ?>" class="search-field" placeholder="<?php echo esc_attr__( 'Search products…', 'woocommerce' ); ?>" value="<?php echo get_search_query(); ?>" name="s" />
<input type="submit" value="<?php echo esc_attr_x( 'Search', 'submit button', 'woocommerce' ); ?>" />
<input type="hidden" name="post_type" value="product" />
</form>
网站上什么也没发生!
这怎么可能? :O
最佳答案
尝试以下代码:https://www.speakinginbytes.com/2013/10/gettext-filter-wordpress/它使用 wordpress gettext 过滤器,并且可用于 wordpress 中的几乎任何内容。
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $translated_text ) {
case 'Search products…' :
$translated_text = __( 'Search Offers…', 'woocommerce' );
break;
}
return $translated_text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
或者
function my_text_strings( $translated_text, $text, $domain ) {
switch ( $text ) {
case 'Search products…' :
$text = __( 'Search Offers…', 'woocommerce' );
break;
}
return $text;
}
add_filter( 'gettext', 'my_text_strings', 20, 3 );
甚至
add_filter('gettext', 'translate_text');
add_filter('ngettext', 'translate_text');
function translate_text($translated) {
$translated = str_ireplace('Search products…', 'Search Offers…', $translated);
return $translated;
}
关于javascript - 如何编辑 WooCommerce 搜索字段占位符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46791879/
[编辑:在 functions.php 中添加代码并省略代码 WC 文件中的更改时,它实际上起作用了。重要提示:它仅在 ONE 属性存在时有效。但是,当有 2 个属性(例如尺寸和颜色)时,它就不起作用
我使用以下方法获取购物车中产品的版本ID。 $cartdetails = $woocommerce->cart->get_cart(); foreach($cartdetails as $ca
我目前使用 $order = new WC_Order($order_id); $order->update_status('completed', 'Order has been delivered
您好,我无法从 woocommerce 订单送货地址获取,我收到错误: fatal error :在 .. 中的非对象上调用成员函数 get_formatted_address() 我正在使用代码:
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
是否可以使产品变化来改变价格? 例如,我有一个基本产品及其变体: 数量 -10 -20 -50 颜色 - 蓝色 -红色 项目 -是的 -没有 我有数量的价格,不管是什么颜色。但是,如果您选择“项目-否
有没有办法将其他收件人添加到 woocommerce 发票邮件中。我尝试使用“woocommerce_email_headers” Hook ,但它不起作用: add_filter( 'woocomm
我不是在谈论向产品添加属性,而是我想添加属性本身.. 您可以从“产品”->“属性”下的 UI 执行此操作,但从代码中它是如何完成的(例如:要调用哪些函数或要更新的表)? 最佳答案 属性只是一个自定义分
只是想看看是否有办法为我的送货选项添加工具提示或弹出窗口,以便在客户悬停或点击(通过移动设备)时更详细地向客户解释此选项的含义? 最佳答案 简单的解决方案是通过将以下内容添加到您的 functions
如何获取 woocommerce 中的类别列表?使用这段代码,我得到了 wordpress 类别列表: function gaga_lite_category_lists(){ $catego
我一直试图在 WooCommerce 上禁用产品价格四舍五入,但没有成功。即使我在 WooCommerce > Settings > General > Number of decimals 上将 d
我一直在尝试定制 woocommerce 中的相关产品。我使用 woocommerce_output_related_products_args 添加 meta_query 选项,但它们没有效果,这是
由于 WooCommerce 2.1 页面(例如订单接收)已被删除并替换为 WC 端点。我的结帐页面有一个自定义页面模板 (page-checkout.php),现在所有结帐端点也都在使用这个自定义页
我正在向 WooCommerce 的结帐页面添加额外的字段, 我已经添加了基本的文本字段,但我想要一个带有几个选项的下拉列表或选择框, 这是我到目前为止所做的,但我在某处犯了错误 $fields['b
我试图在我的 invoice.php 中拼出 WooCommerce 订单总额模板文件可以达到订单总金额。 首先我试过: $total = $order->get_total(); - format
我需要在购物车页面和结帐页面中显示的价格(小计、总计...)后添加文字提及。 我知道如何在单个页面和商店页面上执行此操作,但不知道如何在其他页面上执行此操作。我唯一找到的就是这段代码,但它不起作用。
在 Woocommerce 中,在管理产品列表中,我应该需要为特定属性过滤产品。 根据“Add a filter dropdown for product tags in woocommerce ad
Woocommerce 有一个带有“woocommerce”类的 div 我想添加另一个类或删除该类。那是哪个文件? 最佳答案 虽然 WooCommerce 没有提供任何支持的方法来实现这一点
您好,目前我想获取 woocommerce 中的税率名称。我有什么办法可以得到这张图中圈出的值:/image/pyGAH.png 我当前的代码: $items = $order->get_items(
在 Woocommerce 中,我尝试显示可变产品的销售日期。 我找到了a code ,如果我将此代码准确地发布在functions.php中,它不会执行任何操作。我尝试修改它,因为我只需要在起始页上
我是一名优秀的程序员,十分优秀!