Woocommerce 结帐面包屑
Woocommerce checkout breadcrumbs
我正在使用 flatsome 主题的 woocommerce。我的网站是西班牙语的,我很满意它的自动翻译方式,但我有一个问题。结帐处有英文面包屑。我可以通过任何方式添加代码段进行更改;
Shopping cart -> Carrito
Checkout details -> Detalles de pago
Order complete -> Pedido completado
谢谢
好的,我知道怎么做了,希望这可以帮助到其他人;
add_filter( 'gettext', function ( $strings ) {
/**
* Holding translations/changes.
* 'to translate' => 'the translation or rewording'
*/
$text = array(
'SHOPPING CART' => 'CARRITO',
'CHECKOUT DETAILS' => 'DETALLES DE PAGO',
'ORDER COMPLETE' => 'PAGO COMPLETADO',
);
$strings = str_ireplace( array_keys( $text ), $text, $strings );
return $strings;
}, 20 );
我正在使用 flatsome 主题的 woocommerce。我的网站是西班牙语的,我很满意它的自动翻译方式,但我有一个问题。结帐处有英文面包屑。我可以通过任何方式添加代码段进行更改;
Shopping cart -> Carrito
Checkout details -> Detalles de pago
Order complete -> Pedido completado
谢谢
好的,我知道怎么做了,希望这可以帮助到其他人;
add_filter( 'gettext', function ( $strings ) {
/**
* Holding translations/changes.
* 'to translate' => 'the translation or rewording'
*/
$text = array(
'SHOPPING CART' => 'CARRITO',
'CHECKOUT DETAILS' => 'DETALLES DE PAGO',
'ORDER COMPLETE' => 'PAGO COMPLETADO',
);
$strings = str_ireplace( array_keys( $text ), $text, $strings );
return $strings;
}, 20 );