Hi,
Thank you for the kind words. Adding an option for choosing a custom color was one of the most requested feature, so we just implemented it. Hope it helps.
As to the footer. You can change the text to whatever you want. If you need to make it like you mentioned: "powered by nopCommerce and nop-templates.com" just open the Themes/ArtFactory/Views/Common/Footer.cshtml file and replace the following
@if (!removeCopyright)
{
<div class="footer-powered-by">
Powered by <a href="http://www.nopcommerce.com/">nopCommerce</a>
@*Would you like to remove the "Powered by nopCommerce" link in the bottom of the footer?
Find more info here http://www.nopcommerce.com/copyrightremoval.aspx*@
</div>
}
@if (!removeDesignedBy)
{
<div class="footer-designed-by">
Designed by <a href="http://www.nop-templates.com/" target="_blank">Nop-Templates.com</a>
</div>
}
with the following
@if (!removeCopyright)
{
<div class="footer-powered-by">
Powered by <a href="http://www.nopcommerce.com/">nopCommerce</a>
@if(!removeDesignedBy)
{
<text>
and <a href="http://www.nop-templates.com/" target="_blank">nop-templates</a>
</text>
}
@*Would you like to remove the "Powered by nopCommerce" link in the bottom of the footer?
Find more info here http://www.nopcommerce.com/copyrightremoval.aspx*@
</div>
}
Thanks again for using the link to our site.
Please let me know if you need any further help or assistance.
Hi again,
This is happening because the products are reloaded via ajax as part of the filters. Fortunately there is a setting about that in the administration of the Nop Ajax Filters plugin. You should make sure that the "Scroll To Element On The Page After Filtration:" option is checked.
Hope that helps.
Hi mihailn,
Thank you for your feedback.
It was indeed an issue that we have fixed and deployed. In order to merge the fix you will need to download the theme again and replace the Themes/Lavella/Content/css/980.css file with the one from the downloaded package.
Thanks again!
Hi again,
Yes, that will do the trick.
Best Regards.
Hi there,
I assume you are not using the version 3.6 as in this version the Contact Us page is one column by default.
If you are not using version 3.6 you will need to change one of the files. Just one more question, do you need to remove just the Category navigation or the whole sidebar. If you want to remove the whole sidebar just copy the Views/Common/ContactUs.cshtml file in the Themes/Motion/Views/Common/ folder. Then open the file and edit it as shown below:
from
Layout = "~/Views/Shared/_ColumnsTwo.cshtml";
change it to
Layout = "~/Views/Shared/_ColumnsOne.cshtml";
Hope that helps.