• REGISTRATION REQUIREMENTS:

    Your username here MUST MATCH your XenForo username (connected to your XF license).

    Once you have registered here, then you need to start a conversation at xenforo.com w/Bob and provide the following:
    1. Your XenForo License Validation Token
    2. The Domain Name associated with the License
    NOTE: Your account will be validated once ALL requirements are verified/met. Thank you for your patience.

Resolved How to Change Article Home Page meta Title

How to change the article meta title to something else. On my https://www.domain.com/ams/
the page title is Article i need to change to something else.
You'd have to edit a template as the phrase being used is used in multiple places.

Template: xa_ams_index

Find (line 1)
Code:
<xf:title page="{$page}">{{ phrase('xa_ams_articles') }}</xf:title>

Replace:
Code:
{{ phrase('xa_ams_articles') }}

With your own custom phrase or just raw text if you don't have multiple languages.

Examples

Code:
<xf:title page="{$page}">{{ phrase('my_custom_phrase') }}</xf:title>

Code:
<xf:title page="{$page}">Some raw text</xf:title>

Note: If you are using Modular Index, you'd have to do the same thing, but in a different template: xa_ams_index_modular
 
Last edited:
Back
Top