[Resolved] GP and WooCommerce: change related product text

Home Forums Support [Resolved] GP and WooCommerce: change related product text

Home Forums Support GP and WooCommerce: change related product text

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #983073
    Samuel

    I use GP and WooCommerce in German. What is the most effective way to change the text “Ähnliche Produkte” to something like “EXAMPLE” with GP? Preferably via function.php

    Screeenshot: http://prntscr.com/os5lgj

    #983213
    David
    Staff
    Customer Support

    Hi there,

    this is the filter i would use to translate the text:

    add_filter( 'gettext', function( $translated_text ) {
        if ( 'Related products' === $translated_text ) {
            $translated_text = 'Your new text here';
        }
    
        return $translated_text;
    } );

    Just need to change the text you’re looking for and add the translated text you want.

    #983770
    Samuel

    Amazing thx!

    #983794
    David
    Staff
    Customer Support

    You’re welcome – its a real handy filter in WP for dealing with those elements that don’t have their own filter.

    #2097476
    Vincenzo Quarta

    Hi @David,
    that code now no longer works?
    Thanks

    #2097507
    Ying
    Staff
    Customer Support

    Hi vincenzoquarta,

    Can you open a new topic and link us to your site?
    Let me know 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.