Okay
  Public Ticket #3800653
Title Customizations
Open

Comments

  •  4
    Matthew started the conversation

    Hello,


    How do I change the title of the  Go to Sales Agent Dashboard button to Go to Sales Rep Dashboard?

    I added to my functions.php file:

    add_filter ('salesking_dashboard_button', function($val) {
        return 'Go to Sales Rep Dashboard';
    }, 10, 1);

    But that is not working.


    Thanks!

     


  •  2,294
    WebWizards replied

    Hello Matthew,

    It is possible to change that text by adding this PHP code snippet to your site:

    function modify_dashboard_text( $translated_text, $text, $domain ) {
        if ( $text === 'Go to Sales Agent Dashboard' ) {
            return 'Go to Sales Rep Dashboard';
        }
        return $translated_text;
    }
    add_filter( 'gettext', 'modify_dashboard_text', 20, 3 );

    If necessary, additional texts can be changed by extending this snippet,

     

    The code can be added to functions.php or any snippets plugin,

    Kind regards,

    Stefan

  •  4
    Matthew replied

    This worked perfectly.  

    Thanks!