**Theme**: Debut
**Last version(s) tested**: DEBUT (VERSION 10.0.1)
**Recommended design time**: 10 minutes
## What you have:

## What you want:


## 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 
* 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 :
