Answers for "how to change go to shop button text in woocommerce"

PHP
0

how to change go to shop button text in woocommerce

add_filter( 'gettext', 'change_woocommerce_return_to_shop_text', 20, 3 );

function change_woocommerce_return_to_shop_text( $translated_text, $text, $domain ) {

        switch ( $translated_text ) {

            case 'Go to the shop' :

                $translated_text = __( 'Browse Shop', 'woocommerce' );
                break;

        }

    return $translated_text;
}
Posted by: Guest on May-14-2021

Code answers related to "how to change go to shop button text in woocommerce"

Browse Popular Code Answers by Language