Bookeye plugin implementation

There are few steps to implement Bookeye plugin on your site.

Prepare data in Bookeye dashboard

You will receive credentials to access in your Bookeye dashboard. In dashboard you may need to do some actions to prepare your data for booking flow.

  • Activate and configure services
  • Create work areas in which you would like to provide services
  • Set up campaigns for marketing (if you need)
  • Fill up your company information

Activate plugin

After you done with data preparation, please send us your site domain where you want to implement Bookeye plugin and we will finilze your activation on our side.

Implement plugin on your site

A plugin is a JavaScript library that should be loaded on your site. There are no specific requirements for the script to work, so it can be used on any site. It doesn’t matter how your site is built or what framework or CMS it uses.

Conceptually, to implement plugin on your page, you may need to do 2 steps – to add script of plugin on your page and to put specific plugin tag where you want the plugin to be rendered.

Set up script link in <head> section

<script src="https://plugin2.bookeye.se/plugin.js" defer></script>

Set up plugin tag in <body>

<bookeye-plugin></bookeye-plugin>

Implementing Bookeye plugin general tooltips

Here are some tips for implementing the plugin on your site:

  • It is not necessary to include the <script src="https://plugin2.bookeye.se/plugin.js" defer></script> tag in the <head> section of every page on your site. You only need to include it on the page where you want the plugin to appear.
  • The <bookeye-plugin></bookeye-plugin> tag should be added to your page as HTML or script code, not as plain text. This means you should place it within the HTML code of your page (or within the <body> tag if you are directly editing raw HTML).
  • If the script is added to the <head> and the tag is correctly placed inside your page, the plugin will automatically render within the <bookeye-plugin></bookeye-plugin> tag, and all the functionality will occur there. The plugin has isolated styles, so there will be no conflicts with your site’s styles.

Implementing Bookeye plugin in WordPress

For WordPress users, implementing the Bookeye plugin on your site can be done easily and efficiently, without the need to edit theme files directly. Here’s a structured approach.

Using WP Plugins for Script Insertion in <head> section

  • Choosing a WP Plugin: Opt for user-friendly plugins such as “Insert Headers and Footers” or “WP Head and Footer Scripts” to manage script insertion into the <head> section of your website.
  • Implementation Steps: After installing and activating the WP plugin, go to its settings page via the WordPress dashboard. There, you will find a dedicated field for pasting scripts intended for the <head> section. Copy and paste <script src="https://plugin2.bookeye.se/plugin.js" defer></script> into this field.

Adding the Plugin Tag

  • Inserting in Pages or Posts: To place the <bookeye-plugin></bookeye-plugin> tag on your site, simply switch to the text (HTML) editor mode within the WordPress editor for the specific page or post where you want the plugin to appear. Paste the tag directly into the content area where it should be displayed.

This structured approach allows you to integrate the Bookeye plugin into your WordPress site with minimal effort.

Rulla till toppen