订单标题中的产品属性(不在说明中)

时间:2018-03-12 作者:Dragnet Pro

我有几个可变产品。当有人订购产品时,一些产品会以新的变体格式显示(订单属性在标题中)。图片:https://user-images.githubusercontent.com/10392998/29421924-9133df64-8344-11e7-8ee4-b2fd937afb72.png

–和其他显示为旧变体格式(其中产品属性在描述中)的图像:https://user-images.githubusercontent.com/10392998/29421925-913bbcfc-8344-11e7-9d3d-54ab7e4a6962.png

如何以旧的变体格式显示所有订单?

谢谢

1 个回复
最合适的回答,由SO网友:Shivanand Sharma 整理而成

这需要在函数中放置一点代码。php。如果你愿意,你可以使用像WP Designer这样的插件来实现这一点。

WooCommerce过滤器“WooCommerce\\u product\\u variation\\u title”使用了4个参数,这些参数在下面的代码段中是不言自明的,您可以在函数中使用这些参数。php。我在我的安装上试过了,效果很好。

add_filter( \'woocommerce_product_variation_title\', \'wooc_product_variation_fix\', 10,  4);

function wooc_product_variation_fix( $maybe_suffix, $product, $title_base, $title_suffix ) {

return $title_base;
}

结束

相关推荐

Wordpress query reverse order

$args = array(\'post_type\' => \'etlap\', \'posts_per_page\' => 5, \'post__in\' => $ids, \'post_status\' => \'any\', \'orderby\' => \'post__in\'); 我想使orderby状态颠倒。怎么可能呢?对不起,如果我问了一个愚蠢的问题,但我找不到任何关于这个问题的纪录片。