Is it possible from nested shortcode to call its parent shortcode?
To illustrate my idea take into account this example:
[check-auth]
[has-auth]Hello, dear Username[/has-auth]
[no-auth]Please login here[/no-auth]
[/check-auth]
The idea is to check authorization in parent shortcode check-auth and then to use this information inside nested shortcodes has-auth and no-auth.
I do also understand that if this would be possible it means that we are binding together these shortcodes so that you cannot use has-auth outside check-auth (actually you can write has-auth so that is will handle this case too), and that this is not a good design desicion but still it would allow to write complex shortcodes with logic :)
$contentand then to calldo_shortcode($parsedShortcode). - chestozo