Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created October 20, 2022 13:57
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
Temporary fix for Composite Products Sort by newness to Sort by latest text
/**
* Temporary fix for Composite Products Sort by newness to Sort by latest text
*/
function temp_order_by_text_tweak( $orderby_options ) {
$orderby_options['date'] = __( 'Sort by latest', 'woocommerce' );
return $orderby_options;
}
add_action( 'woocommerce_composite_component_orderby', 'temp_order_by_text_tweak');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment