Ask0 logoAsk0
Integrations

Wix Integration

Integrate Ask0 into your Wix website using custom code embeds. Add AI-powered search to Wix sites without technical expertise.

Add Ask0 to your Wix website.

Setup

  1. Go to SettingsCustom Code
  2. Click + Add Custom Code
  3. Paste the Ask0 script:
<script
  src="https://assets.ask0.ai/scripts/ask.js"
  data-project-id="YOUR_PROJECT_ID"
></script>
  1. Configure:

    • Name: Ask0 Widget
    • Add Code to Pages: All pages (or select specific)
    • Place Code in: Body - end
    • Load code once: Yes
  2. Click Apply

Using Velo (Wix Code)

// In your page code
$w.onReady(function () {
  // Wait for Ask0 to load
  const checkAsk0 = setInterval(() => {
    if (window.ask0) {
      clearInterval(checkAsk0);
      console.log('Ask0 ready');
    }
  }, 100);
});

// Add button click handler
export function supportButton_click(event) {
  if (window.ask0) {
    window.ask0.open();
  }
}

Wix Tips:

  • Custom Code requires a Premium plan
  • Test in preview mode before publishing
  • Use Velo for advanced integrations

Next Steps