Skip to content

Instantly share code, notes, and snippets.

@webtoffee-git
Created January 13, 2026 08:44
Show Gist options
  • Select an option

  • Save webtoffee-git/308ca2bf5d789b7c0dc8df7c762c593d to your computer and use it in GitHub Desktop.

Select an option

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)
<?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