Peppi wrote:Hi,
i would like to change some settings in the footer menu. How i can change in the Payment options section the icons? I would like remove Amex and Paypal or all and replace it with SEPA.
The same i have with the follow us section. I would replace twitter with xing or linkedin.
Best Regards,
Giuseppe
Greetings Giuseppe,
to achieve this you need to go in your file explorer to this location:
~ Presentation\Nop.Web\Themes\Emporium\Views\Shared\Components\Footerand open the
Default.cshtml in your text editor.
Then go to line 94 and you will see this code:
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon1.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon2.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon3.png")" alt="" />
<img src="@Url.Content("~/Themes/Emporium/Content/img/pay_icon6.png")" alt="" />
These are your payment options icons. You need to keep the first line, the other three you can delete. Save the file.
Then you need a SEPA logo image which is about the same size as the current icons (48px x 30px), rename the file like so -
pay_icon1.png.
Have in mind that if your logo is not a .png file you need to change the file extension in the above-mentioned line of code, too.
Then go to:
~ Presentation\Nop.Web\Themes\Emporium\Content\imgand replace the existing
pay_icon1.png file with your new image.
That is all.