> ## Documentation Index
> Fetch the complete documentation index at: https://docs.videowise.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Widget re-rendering

> How to manually trigger the rendering of widgets.

### Rendering floating widgets (quizes, founder videos, etc)

This applies to all types of widgets that don't require a HTML container.

```js Floating widgets theme={null}
initVideowise();
```

### Rendering inline widgets (stories, carousels, grids, etc)

This applies to all types of widgets that do require a HTML container.

#### Widgets on a product page

```js Inline widgets on product page theme={null}
initVideowiseBulk({
 	shop: 'your-store.myshopify.com';
  	widgetIds: ['widget-id'];
  	productId: 'shopify product id';
  	device: 'DESKTOP' | 'MOBILE'; //optional
})

```

#### Widgets on a non-product page

```js Inline widgets on non-product page theme={null}
initVideowiseBulk({
 	shop: 'your-store.myshopify.com';
  	widgetIds: ['widget-id'];
  	url: 'https://your-store.myshopify.com/your/url';
  	device: 'DESKTOP' | 'MOBILE'; //optional
})

```
