**Theme**: Debut
**Last version(s) tested**: DEBUT (VERSION 10.0.1)
**Recommended design time**: 10 minutes
## What you have:
![.](https://screenshot.click/31-09-8fxh6-r1huy.png)
## What you want:
![.](https://screenshot.click/31-23-y8is7-y9rvx.jpg)
![.](https://screenshot.click/31-25-vmxua-qqrn2.jpg)
## What you do:
Step 1:
Open `product-card-grid.liquid`.
* Find this code `{% include 'product-price', variant: product %}`
* Add `{% if handle==null and settings.show_price %}` above it.
* Add this code below it.
````
{% include 'product-price', variant: product %}
{% elsif handle %}
{% include 'product-price', variant: product %}
{% endif %}`
````
* It should look like this ![](https://screenshot.click/31-29-kd7w4-mdqdk.jpg)
* Save the file
Step 2:
Open `settings_schema.json`
1.Below the theme info add this
```
{
"name": "Homepage Collection",
"settings": [
{
"type": "checkbox",
"id": "show_price",
"label": "Show price",
"default": true
}
]
},
````
2. Save the file.
It should look like this :
![](https://screenshot.click/31-31-ijvyz-qqi8l.jpg)