Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeroen Sormani

    (@sormano)

    Hi Filipe,

    It is possible to translate the plugin through a .po/.mo file, these can be edited through an app like Poedit. Guide by WordPress.

    Another way (less recommended) to translate only the text is to use this peace of code in your functions.php

    add_filter( 'wppp_ppp_text', 'wppp_custom_text', 10, 2 );
    function wppp_custom_text( $text, $value ) {
    
    	return '%s products por página';
    
    }

    Let me know if this helps!

    Jeroen Sormani

    Thread Starter Filipe Coutinho

    (@zetaprime)

    YES, that works just fine, my shop will be available only on Brasil, so I dont want do loose time with language files, this will do the trick just fine!!!

    Thanks a lot!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Translate’ is closed to new replies.