Change the word "Followings" to "Following"

We're shifting our Forum based support to a more dedicated support system!

We'll be closing our Forum support from 10th June, 2020 and move to Email Support assistance.

  • If you are a WCFM premium add-ons user, contact us- here
  • Want to know more before buying our add-ons? Send Pre sale queries- here
  • If you are a WCFM free user, please open a support ticket at WordPress.org
  • For WCFM App related queries, reach us- here
From now the forum will be read-only!

Multi Vendor Marketplace Plugin | WCFM Marketplace Forums WC Marketplace Change the word "Followings" to "Following"

Tagged: 

Viewing 3 reply threads
  • Author
    Posts
    • #132259
      Sonali Vinnakota
      Participant

      At several places in WCFM (Dashboard), the word “followings” is used. How can I change this to just “Following”? “Followings” is not the plural of “following”.

    • #132490

      Hello,

      You can change the text using “Loco Translate” plugin – https://docs.wclovers.com/locotranslate-translation-using-loco-translate-plugin/

      Select Loco translate -> plugins -> select “WCFM – WooCommerce Multivendor Marketplace” -> select site language -> search string(like “followings”) and change-> save

      Thanks.

    • #133364
      Sonali Vinnakota
      Participant
      This reply has been marked as private.
      • #133498

        Hello,

        Try this code –

        function wcfm_followings_change_text( $translated_text ) {
        	if ( $translated_text == 'Followings' ) {
        		$translated_text = 'Following';
        	}
        	return $translated_text;
        }
        add_filter( 'gettext', 'wcfm_followings_change_text', 20 );

        Thanks

    • #134482
      Sonali Vinnakota
      Participant

      Thank you, Sarmistha. This worked.

      Regards.

Viewing 3 reply threads
  • You must be logged in to reply to this topic.