Hello @fartbrat,
Like my colleague already mentioned, the fact that you saw links and other elements inside the excerpt in 1.9.4 was not correct.
In 1.9.4 we made some changes and fixed a different problem and as a result the markup generated by the excerpt was wrong and also had some other issues (that most likely you didn’t noticed). In 1.9.5 we fixed those issues and excerpt started to work like it was working all the time (with no links inside).
If you will revert back to 1.9.3 or any other version older than that you will see that the links won’t show also, and that’s the correct flow for an excerpt.
An excerpt is just simple text and should not contain any other HTML elements like buttons, images and so on.
But, we decided to help you with this and created a special PHP filter, and if you will implement it you will be able to see the links and other HTML elements inside the excerpt.
Simply add this snippet and everything will be like you wish:
add_filter(
'blocksy:excerpt:output',
function ($excerpt) {
global $post;
if (get_post_type($post) === 'product') {
return $post->post_excerpt;
}
return $excerpt;
}
);
Hope this helps.