Hi there!
I understand your concern. You can try using the following code to translate the “Brand” text.
// Change button text
function ts_change_proceed_to_checkout_text($translated_text, $text, $domain) {
if ($text === "Brand") {
$translated_text = 'add new text here'; // Change to your desired text
}
return $translated_text;
}
add_filter('gettext', 'ts_change_proceed_to_checkout_text', 20, 3);
If that does not help, could you please provide more details on the exact translation settings you have configured on your site? This will allow me to replicate the issue on my end and guide you accordingly.
Also, here is a complete guide on how to translate WooCommerce:
https://woocommerce.com/document/woocommerce-localization/
Please note that generally we do not provide support for customization, If you want to consider professional assistance for customization, I can recommend?WooExperts?and?Codeable.io?as options for getting professional help. Alternatively, you can also ask your development questions in the??WooCommerce Community Slack?as custom code falls outside our usual?scope of support.
Thank you