You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I couldn't get Front Matter Defaults to be applied on the plugin-generated category/tag pages, even when no filters were specified in the relevant _config.yml section:
defaults:
- scope:
path: ""values:
header:
image: images/foo.jpg # this works for posts and pages, but not jekyll-archives pages
The text was updated successfully, but these errors were encountered:
@piyushpaliwal Have you tried changing the type value in the defaults configuration?
For example, say I want my category archives to default to show_read_more: true. The my config file would have the following:
defaults:
- scope:
path: ""type: category # For tag-based archive pages, this would have been 'tag'values:
show_read_more: true
I couldn't get Front Matter Defaults to be applied on the plugin-generated category/tag pages, even when no filters were specified in the relevant
_config.yml
section:The text was updated successfully, but these errors were encountered: