Close

"remove by Nop-Templates" link in the footer

nonam
8 years ago
#10434 Quote
Avatar
  • 57
Hello Nop-Templates team!

First... thanks for this great update to 3.70. Great work! I am still testing a few things out. Love the fact that you've created an option for us to be able to choose our own theme colour. Wonderful!

Regarding the Nop-Templates link in the footer, I do have a question and am not sure how to articulate it. The way the link is written, seems to indicate that Nop-Templates has designed everything on the site... which in fact, is not quite the case. I absolutely do not mind about giving you credit for the great work that you have done, but I also don't want to leave the impression that my own work (logo, banner, etc.) was also designed by your team. Being a graphic designer myself, I am more sensitive to those things. 

Is there not a way to simply add Nop-Templates to the following?: "powered by nopcommerce and nop-templates". Just wondering. Thanks!
Stefan
8 years ago
#10435 Quote
Avatar
  • Moderator
  • 157
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.
Best Regards,

Stefan Hristov
Nop-Templates.com
nonam
8 years ago
#10461 Quote
Avatar
  • 57
That's wonderful. I'll update. Thanks!