我正在试着把结账页面上的一个句子从英语翻译成荷兰语,但我不知道怎么做。checkout screen
发布于 2019-03-16 16:53:51
function woocommerce_login_form($args = array()) {
$args = array(
'message' => __('If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing & Shipping section.', 'woocommerce'),
'redirect' => wc_get_page_permalink('checkout'),
'hidden' => true,
);
wc_get_template('global/form-login.php', $args);
}根据需要修改文本,并将此函数粘贴到活动主题functions.php中
https://stackoverflow.com/questions/42996427
复制相似问题