Please install and activate the supplied child theme.
Create a new folder structure in the child theme folder: /woocommerce/loop/
.
Copy the file result-count.php
from the parent theme uplift/woocommerce/loop/
into the child theme folder structure above.
Replace the term ‘products’ to your desired text in the child theme.
if ( 1 == $total ) {
echo esc_html__( 'Showing the single product', 'uplift' );
} elseif ( $total <= $per_page ) {
printf( esc_html__( 'Showing all %d products', 'uplift' ), $total );
} else {
printf( esc_html__( 'Showing %1$d-%2$d of %3$d products', 'uplift' ), $first, $last, $total );
}