Roundup: A new Wix Events app & the new client feedback dashboard?!

Wix Events has a new mobile app that makes event door management easier and more efficient for your clients.

This week, we’ve also been on the lookout for our next Online Community Leaders, copied saved assets and Libraries from Editor X to Wix Studio, brought a new ability to gradients in your site’s color picker, and added the new client feedback dashboard to the Studio Workspace.

Catch up on all that’s happened :point_down:


Meet Your Community

We held a 24-hour “mini-challenge” earlier this week where developers were encouraged to share their favorite code snippets! There were some amazing contributions, which you can see here. :star_struck:

But, we want to highlight 2 submissions in this week’s Roundup.

First from @ninodatino. Here’s why they chose this snippet:

Being able to add a glassmorphism effect to your site is something everyone always wants to do. So my code snippet allows you to do that with CSS. Just change the custom class to whatever you want for your element or a global class.

.fakeHeaderGlass {
      background-color: rgba(0,0,0,0);
      backdrop-filter: saturate(120%) blur(10px);
      transform: scale(1);
      border-radius: 0px 0px 0px 0px;
      -webkit-backdrop-filter: saturate(120%) blur(10px);
      margin: 0; 
      padding: 0;
}

See how adding glassmorphism can help add visual separation in your designs.

And from @info84367:

So this is a function I use everywhere for repeaters to create unique IDs when I’m not using databases. Super useful because not all data needs databases and you’re pulling data from APIs or even creating data from other sources… it’s been a lifesaver!

And we all know how angry repeaters get when there aren’t any unique ID’s for data…

function uniqueId() {

    var idLength = 32;
   
    var uniqueId = (Math.floor((Math.random() * 25)) + 10).toString(36) + "-";
    
    uniqueId += (new Date()).getTime().toString(36) + "-";
    
    do {
        uniqueId += (Math.floor((Math.random() * 35))).toString(36);
    } while (uniqueId.length < idLength);

    return (uniqueId);
}

Community Leaders

We’re growing our Community Leaders program and looking for new Online Leaders who are Dev, Design, or Marketing experts :raised_hands:

We’re looking for active community members who are passionate about helping others and providing solutions, guidance, and support. If you’re using the Studio Forum - even better! :wink: Find out more about what it means to be a leader.

And if you can see yourself in this role, you should apply - I’m looking forward to seeing your application :star_struck:


Join the conversation

Resolved Topics
Ever wanted to create a reveal image on hover effect in repeater? Well, @Shantanu_Srivastava found their solution this week, thanks to @russian-dima! Check out the solution.

If you find a solution to your question in the forum, be sure to click the check mark to make it easier for others to find solutions in the future :smile:

Screenshot of the solution button


Wix Studio News

The new client feedback dashboard is now out!

From now on, you can see and manage all comments across all sites from one place. Request new feedback, go over existing comments and copy links to sites easily all from one dashboard.

You can find it under “Client Experience” in your Studio Workspace - let us know in the replies your thoughts :slight_smile:


Saved assets and Libraries from Editor X have been copied to Wix Studio

Your Saved assets and Libraries from Editor X have been copied over so they’re available to use on Wix Studio.

To find them in the Studio Editor, open the Add panel and go to the Assets tab. To share assets, you’ll need to send a new shareable link.

Note: vertical sections are not supported on Wix Studio, so they won’t be copied over.

Read more here.

Saved assets and Libraries from Editor X have been copied to Wix Studio


“Can we use the CSS value of the gradients in the colour picker to use in our global.css file”

Now, when you create a gradient in the colour picker, you can copy its CSS Snippet to use in your site’s CSS.

Credit to @sabugen for this idea.

News & Announcements

View all the latest new releases, betas and updates in the Wix Studio Workspace.


Upcoming Events

View all the latest events on the Studio Events page.


Share something you’ve been working on! :point_down: And have a great weekend :smile:

6 Likes