Change 'Send New PM'

Discussion in 'Technical Support' started by jevanedwards, Jul 21, 2012.

  1. jevanedwards New Member

    Hello,
    I would like to change 'send new pm' to 'send message', where is this code located? I've looked in showlistings.tpl and so forth. I use the 'inspect element' function of google chrome to try to locate it, but I don't really understand the information that is displayed. Many thanks in advance.
  2. freeze2 Super Moderator

    Try this....

    In language/english.php

    Find:

    Code:
    define('LANG_SEND_NEW_PM', 'Send New PM');
    Change to:

    Code:
    define('LANG_SEND_NEW_PM', 'send message');
    ***OR***

    Change the code directly in the template files from:

    {$smarty.const.LANG_SEND_NEW_PM}

    To:

    send message

    I believe you can find this in the following template files:

    listingsextra.tpl
    listingsextra2.tpl
    private/show_messages.tpl
  3. jevanedwards New Member

    Thank you, worked like a charm.

Share This Page