Givan
Givan
You can edit the input component and include a label https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-html.js#L356 ```js Vvveb.Components.extend("_base", "html/textinput", { .... image: "icons/text_input.svg", html: 'Text', properties: [{ ... ``` You can use form action attribute...
You can create a new submit button component by duplicating the existing [button component](https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-bootstrap5.js#L66-L172), remove the link options and use `attributes: {"type":"submit"}` to match only submit buttons. ```js Vvveb.Components.extend("_base", "html/submitbtn",...
I'm unable to reproduce this bug. Can you please check if there is another js error before this one that might invalidate `let deleteUrl' declaration? Can you also check on...
Hi The screenshot is with base sections list. Only base sections are missing or more sections? If you use the github version make sure to use `--recurse-submodules` option when cloning...
Can you please check if a site title is set for the selected site language in `admin > settings > site > description > site title`? https://demo.vvveb.com/admin/index.php?module=settings/site&site_id=1
Do you have any active languages? You must have at least one language enabled and set as default in `settings > localization languages` https://demo.vvveb.com/admin/index.php?module=localization/languages
Hi Thank you. A common upload issue with XAMPP is a small 2MB limit for `upload_max_filesize`. You can check the current value of `Upload max filesize` in admin > tools...
Thanks for pasting the error message. I found some media code that didn't work with windows path separator. I changed the code to work on windows also, please redownload `latest.zip`...
Only line 72 was changed to work for windows path format. I think it's still wrong, can you please change line 72 to ```php $path = preg_replace('@^[\\\/]public[\\\/]media|^[\\\/]media|^[\\\/]public@', '', $path); ```...
Thank you for the bug report, it's fixed in the latest.zip update.