Hi,
By design when you hover over the product, there is an overlay displayed showing that the image becomes not clickable and the buttons are displayed in the center of the product box. The name of the product remains clickable though. If you think is it confusing for the customers, we can change that so that the overlay is still clickable.
Thanks in advance.
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.