> For the complete documentation index, see [llms.txt](https://docs.globo.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.globo.io/filter/other-apps.md).

# Other apps

### 🔹1. SA Request a Quote, Hide Price

*App URL:* [*https://apps.shopify.com/request-for-quote*](https://apps.shopify.com/request-for-quote)

**Steps to manage**

1. From your Shopify admin panel, go to the **Theme** folder.
2. In the **Action** dropdown, click **Edit code**.
3. Go to the **globo.filter.product.liquid** file.
4. Add the below snippet to a suitable place on this file – [screenshot](https://prnt.sc/lxjDSKXarICd) for your reference.

   ```javascript
   <scripttag data-id="{{product.id}}" id="rfq-collection-script-{{product.id}}" class="rfq-collection-script">
   var GRFQCollection = GRFQCollection || {};
   GRFQCollection[{{product.id}}] = {{ product | json }};
   GRFQCollection[{{product.id}}]['collection'] = [];
   {% for collection in product.collections %}
    GRFQCollection[{{product.id}}]["collection"].push('{{ collection.id }}');
   {% endfor %} 
   </scripttag>
   ```
5. Click **Save** to update the changes.
6. Go to the **theme.liquid** file.
7. Add the following code below the **{% include ‘rfq\_script’ %}** – [screenshot](https://prnt.sc/129SwXk2hvtm) for your reference.

   ```javascript
   <script>
     window.addEventListener('globoFilterRenderCompleted', function () {
      if(typeof GRFQApp != "undefined"){
        GRFQApp.init(GRFQApp.$);
       }
      });
   </script>
   ```
8. Click **Save** to finish.

### 🔹**2. GLO Color Swatch & Bundles**

*App URL:* [*https://apps.shopify.com/globo-color-swatches*](https://apps.shopify.com/globo-color-swatches)

> Please reach out to us at <contact@globosoftware.net> to integrate 2 apps to work together.

### 🔹**3.** Globo Product Options, Variant

*App URL:* [*https://apps.shopify.com/product-options-pro*](https://apps.shopify.com/product-options-pro)

**Steps**

1. From the left app’s navigation bar, click on **Settings.**
2. Go to **Integration** tab.
3. Search for the **Globo Product Options, Variant** app.
4. Tick on the **I've already installed app** checkbox.
5. Click **Save** to update the changes.
6. Go back to the filter dashboard, click the **Sync Product Data** button.

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

7. Click **Save** to finish.

💬 **Need Help?** Contact us at <contact@globo.io> – we’re happy to assist! 😊


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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://docs.globo.io/filter/other-apps.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.
