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, 1 month ago by Jamie O’Reilly.
Viewing 7 reply threads
- AuthorPosts
- October 2, 2019 at 1:09 am #84710Jamie O’ReillyParticipant
Hi 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 #85118Jamie O’ReillyParticipant
Any chance of an update please? Thank you
- October 5, 2019 at 1:36 am #85157sdel_nevoParticipant
Hi
I think this can be done with the loco translate plugin
Steve
- October 7, 2019 at 5:05 pm #85566Jamie O’ReillyParticipant
Thanks Steve I’ll look into that
- October 10, 2019 at 10:19 pm #86108WCFM ForumMember
Hi,
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 #86137Jamie O’ReillyParticipant
Thank you could you do the same to change Inquiry to Enquiry
Thank so much : )
- October 14, 2019 at 10:22 am #86734WCFM ForumMember
Sure, 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 #86964Jamie O’ReillyParticipant
Perfect. Much appreciated.
- AuthorPosts
Viewing 7 reply threads
- The topic ‘Change Articles to Blog’ is closed to new replies.