Comments jcornaby started the conversationApril 20, 2023 at 11:58amIs it possible to change the name of "TheGem Portfolio Items" that appears on my sitemaps. I always want this section to be called Integrations as I have used throughout the site. 7,092Oliver repliedApril 20, 2023 at 12:02pmHi,Try to add this one: function thegem_change_text( $translated_text ) { if ( $translated_text == 'TheGem Portfolio Items' ) { $translated_text = 'Something'; } } add_filter( 'gettext', 'thegem_change_text', 20 ); To the functions.php of the child themeĀ Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. Regards, Oliver Sign in to reply ...
Is it possible to change the name of "TheGem Portfolio Items" that appears on my sitemaps. I always want this section to be called Integrations as I have used throughout the site.
Hi,
Try to add this one:
To the functions.php of the child themeĀ
Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list.
Regards, Oliver