On Octobercms theme settings i use a yaml file:
product_count:
label: Number
type: number
span: left
tab: Index
default: 3
On index.htm page i use a partial featuredProducts
of component with alias featuredProducts
On component featuredProducts
viewBag i use this variable:
perPage = "{{ product_count }}"
I try to pass variable product_count
from theme settings yaml file to components viewBag but without success. Any idea on how can do it?