# Troubleshooting

The following is a list of common issues encountered while using the Marketplace Widgets.

<details>

<summary>My Marketplace Widgets don't reload!</summary>

\>= 3.0.0: Ensure that when you are adding an HTML element, the element has a valid `data-widget` property **before** being appended to the DOM.

< 3.0.0: If you added an HTML element **with a `data-widget` property** after the `window.load` event (dynamically, or client-side rendering), the widget will not be replaced. To replace it, you can manually dispatch a `m-refresh-widget` event through the window object.

</details>

<details>

<summary>My <code>data-</code>prop is not being picked up for my widget!</summary>

Make sure that all widgets injecting a same listing have the same `data-`props appended to it. Namely, if you use one of the the following `data-`props, make sure they appear on **all** widgets that refer to the same `data-id`/`data-network` or `data-id`/`data-address` combination:

* `data-allow-list-file`;
* `data-allow-list-file-no-values`;
* `data-max-per-purchase`;
* `data-merkle-tree-campaign-id`;
* `data-referral-address`;
* `data-bidding-starts-at-override`;
* `data-current-bid-text-override`;
* `data-identity-verifier-message-override`;
* `data-minimum-bid-text-override`;
* `data-winning-bid-text-override`.

</details>

<details>

<summary>RPC Error: execution reverted. Transaction reverted without a reason string.</summary>

![](/files/jVopMiezzfXNLTyiQCGM)

Ensure that your listing ID and chosen network ID are correct. If those are correct, it's possible that your listing `data-widget` is being displayed with the wrong `data-version`.

</details>

<details>

<summary>The bid input shows "Minimum bid price: 0.0 ETH", but someone has already bid.</summary>

The text for the bid input may show 0.0 ETH if:

* you have an Ethereum provider and are not on the same network as the auction;
* you do not have an Ethereum provider.

To fix this, make sure you add a link to an Ethereum node on the same network as the auction to `data-fallback-provider`.

Example (for mainnet auctions):

```
<div
  data-widget="m-layout-complete-listing"
  data-id="LISTING_ID"
  data-network="NETWORK"
  data-fallback-provider"wss://mainnet.infura.io/ws/v3/YOURAPIKEY"
></div>
```

</details>

Still encountering issues? Contact us and we'll gladly help!


---

# 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://docs.manifold.xyz/manifold-for-developers/resources/widgets/marketplace-widgets/troubleshooting.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.
