XF 2.1 It should write "Age" here, but there is a point. Where can I fix it.

Most likely it's an issue with the third party translation you are using.

Check the phrase in the ACP.

If the phrase is valid then it's an issue with a template.
 
member_tooltip

PHP:
<div class="menu" data-menu="menu" aria-hidden="true">
                                <div class="menu-content">
                                    <h3 class="menu-header">{{ phrase('moderator_tools') }}</h3>
                                    <xf:contentcheck>
                                        <xf:macro template="member_macros" name="moderator_menu_actions"
                                            arg-user="{$user}"
                                            arg-context="tooltip" />
                                    </xf:contentcheck>
                                </div>
                            </div>

arg-context="tooltip"


I want to add "age" to it
 
Actually, the post above is correct - the text "Age" is not present in that location by default.

It would require some form of customisation to add it.
It's not that easy as it's part of the userblurb attribute.
 
Top Bottom