Beta Unlocked: New address item in mobile QAB!

It’s here! This post is the official feedback. You can read more about this beta HERE .

6 Likes

Thank you Wix. I was never sure why you changed the input method but the old method was faster. I’m glad you revamped this function.

[@David Rosenblatt] I’m glad that you find the changes make this feature more intuitive! Thank you for your feedback. :smile_cat:

Great Job.

Hi @brett-haralson and @sheyla ,

Let me first sat that Wix is doing a great job at adding functionality to its products and opening up Wix Code has allowed us to tailor our sites immensely. So thanks guys!

Now requests for QAB:

  1. Is it possible to add functionality that allows us to retrieve the address from a dataset? So our users can navigate to a particular location using google maps, etc.?

  2. Is it then possible to add further functionality that allows our customers to select addresses in our databases that are particular distance from there current location?

I know I’m asking for a lot, but this would really extend the functionality for our customers.

Thanks again, Riaz

Those are super great ideas for customization! Right now I don’t think that’s possible, but as more and more things open up to Wix code I would expect it will become possible. =)

That looks really great!!!

@riazmkhan to make it work, we need to expose items data in the QAB wixCode API. this is in our plans but I can’t say when we will do it.

@riazmkhan I think I have a solution for you. the QAB have onItemClicked event which you can use for your case. You can add custom item with no address in it. Then to write a code that listens to onItemClicked event. When the event is fired you can check by code if the item that was clicked is the custom item. If so, you can query the dataset and fetch the address that you want according your roles and navigate the visitor to that address using navigate-to API

Hope that helps.