Comments reece started the conversationJuly 23, 2024 at 1:39pmIs it possible to update the name of 'subaccounts' to something custom on the My Accounts page?Thanks 2,212WebWizards repliedJuly 24, 2024 at 5:33pmHi Reece,You can change that to something else, by adding the following PHP code snippet to your site: function custom_change_add_to_cart_text( $new_text, $text, $domain ) { if ( 'b2bking' === $domain ) { if ( 'Subaccounts' === $text ){ $new_text = 'Employee Accounts'; // change to your desired text here } } return $new_text; } add_filter( 'gettext', 'custom_change_add_to_cart_text', 20, 3 ); This snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/Kind regards,Stefan Sign in to reply ...
Is it possible to update the name of 'subaccounts' to something custom on the My Accounts page?
Thanks
Hi Reece,
You can change that to something else, by adding the following PHP code snippet to your site:
This snippet can be added to functions.php, or by following our guide here: https://woocommerce-b2b-plugin.com/docs/how-to-add-a-snippet-php-or-js/
Kind regards,
Stefan