Button Labeling problem

Hi,

you don’t need to wrap the expression into quotes. Wrapping something in quotes makes it a string and it will be assigned to the label as is. If you want the result of expression instead, you should use it without the quotes:

$w("#verifail").label = wixUsers.currentUser.id;

Hope this helps.