【发布时间】:2018-12-03 23:48:22
【问题描述】:
如果国家/地区不是法国,我想在我的 woocommerce 网站中添加 css 样式,因为我需要在除法国以外的所有国家/地区隐藏一个按钮。我尝试了下面的代码
add_filter( 'woocommerce_state_FR' , 'custom_css_countries', 10, 1 );
function custom_css_countries($mycss) {
$country = array('FR');
if( ! in_array( $country ) ){
echo '<style>#payez-sur-12-mois{display:none;}</style>';
}
return $mycss;
}
【问题讨论】:
标签: php css wordpress woocommerce geolocation