• Resolved enoch008

    (@enoch008)


    Hi,

    I installed your plugin and it works fine with other plugin but not with my custom theme, in the translation page i can see the string that i want to translate but in the frontend I cant see the changes.

    I attach below the translation setting, the ttfp setting and also the part of code that i want to translate.

    Where am I doing wrong?

    add_filter( 'woocommerce_catalog_orderby', 'misha_change_sorting_options_order', 5 );
    
    function misha_change_sorting_options_order( $options ){
        
        $options = array(
             
            'title'      => __( 'ordine alfabetico', 'woocommerce' ), 
            'price' => __( 'Prezzo crescente', 'woocommerce' ),
            'price-desc' => __( 'Prezzo decrescente', 'woocommerce' ),
            
        );
        
        return $options;
    }
    • This topic was modified 1 year, 8 months ago by enoch008.
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Theme’s string translations doesnt show in frontend’ is closed to new replies.