Multi Vendor Marketplace Plugin | WCFM Marketplace › Forums › WCFM – Marketplace (WooCommerce Multivendor Marketplace) › Change Articles to Blog
- This topic has 7 replies, 3 voices, and was last updated 5 years, 4 months ago by
Jamie O’Reilly.
Viewing 7 reply threads
- AuthorPosts
- October 2, 2019 at 1:09 am #84710
Jamie O’Reilly
ParticipantHi Please, can you tell me how I change the word Articles in the shop to Blog? Thank you
- October 4, 2019 at 8:46 pm #85118
Jamie O’Reilly
ParticipantAny chance of an update please? Thank you
- October 5, 2019 at 1:36 am #85157
sdel_nevo
ParticipantHi
I think this can be done with the loco translate plugin
Steve
- October 7, 2019 at 5:05 pm #85566
Jamie O’Reilly
ParticipantThanks Steve I’ll look into that
- October 10, 2019 at 10:19 pm #86108
WCFM Forum
MemberHi,
Add this code to your site –
function wcfm_custom_1010_translate_text( $translated ) { $translated = str_ireplace( 'Articles', 'Blog', $translated ); return $translated; } add_filter('gettext', 'wcfm_custom_1010_translate_text'); add_filter('ngettext', 'wcfm_custom_1010_translate_text');
Thank You
- October 11, 2019 at 1:17 am #86137
Jamie O’Reilly
ParticipantThank you could you do the same to change Inquiry to Enquiry
Thank so much : )
- October 14, 2019 at 10:22 am #86734
WCFM Forum
MemberSure, use this code –
function wcfm_custom_1410_translate_text( $translated ) { $translated = str_ireplace( 'Inquiry', 'Enquiry', $translated ); return $translated; } add_filter('gettext', 'wcfm_custom_1410_translate_text'); add_filter('ngettext', 'wcfm_custom_1410_translate_text');
Thank You
- October 15, 2019 at 4:57 pm #86964
Jamie O’Reilly
ParticipantPerfect. Much appreciated.
- AuthorPosts
Viewing 7 reply threads
- The topic ‘Change Articles to Blog’ is closed to new replies.