HI CMERTI,
Thanks for clarifying!
Ok, that not something I accounted for when developing (or knew that was needed). You can do the following modifications to make it work for you:
Replace line 66 in /objects/wppp-dropdown.php with the following:
$ppp_text = apply_filters( 'wppp_ppp_text', __( '%s products per page', 'wppp' ), $value );
Then add the following to your themes functions.php:
add_filter( 'wppp_ppp_text', 'wppp_custom_text', 10, 2 );
function wppp_custom_text( $text, $value ) {
if ( '-1' == $value ) :
$text = 'Your translation';
endif;
return $text;
}
Of course translate the ‘Your translation’ part of the code ??
Let me know if this helped!
Thanks! Jeroen