rgujral wrote:Thanks. I know all these are configurable items and can be turned ON and OFF.
My question was if I turn off "Contact Us" because I am running short of space on mage menu and I do not want to add another row of menu, but at the same time, I want to have contact us information at home page for users in case they wish to contact us, else there is not way they can raise their queries.
Please suggest.
Raminder
You can add a link to the "Contact Us" topic in the footer.
To do this go to
\Themes\ShopAll\Views\ShopAllCommon\ and open the
FooterInfoBlock.cshtml view.
go to line
35 and find the following line of code:
<li><a href="@Url.RouteUrl("Topic", new { SystemName = "aboutus" })">@T("AboutUs")</a></li>after it add the following code:
<li>|</li>
<li><a href="@Url.RouteUrl("Topic", new { SystemName = "contactus" })">@T("ContactUs")</a></li>
Best regards,
Ivan Stoyanov