tleeman wrote:The Contact Us Topic information displays with the Contact Us Form when the Contact Us link is selected from the Main Menu. Selecting the Contact Us link from the front page Footer, only the topic information is displayed. Can I get the Contact Us Form to also display from the Footer link? Using version 4.1, thanks.
Hi
tleeman,
this item cannot be shown in the footer of the Traction theme without some code modifications.
You need to open the following file in your text editor:
~ Presentation\Nop.Web\Themes\Traction\Views\Shared\Components\Footer\Default.cshtmland add the bolded code on line 49 like so:
...
@if (Model.AllowCustomersToApplyForVendorAccount && Model.DisplayApplyVendorAccountFooterItem)
{
<li><a href="@Url.RouteUrl("ApplyVendorAccount")">@T("Vendors.ApplyAccount")</a></li>
}
@if (Model.DisplayContactUsFooterItem)
{
<li><a href="@Url.RouteUrl("ContactUs")">@T("ContactUs")</a></li>
}
</ul>
...