Known incompatibilities with other plugins or themes

TypeNameIssueSolution
PluginEasy Table of ContentsWhen using the shortcode [toc], the CSS code for ASA2 templates does not load. The reason for this has been identified and communicated to the developers.Add this PHP code to your theme's functions.php:

add_filter('ez_toc_strip_shortcodes_tagnames', function ($tags_to_remove) {
return array_merge($tags_to_remove, [
'asa2',
'asa2_img','asa2_collection',
'asa2_textlink',
'asa2_smart_collection',
'asa2_keywords',
]);
});
Timo