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.Step 3. Insert the Code Before the Closing Tag </head>
<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>