I have been trying to implement an NPM called Coloris, to provide end-user color customization capability to a Wix website through a web component. From what I can see, the javascript isn’t working/executing. I’ve tried a few solutions for getting javascript to work in innerHTML, but they haven…
Tag: velo
rsa encryption with javascrypt decrypt in python
I’m trying to encrypt using Wix-Velo in javascript using hybrid-crypto-js, and decrypt using python using PKCS1_v1_5 and I’m getting incorrect length error. This is my code in Javascript: In python: Answer The easiest way to explain this is with an example. The following key pair is used for the e…
WIX Velo – Extracting Domain from User Email – Regex Issue
I am trying to retrieve the domain of my site users in order to assign them specific organisation based privileges. If their email address is email@example.com, I want to extract example. If it’s email@ex.ample.com I want to extract ex.ample The regex I have is (?<=@)[^.].[^.](?=.) But I’m stru…
Wix Code / Why doesn’t the select all button select all?
I have select all and remove all buttons for check boxes. You can see the code below. But the error is that he should select all of them (not all the options in the check boxes.) Why doesn’t the check box select all the options? what is the lack Detail https://www.wix.com/velo/forum/community-discussion…
Not able to change value of Global var from inside function
I tried using this solution but it didn’t work for me. In my case I am trying to save a variable using 1 function and call it from another The save_postal_code function logs the correct value, but the get_postal_code function doesn’t. I don’t know what I am doing wrong. Answer You’re r…