Plugin Author
Baden
(@baden03)
how are you creating the collapse elements? can you post a sample of your shortcode?
It looks like the page-builder is creating the triggers but not the targets. Or are the targets being displayed, just not wrapped and collapsed?
Regardless, you can always try a) the roll-your-own method or b) collapse-commander
The typical shortcode entry is:
[expand title=”enter what ever trigger text here”]All the content you will be concealing. Blah, blah, blah.
[/expand]
When I save the collapsomatic short code and exit the WordPress Admin module, I log back in to discover that the code is now overwitten as per below.
<span id=”id4232″ class=”collapseomatic ” tabindex=”0″ title=”Previoius Trigger Text Here”>Previous Trigger Text Here</span>
The concealed content from the previous collapsomatic code is stripped and when viewed in a browser is displayed for anyone to see. It is not concealed.
What can I do to correct this override of shortcode?
Thank you!
Alex
Plugin Author
Baden
(@baden03)
Yes it sounds like the SiteOrigin page builder is rendering out and then saving the shortcode.
Your best bet will be to manually create the collapse elements like so:
Trigger:
<div id="unique_id" class="collapseomatic" title="Trigger Text Here">Trigger Text Here</div>
Target:
<div id="target-unique_id" class="collapseomatic_content">Collapsible Content Here</div>
As for the override of the shortcode, that’s a question to ask the developers of SiteOrigin