Created
November 8, 2023 09:39
-
-
Save noellesteegs/db553da5b1885ac8ef6a63de73fc5b66 to your computer and use it in GitHub Desktop.
Change WooCommerce cross-sells heading text on the cart page
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_product_cross_sells_products_heading', 'na_change_cross_sells_products_heading' ); | |
function na_change_cross_sells_products_heading() { | |
return 'You will definitely like'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment