# Crossed out Standard price 🎉
This feature allows you to cross out the standard price if the goods are in action, or cheaper than the original price.
# Shoptet administration
First of all, it is important to find the section where we will add the code. You can find this part of the administration by following the path below.
Administration > TEMPLATES > Editor of the appearance > HTML code > Header (bottom of the HEAD tag)
# The code
Just copy the code below into the text box. Two values can be set - true
andfalse
. The value true
allows you to cross out the price, so if you want to have this setting in the template, you need to have this value in the code.
<script>
var productsOldPriceMove = true;
</script>
1
2
3
2
3