Givan

Results 364 comments of Givan

Hi Thank you. I changed search to show in a modal to avoid this issue https://github.com/givanz/landing/commit/550cab8df8c5eb092f0291d7d0528987552099d4 https://www.vvveb.com/vvvebjs/demo/landing/search/index.html You can test autocomplete on demo https://demo.vvveb.com/ You can update landing theme in...

Can you please provide more details about the picture issue, if possible a screenshot?

Hi Thank you. There are many possible issues with using VvvebJs as React component, for example templates https://github.com/givanz/VvvebJs/blob/master/editor.html#L871 use `` tag that is not supported by jsx and you need...

Hi Can you please provide more details about this issue? what elements don't show.

The html loads fine inside VvvebJs without javascript errors. Can you provide the error message you are getting?

Thanks for the bug report, it's fixed in the latest.zip. Fixed file plugins/hide-ecommerce/plugin.php you can redownload the zip and update the file on your server.

Thank you. If the fonts are already loaded in the page (from css) you can add them to the fonts drop down with ```js Vvveb.FontsManager.addFontList("theme", "Landing", { "Inter": {}, "Open...

Thank you for the C# example. > I wanted to get the richer structured aspects of the content like imaged and formatting capture/rendered/options etc stored The editor only exports the...

You can use `Vvveb.Builder.frameBody` to access page body and iterate over form elements and serialize fields to json. ```js Vvveb.Builder.frameBody.querySelectorAll("form").forEach(f => { console.log( JSON.stringify(Object.fromEntries(new FormData(f))) ); }); ```

Hi Components can match page elements by tag name, class or attributes. For custom components a convention with `data-component-name` attribute is used for example maps component uses `data-component-maps` https://github.com/givanz/VvvebJs/blob/master/libs/builder/components-widgets.js#L23 *...