@ Jordi
The issue is very likely because the shortcode has errors in it. WordPress has been tightening up its shortcode API. It is less tolerant of errors which make it more secure.
Your shortcode is using fancy quotes. See how they have a slight slight in your screenshot? The WordPress shortcode parser does not support fancy quotes. It only supports straight quotes. The fancy quotes are nearly always the result of copy/pasting from a web page and pasting into the WP Visual editor. The fancy quotes will not be pasted into the WP Text editor.
That said, the shortcode should look like this (example):
`[connections initial_results='true' card_width=640 category_width=650 page_limit=36 pagination_position='after' show_birthday='false' show_note='true']
Notice how the quotes are straight down, no slant. The straight quotes is the keyboard key right next to the enter/return key on the keyboard… the one you would normally use when typing a single quote.
To fix it, edit the page with the shortcode. Click the Text tab. change all the fancy quotes to straight quotes. Additionally, remove any HTML tags that is in and around the shortcode. Those hidden HTML tags are also pasted when copying from a web page. These too will prevent the WP shortcode parser from correctly processing the shortcode.
Hope that helps!
