# Selling Plan Cannot Be Applied to Variant

This error typically occurs when the plan picker does not register that the selected variant has changed. This can occur for a variety of reasons, but the fix is usually the same:

In your theme's Javascript, often there is a function that is called on variant change. If not, create one. Within this function, add the following:

```
document.querySelector('[name=id]').dispatchEvent(new Event('change'))
```

This event is listened for within `skio-plan-picker.js` to call the update method that will  apply the correct selling plan to the new variant.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://integrate.skio.com/skio/troubleshooting/selling-plan-cannot-be-applied-to-variant.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
