• Resolved yhazem

    (@yhazem)


    Hello,
    can you guys tell me how can I change the text on membership plan page from “for each 1 month(s)” to “Per Month”.
    Thank you.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter yhazem

    (@yhazem)

    I found the solution I just needed to translate the strings

    Please explain to me how you were able to achieve this. Am facing similar problem

    Plugin Author WC Lovers

    (@wclovers)

    Use translation plugin like “Loco Translate” and edit labels as per your requirement.

    Thread Starter yhazem

    (@yhazem)

    @freedx
    add this to your code snippets and it will work

    function wcfm_custom_2209_translate_text( $translated ) {
    	
    	$translated = str_ireplace( 'for each %s %s', 'Per Month', $translated );
    	
    	
    	return $translated;
    }
    add_filter('gettext', 'wcfm_custom_2209_translate_text');
    add_filter('ngettext', 'wcfm_custom_2209_translate_text');

    Thanks so much
    I appreciate

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to change “for each” text on plan page’ is closed to new replies.