How to Configure About us and contact details

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 年 前
the About us section shows Put your "About Us" information here. You can edit this in the admin site.  Can someone point out where int he admin site you can do this.  The same problem is also present in the contact us area in that i cannot see where to configure it.
14 年 前
Go to Admin Section > Content Management > Topics

There you can configure many things, like About Us, Contact Us, Homepage etc

To Configure specific page - click on "Edit topic content"

Let me know if you face any problem...
14 年 前
ok that worked a treat.  Is it possible to redirect automatically the contact us are to another web site ?  Also we have our own blog site.  how is it possible to redirect the nopCommerce site to our own blog site ?
14 年 前
yes it is possible, just to make sure what you're trying to do ? you want if someone click on Contact us tab on the main menu - it should re-direct the user to another website ? same with Blog ?

If this is what you're trying to do then let me know i will explain you what to do.
14 年 前
yes thats exactly what i want to do.
14 年 前
ok in your code,

Go to nopCommerceStore Folder , > Go to Modules Folder >

Now try to find HeaderMenu.ascx

open it and try to find this :

<li><a href="<%=Page.ResolveUrl("~/Blog.aspx")%>">
            <%=GetLocaleResourceString("Blog.Blog")%></a> </li>

Change the above code to this: (Change the Bold letters with your blog website)

<li><a href="<%=Page.ResolveUrl("http://www.YOURBLOG.com")%>">
            <%=GetLocaleResourceString("Blog.Blog")%></a> </li>


Now try to find this:

<li><a href="<%=Page.ResolveUrl("~/ContactUs.aspx")%>">
            <%=GetLocaleResourceString("ContactUs.ContactUs")%></a> </li>

change to this: (Change the Bold letters with your website)

<li><a href="<%=Page.ResolveUrl("http://www.YOURWEBSITE.com")%>">
            <%=GetLocaleResourceString("ContactUs.ContactUs")%></a> </li>

Done, save the HeaderMenu.ascx and close the file

After changing this:
Inside the Modules folder try to find this file : InfoBlock.ascx

whatever you did above do the same for contact Us and Blog

Save the file after changes and Run the Project, It should work
14 年 前
Let me know if you're facing any problem
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.