• Resolved jovan97mi

    (@jovan97mi)


    Hello,i translated the .po with poedit and with loco translate.
    I have a problem with Store Manager translation(https://i.imgur.com/NfjsI2u.png)
    As you see from the image below ‘Rimborso’ the field is empty, i thiink because the word is too long and it goes on the next line in a way that they overlap.I tried to change the translation with poedit the ‘Add to Catlog Store’, initaly it was transalted ‘Aggiungi al catalogo del negozio’ and i thought that it was too long for the line so i shortend it to ‘Aggiungi al catalogo’ as you see from the photo but it still overlapses the settings field,how can i solve this?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author WC Lovers

    (@wclovers)

    Add this snippet to your site –

    add_filter( 'wcfm_is_allow_menu_lable_length', function( $menu_length ) {
    	$menu_length = '15';
    	return $menu_length;
    }, 50 );

    Add custom code(s) to your child theme’s functions.php
    In case you do not have child theme then add those using this plugin – https://ww.wp.xz.cn/plugins/code-snippets/

    Thread Starter jovan97mi

    (@jovan97mi)

    Thank you for your response!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Translation problem’ is closed to new replies.