Skip to content

Instantly share code, notes, and snippets.

@stuartduff
Created October 20, 2022 13:57
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 stuartduff/b108c306c2f1de54be131a3b2c94f22f to your computer and use it in GitHub Desktop.
Save stuartduff/b108c306c2f1de54be131a3b2c94f22f to your computer and use it in GitHub Desktop.
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