[ad_1]
[ad_2]
Title, how to remove this ugly sale! badge?
Note I have a different sale badge on my product catalog page and others:
However the Single Product page is showing that badge.
Im using Jackrabbit theme and not using any other plugin to make SALE badges.
Is there a solution to it?
Also extra question, is there a way to remove the pan zoom icon?

You could probably do it with some basic css quite easily. Just right click and ‘inspect’ the element in google chrome, find out what the class is for those elements and then change the code below as appropriate.
Then add it to your custom css section in the customiser.
.yourclasshere {
display: none;
}
Inspect the sale element, find it’s id/class
#id {
display: none;
}
.class {
display: none;
}