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

Reply
  • 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

Children
  • 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).

  • Isn't the purpose of the Wikis Title widget to change that? Or am I misunderstanding the reason for this widget?

     

  • Former Member
    +1 Former Member in reply to Alex Nassi

    That setting will change the Header text - if the widget is displayed in one of the formats that specify "with Header". For instance:

    Note that "Show the title in the page" needs to be checked too for this to display, otherwise the widget won't be shown in the page at all.

    If you want to specify a custom page title, add the "Custom Title" widget to the page. You may need to add it below the Wikis - Title widget (or remove that widget) so it's the last thing setting the title for the page.

  • If you want to specify a custom page title, add the "Custom Title" widget to the page. You may need to add it below the Wikis - Title widget (or remove that widget) so it's the last thing setting the title for the page.

    That did it, thanks ! I'm almost sure I had tried that widget, but I probably had it above the Wikis - Title one. Thanks for the help!