Hi Shawn,
Thank you for contacting us and I'd be happy to assist.
A shortcode parsing issue like this can be experienced if long content is enclosed inside the conditional shortcode block "wpv-conditional".
This limitation is not something specific to Toolset plugins, but it is related to how shortcodes are parsed by WordPress in general and the server's PHP configuration. A note about this is also included on our documentation and in the errata:
https://toolset.com/documentation/user-guides/conditional-html-output-in-views/
https://toolset.com/errata/shortcodes-in-conditionally-displayed-content-may-not-be-executed-on-the-front-end/
When this is only happening on a specific server, you can follow any of these steps to fix it:
1. You can break up the longer content that is wrapped in a single conditional block, to smaller conditional blocks.
2. If that is not possible or ideal, you can test with "PCRE JIT" disabled via "wp-config.php" file.
In the file "wp-config.php", you can include the following line, just before the line "That's all, stop editing!":
ini_set('pcre.jit', false);
For more information on "PCRE JIT", you can check out the following links or consult your host's support team:
enlace oculto
enlace oculto
3. If for some reason, options 1 & 2 are not possible or don't work, you can follow a simpler workaround of hiding the content inside the top-level conditional block through a special div wrapper, which can show or hide the view's content conditionally:
[wpv-conditional if="('[wpv-post-taxonomy type='speaker-type' format='slug' ]' ne 'component-set' )"]
<div class="hidden">
[/wpv-conditional]
.....Inner content....
[wpv-conditional if="('[wpv-post-taxonomy type='speaker-type' format='slug' ]' ne 'component-set' )"]
</div>
[/wpv-conditional]
As a result, the inner content will be wrapped inside a div with class "hidden", whenever the taxonomy's slug is not equal to "component-set" and you can hide that div through custom CSS code.
.hidden {
display: none !important;
}
I hope this helps and please let me know if you need any further assistance around this.
regards,
Waqar