在 WwooCommerce 中,我试图将船舶添加到我的管理电子邮件中的不同地址信息。
如何检查是否选中了从结帐页面运送到不同地址的复选框?
我尝试使用:
$ship_to_different_address = get_option( 'woocommerce_ship_to_destination' ) === 'shipping' ? 1 : 0;
if($ship_to_different_address == 1):
//the additional email text here
endif;
Run Code Online (Sandbox Code Playgroud)
但这似乎不起作用。有任何想法吗?