This check discourages the use of deprecated filters.
This check is aimed at eliminating deprecated filters.
👎 Example of incorrect code for this check:
.site-footer p {
color: {{ settings.color_name | hex_to_rgba: 0.5 }};
}
👍 Example of correct code for this check:
.site-footer p {
color: {{ settings.color_name | color_modify: 'alpha', 0.5 }};
}
The default configuration for this check is the following:
DeprecatedFilter:
enabled: true
This check has been introduced in Theme Check 0.2.0.