Hello,
I am having a similar problem with the Blurp style. I have dug into the view.php file and am not seeing the recommend code to replace.
Change from:
<h2 data-anim="<?php echo $title_anim; ?>"><?php echo $title; ?></h2>
<h1 data-anim="<?php echo $content_anim; ?>"><?php echo $content; ?></h1>
To:
<h2 data-anim="<?php echo $title_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $title); ?></h2>
<h1 data-anim="<?php echo $content_anim; ?>"><?php echo str_replace(array('[leftbracket]', '[rightbracket]'), array('<', '>'), $content); ?></h1>
Separately, I am having trouble switching the text on the read more button. Is there a way to have custom text for each read more button on each slide?
Thank you in advance for your help.
B.Richey