adding more pages

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
hello,

is it possible to add more pages under the information section on the main page, also once added will the pages be integrated with the cms in the backend to edit values like

page title

page content

in the Topic info section and also the SEO tab.

Regards
12 years ago
Yes this is possible you need to create new page in topics and give system name.
This is example:

systemName: SAMPLE1
and
systemName: SAMPLE2

then you need to edit home page file Default.aspx


<asp:Content ID="Content1" ContentPlaceHolderID="cph1" runat="Server">
         <nopCommerce:Topic ID="topicHomePageText" runat="server" TopicName="HomePageText"
                OverrideSEO="false"></nopCommerce:Topic>
        <nopCommerce:Topic ID="topicSAMPLE1" runat="server" TopicName="SAMPLE1"
                OverrideSEO="false"></nopCommerce:Topic>
        <nopCommerce:Topic ID="topicSAMPLE2" runat="server" TopicName="SAMPLE2"
                OverrideSEO="false"></nopCommerce:Topic>
</asp:Content>


Now you have 3 home pages and you can customise them from Content Management with SEO options as different pages.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.