WebsiteBaker Community Forum

WebsiteBaker Support (2.11.x) => Modules => Topic started by: dbs on May 30, 2018, 10:30:18 AM

Title: Miniform & JS in template
Post by: dbs on May 30, 2018, 10:30:18 AM
Hello, in miniform 0.9 i had added below the miniform template html code a javascript block.
This worked fine.

After upgrade to miniform 0.12 the code output in frontend has been corrupted.
E.g. it changed from
Code: [Select]
<script>
$(document).ready(function(){
my code ...
to
Code: [Select]
<script>
$(document).ready(function())
     })
my code ...

I removed the js block from the template an created a code2 section below the miniform section. So it works again.
But i want have html and js together in the miniform template. Is it possible?
Title: Re: Miniform & JS in template
Post by: dbs on March 22, 2019, 04:29:33 PM
For users with the same problem, the solution is:
miniform v0.14

or
change view.php line 327
from
Code: [Select]
$template = preg_replace('#\{(.*?)\}#s', '', $template); to
Code: [Select]
$template = preg_replace('#\{(?=\S)(.*?)\}#s', '', $template);
thanks to Ruud  (Y)