WebsiteBaker 2.13.8 is now available!
R.I.P Dietmar (luisehahne) and thank you for all your valuable work for WBhttps://forum.websitebaker.org/index.php/topic,32355.0.html
<video width="400" controls> <source src="video.mp4" type="video/mp4"></video>
config.fullPage = true;
Take a look at this https://forum.WebsiteBaker.org/index.php/topic,31549.msg220822.html#msg220822Line ExtraAllowedContent maybe to put video here. Also check disallowed etc
First you should correct your config.php and use for the WB_URL https:// instead of http:// - That is the reason for most browsers not to load required content.
<script src="https://portmoneto.com/templates/html5up_editorial/assets/js/widget.js" type="text/javascript"></script>
<input type="button" style="cursor:pointer" onclick="doAmortization()" value="Изчисли">
<input type="button" value="Изчисли">
<td><input name="amount" size="10" type="text" value="6000" /></td>
<td><input id="amount" name="amount" size="10" type="text" value="6000" /></td>
I have a question. Why ckeditor delete the html tags? If I enter something as "source" code and save then open and the code is not there anymore, just the text. Just wanted to try to embed video with code:Code: [Select]<video width="400" controls> <source src="video.mp4" type="video/mp4"></video>Saved and open and the screen was empty. modules/ckeditor/wb_config/wb_config.js line 118 is set to:Code: [Select]config.fullPage = true;
If we work through the code correcting mistake by mistake, we will bring it to work.1. You have this in your source code, but the file does not exist:Code: [Select] <script src="https://portmoneto.com/templates/html5up_editorial/assets/js/widget.js" type="text/javascript"></script>2. If we compare the source code of the button, which should start the calculation, there is a difference between the working and not working version:Working code is Code: [Select]<input type="button" style="cursor:pointer" onclick="doAmortization()" value="Изчисли">Not working code is Code: [Select]<input type="button" value="Изчисли">3. Your function doArmotization() requires an element with the id amount, but you do not use this id for the element, so it can't work.Change this Code: [Select]<td><input name="amount" size="10" type="text" value="6000" /></td> to Code: [Select]<td><input id="amount" name="amount" size="10" type="text" value="6000" /></td> and do the same for the id's term and apr.Let me know what happens.
<script id="intergram" type="text/javascript" src="https://www.intergram.xyz/js/widget.js"></script>
Quote from: rumen on July 15, 2022, 08:32:47 AMI have a question. Why ckeditor delete the html tags? If I enter something as "source" code and save then open and the code is not there anymore, just the text. Just wanted to try to embed video with code:Code: [Select]<video width="400" controls> <source src="video.mp4" type="video/mp4"></video>Saved and open and the screen was empty. modules/ckeditor/wb_config/wb_config.js line 118 is set to:Code: [Select]config.fullPage = true;i cannot confirm the issue, my CKEditor Version is 4.19.0 on WB 2.13.2Dietmar
config.fullPage = false;
<script src="https://portmoneto.com/templates/html5up_editorial/assets/js/widget.js" type="text/javascript"></script><!-- TELEGRAM INTEGRATION END HERE-->
config.allowedContent = true;
For the case nobody wrote it:what ist with:Code: [Select]config.allowedContent = true;
Be sure which wb_ckconfig.js is loaded. Check the path in the source code of the backend page.Maybe you use also a wb_ckconfig.js in your template or in the folder /templates
Check the ckeditor readme file. There are several locations where you can have wb_ckconfig.js file, and one location overwrite another oy priority. There could be situation where you have wb_ckconfig.js file that you dont know.