Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #3352940
Change name of Portfolio items
Closed

Comments

  • jcornaby started the conversation

    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.

  •  7,092
    Oliver replied

    Hi,

    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