Okay
  Public Ticket #3691597
Change name of sub account
Closed

Comments

  • reece started the conversation

    Is it possible to update the name of 'subaccounts' to something custom on the My Accounts page?

    Thanks

  •  2,114
    WebWizards replied

    Hi 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