HTML/CSS Installation

To make the Parsewise widget work on your website, you need to add a small piece of code to your HTML. This will only take a couple of minutes.

Step 1. Copy the Code

Copy the installation code from the Parsewise admin panel. The code looks something like this:
<script>
  window.ParsewiseConfig = { shopId: "YOUR_SHOP_ID" };
</script>
<script async src="https://releases.parsewise.ru/widget/latest/widget.iife.js"></script>

Step 2. Open Your Website's HTML File

Find the `index.html` file or the main template of your website. You need to locate the `<head>` tag.
<head>
  <title>My Site</title>
  <meta charset="utf-8">
  
  <!-- Parsewise Widget -->
  <script>
    window.ParsewiseConfig = { shopId: "YOUR_SHOP_ID" };
  </script>
  <script async src="https://releases.parsewise.ru/widget/latest/widget.iife.js"></script>
</head>

Step 4. Save and Test

Save the file and open your website in a browser. The widget button should appear at the bottom of the page.

Was this page helpful?