Moving Links to Static Pages from Information Menu to Footer

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 years ago
I would like to move links for two static pages (Privacy Info and Conditions of Use) out of the Information menu on the left down into the footer.

Can someone point me in the right direction so I can do that?

Thanks!
14 years ago
Bunster wrote:
I would like to move links for two static pages (Privacy Info and Conditions of Use) out of the Information menu on the left down into the footer.


The two links are located in the file Modules\InfoBlock.ascx as follows:
<li><a href="<%=Page.ResolveUrl("~/PrivacyInfo.aspx")%>">
    <%=GetLocaleResourceString("Content.PrivacyNotice")%></a></li>
<li><a href="<%=Page.ResolveUrl("~/ConditionsInfo.aspx")%>">
    <%=GetLocaleResourceString("Content.ConditionsOfUse")%></a></li>
    
You can place the links in the footer by editing the file Modules\Footer.ascx (you will probably want to remove the <li> and </li> tags).

.
14 years ago
That worked perfectly!  Thank you!
12 years ago
please help me version 2.5 .
12 years ago
You need to edit the div <class="footer-disclaimer"> tag in Views\Shared dir.
To fine topics to insert, look into Menu.cshtml and InfoBlock.cshtml, both placed into Views\Common.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.