Created
January 13, 2026 08:44
-
-
Save webtoffee-git/308ca2bf5d789b7c0dc8df7c762c593d to your computer and use it in GitHub Desktop.
Customize wishlist table heading text in WooCommerce - By WebToffee (Wishlist for WooCommerce)
This file contains hidden or 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
| <?php //Do not copy this line of code | |
| add_filter('wishlist_table_heading','wbte_gc_change_wishlist_title_description',10,1); | |
| function wbte_gc_change_wishlist_title_description($title){ | |
| return 'Products added to favourites'; //add your custom title here. | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment