Skip to content

Instantly share code, notes, and snippets.

@techskilled
Created August 24, 2016 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save techskilled/2d8debaeb6560431aa96d2269ace89ad to your computer and use it in GitHub Desktop.
Save techskilled/2d8debaeb6560431aa96d2269ace89ad to your computer and use it in GitHub Desktop.
WooCommerce Replace text : Shop page title
add_filter( 'woocommerce_page_title', 'woo_shop_page_title');
function woo_shop_page_title( $page_title ) {
if( 'Shop' == $page_title) {
return "Place your new shop page title here";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment