php 销售触发器:修改XLPlugins的客户端“或”的销售代码段触发器输出
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 销售触发器:修改XLPlugins的客户端“或”的销售代码段触发器输出相关的知识,希望对你有一定的参考价值。
<?php
/**
* Add below code to snippets plugin or child theme
*/
add_filter('wcst_sales_snippet_display_content', 'japanese_knives_wcst_sales_snippet_display_modify', 100, 6);
function japanese_knives_wcst_sales_snippet_display_modify($template_output, $count, $dynamic_html, $single, $trigger_key, $productInfo) {
// removing space between {from} {city}
$template_output = str_replace('from ', 'from', $template_output);
// replacing the text '& 1 other' with 'And one more customer'
if($count == 3) {
$template_output = str_replace('& 1 other', 'and one more customer', $template_output);
}
return $template_output;
}
以上是关于php 销售触发器:修改XLPlugins的客户端“或”的销售代码段触发器输出的主要内容,如果未能解决你的问题,请参考以下文章
php 删除XlPlugins的Missing / Invalid许可证通知。
php WooCommerce旧单一产品定位钩 - 结局(由XLplugins)
php 致电销售触发:低库存通过短代码触发至低于价格位置
php 销售触发器:向Sales Count或Sales Snippet触发数据提取添加更多WC状态。
php 为XL WooCommerce销售触发插件更改Oxygen主题的WooCommerce单品页面位置
php 为XL WooCommerce销售触发插件更改Eva主题的WooCommerce单一产品页面位置