Maybe im getting confused. These are pages located in my root, like the error pages and custom pages. I'm not creating entirely new pages in my theme... rather copying ones that already exist like above, which would be altering stock code, correct?
I copied my custom.aspx and custom.aspx.vb to my theme pages folder and made a few changes. When I went to the site, it was still pulling from the root, not my pages folder in my theme.
So I looked at my error.aspx pages as well... Actually, it was already there from the upgrade Aaron. Anyways, I noticed the root error.aspx page and the theme>pages error.asxp were different. I should see my theme one correct?
Root error.aspx
<div class="main">
<div class="row">
<div class="small-12 columns">
<h1><asp:Literal ID="HeaderLiteral" runat="server"></asp:Literal></h1>
<div class="errorcontent">
<asp:Literal ID="ErrorContentLiteral" runat="server"></asp:Literal>
</div>
</div>
</div>
</div>
Theme>Pages error.aspx
<h1><asp:Literal ID="HeaderLiteral" runat="server"></asp:Literal></h1>
<div class="errorcontent">
<strong>The page you requested was not found, and we have a fine guess why.</strong>
<ul>
<li><asp:Literal ID="ErrorContentLiteral" runat="server"></asp:Literal></li>
<li>If you typed the URL directly, please make sure the spelling is correct.</li>
<li>If you clicked on a link to get here, the link may be outdated.</li>
</ul>
<H3>What can you do?</H3>
<p>Have no fear, help is near! There are many ways you can get back on track with MedSupplier.com.</p>
<ul>
<li>Use the search bar at the top of the page to search for your products.</li>
<li>Go to our homepage by <a href="/" title="MedSupplier.com">clicking here</a></li>
<li>Use the menu bar above to find the category or product you are looking for</li>
<li>Call customer service at 1-800-335-3774</li>
</ul>
</div>
http://www.medsupplier.com/error.aspx is pulling from the root error.aspx page, not the theme>pages error.aspx
Edited by user Tuesday, June 2, 2015 10:45:57 AM(UTC)
| Reason: confusion