Temporary fix for Composite Products Sort by newness to Sort by latest text
This file contains 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
/** | |
* 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