What's the best way to get support?

On the database features of Wix? I have several questions about how to implement the features, but can’t find a good way to get support on it.

Thanks

Hello,

Feel free to type your question here and we’ll do our best to assist you.

Thanks!

On this page: https://www.seanarenas.com/smoothie-maker
How would I allow a user to select different ingredients (say, with check boxes perhaps?) and collect the results of their selections in a box at the top of the page - say they select a protein powder, a yogurt, a beverage, and a fruit to add, and they want to see the total nutrients, how would I allow their selections to add results to a box on the page?

So, how do I go about getting this viewed by someone and getting support?

Hello, I’m a premium user and am trying to find out how to get support, can someone please direct me to the correct place?

Is there anyone available to reply to these requests at all? I pay $ for this service, it’s not a free service. I was expecting that there would be some support associated with the paid service.

Hello,

We apologize for our delayed response.

The easiest way to set it up will be to add Radio Buttons to your page, and calculate the value once the user makes a change. You can see an example below.

The countNutrients() function is executed each time there is a change in either one of the radio button groups.
It grabs & adds each value and displays the results in the result text.

export function RadioGroup2_change() {
	countNutrients();
}

export function RadioGroup1_change() {
	countNutrients();
}

function countNutrients() {
	$w('#resultText').text = String(Number($w('#RadioGroup1').value) + Number($w('#RadioGroup2').value))
}

Thanks for the answer.
Will I be able to display information about the items in the radio buttons, the way I do on tables on the page now? Also, would I be able to use a checklist (checkboxes) instead of radio buttons, as they may select multiple items? Also, what about quantities, such as a half serving or 1.25 servings?

Or is there a way to add checkboxes to the table that is already on the page?

Hi Sean, sorry for the delay,
Radio buttons can only have a label. See here documentation.
If you want to show extra info, I suggest adding a text box and updating it when a radio button is selected.

You can create your own checklist, using checkboxes. This means that every item should have a checkbox that represents the item.

Basically it seems like you’re trying to create a special form.
See here some examples for forms (most of them under ‘User Input’).

Hope this helps,
Liran.

Hi Liran,
I haven’t been able to take this any further.

Let’s say my page is here:
https://www.seanarenas.com/smoothie-maker

There’s tables with ingredients on them.

I’d like to add a Nutritional Info section at the top, that looks like the label you see on the side of food products that you buy, that tell you Calories, Fat, Sugar, etc., and populate it by adding up the particular nutrients from ingredients the user selects below it.
And just below that should be a list of the ingredients that they have suggested, with options to delete an ingredient from the list, or change the quantity of that ingredient (1/2 of a serving, 200 grams, etc.)

I don’t know how to add checkboxes to the tables that are on that page. Nor would I know how to take an action of adding ingredients to the list and the nutritional info section.