Wiki home browser title

I have a group that includes multiple Wikis (Reseller Guides, ISV Guides, and Distributor Guides). On the Wiki home page, the title that shows in the browser tab shows as "Distributor Guides - PartnerClub - SugarClub" (one of the wikis - group - site).

On the page itself, the title's code shows: <title>(+) Distributor Guides - PartnerClub - SugarClub</title>

I tried editing the "Wikis Title" widget and also tried adding the SEO Metadata and Custom Title widgets and tried editing those, but neither did anything. 

I think this may be a bug as I noticed the same problem on https://community.telligent.com/community/11/w (the title shows <title>API Documentation - Verint Community 11.x - Verint | Telligent Community</title>). I didn't notice the same issue on other applications (forums, calendar, gallery, etc). 

Does anyone know a way to change the wiki page's title? 

Parents
  • Former Member
    0 Former Member

    I'm seeing this too and logging a bug. To workaround this, you'll need to edit the logic in the "Wikis - Title" widget. For instance, you could add a check if the page name is GroupAggregateHome (confirm first this is the page you're displaying) and set the title directly:

    ...
    #elseif ($page == 'GroupAggregateHome')
        #set($title = $core_v2_language.GetResource('wikis'))
    ...

    TE-17178

  • Thanks   (and Mathew D'Amico (mdamico) - I saw an email notification from you too)!

    I changed the following in Wikis Title - Content in Widget Studio:

    #if ($page == 'AddPage')
    	#set($title = $core_v2_language.GetResource('Wikis_AddPage'))
    #elseif ($page == 'Tags')

    to:

    #if ($page == 'AddPage')
    	#set($title = $core_v2_language.GetResource('Wikis_AddPage'))
    #elseif ($page == 'GroupAggregateHome')
        #set($title = $core_v2_language.GetResource('wikis'))
    #elseif ($page == 'Tags')

    That got the page title to show "Wikis" instead of "Distributor Guides" which is a big improvement and I think is good enough for now. It's still not showing the page title as defined in the Wikis Title widget, but I'll assume that's what the bug you created would fix. 

    Thanks for your help!

    [edited, forgot screenshot]

  • Former Member
    0 Former Member in reply to Alex Nassi

    What would you expect/want it to show? The workaround there is to match the other apps that show "Blogs", etc on their group aggregate pages. But you can easily set $core_v2_language.GetResource('wikis') to anything else you want to use (That is just the localized "Wikis" string).

Reply Children