# Options are showing on desktop and not mobile

If your Infinite Options fields appear on desktop but do not show on mobile, this is almost always caused by when the app loads on the page, not by how the options are set up.

By default, Shopify apps load after all Shopify elements have been displayed. On some themes, especially on mobile, this can cause Infinite Options to load too late, and the options never appear.

The fix is to add a small code snippet that tells Infinite Options to load earlier.

### How to fix this

Add the faster loading script to your theme.

#### Steps to add the code snippet

1. From your Shopify admin, go to **Online Store > Themes**.
2. Find your active theme and click **Actions > Edit code**.
3. Open **theme.liquid** in the **Layouts** folder.
4. Locate the opening `<head>` tag.
5. Paste the following code **immediately after** the `<head>` tag
6. ```html
    <script src="//d1liekpayvooaz.cloudfront.net/apps/customizery/customizery.js?shop={{shop.permanent_domain}}"></script>
   ```
7. Save your changes.

   Once saved, refresh a product page on mobile and confirm that your options are now visible.

### The Step-by-Step Guide

1\. From your Shopify admin, click Online Store to arrive at the Themes page.

2\. Find the theme you want to edit, click the Actions button, then click Edit code.

<figure><img src="/files/SUpQ2ajPHv6t12RNNAno" alt=""><figcaption></figcaption></figure>

3\. Click on the theme.liquid file that's located in Layouts folder.

<figure><img src="/files/RpkIJOZZEhy7dcePyuGC" alt=""><figcaption></figcaption></figure>

4\. Paste the following code snippet after the \<head> tag.

```html
<script src="//d1liekpayvooaz.cloudfront.net/apps/customizery/customizery.js?shop={{shop.permanent_domain}}"></script>
```

<figure><img src="/files/vGbO9WrlArvonFtvQRlp" alt=""><figcaption></figcaption></figure>

5\. Save your changes.

### Why this works

This script changes when Infinite Options loads on the page.

Instead of waiting for other theme and app scripts to finish loading, Infinite Options is loaded earlier. This prevents mobile-specific loading delays that can hide the option fields.

Most themes do not need this change, but it is especially helpful when:

* Options show on desktop but not mobile
* Options appear inconsistently
* Mobile pages load slower than desktop


---

# 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://shoppad.gitbook.io/infinite-options/troubleshooting/options-are-showing-on-desktop-and-not-mobile.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.
