我不知道发生了什么变化。
下面是更改产品的代码,请将页面与您想要的内容进行比较
function comparerename()
{
return \'karsilastir\';
}
add_filter(\'woocommerce_products_compare_end_point\' ,\'comparerename\');
以下是更改比较限制的代码
function comparelimit( $location ) {
$location = 8;
return $location;
}
add_filter( \'woocommerce_products_compare_max_products\', \'comparelimit\' );
如果有人能教我如何使用下面的一个,那就太好了。
apply_filters( ‘woocommerce_products_compare_compare_button’, html ) – filters the display of the compare products button.
apply_filters( ‘woocommerce_products_compare_meta_headers’, array ) – filters the headers displayed on the compare products page.