XF 1.4 Changing text in sub-navigation bar?

oPryzeLP

New member
For some reason, I am having significant difficulties trying to fix this thing. I can't find out where it's located at all.

I want to remove the underscore in Personal_Conversations
edece9e685e1e43e3c7a0e6ff048226c.png


Any ideas?
 
Adding to that, did you simply change the phrase conversations to read Personal Conversations or did you change the calling phrase in the template to personal_conversations?
 
It should be a phrase used in the navigation template.
Yes it is there, however all the other links contain underscores as well.
Code:
 <xen:hook name="navigation_tabs_account">
                    <li><a href="{xen:link account/personal-details}">{xen:phrase personal_details}</a></li>
                    <li><a href="{xen:link conversations}">{xen:phrase personal_conversations}</a></li>
                    <li><a href="{xen:link account/news-feed}">{xen:phrase your_news_feed}</a></li>
                    <li><a href="{xen:link account/likes}">{xen:phrase likes_received}</a></li>
                            </xen:hook>
                </ul>
 
There is no personal_conversations phrase in the XenForo core. You'll need to create one, as the template is trying to call that non-existent phrase with {xen:phrase personal_conversations}.
 
Top Bottom