Wordpress修改Woocommerce未選擇產品屬性添加購物車的提示信息

找到當前主題的functions.php文件。編輯 添加以下代碼:
//修改未選擇產品屬性的提示信息
add_filter( 'gettext', 'customizing_variable_product_message', 97, 3 );
function customizing_variable_product_message( $translated_text, $untranslated_text, $domain )
{
if ($untranslated_text == 'Please select some product options before adding this product to your cart.') {
$translated_text = __( 'Please select the attributes and shipping country before checkout.', $domain );
}
return $translated_text;
}

添加代碼后保存即可。
最后我們看一下效果:






