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 1 step – to add script of plugin on your page and to put specific plugin tag where you want the plugin to be rendered.

Set up plugin tag and script in <body>

<!--- 
Place somewhere inside your <body></body> on the page where you want the plugin to be rendered
!-->

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

Implementing Bookeye plugin general tooltips

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

  • If you have concerns about how the script and plugin will affect performance of your site, you may optimize the way you include plugin js script on your side. You may choose an option to put a script in <head> section of your side, or to put to the bottom of </body>. It’s up to you, otherwise it’s lightweight and should not cause any performance issues while loading directly in the page where you want the content of plugin to be rendered.
  • 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 adde and the tag is correctly placed inside your page according to instruction, the plugin will automatically render inside <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.

  • Inserting in Pages or Posts: To place the <bookeye-plugin></bookeye-plugin> tag and plugin script<script src="https://plugin2.bookeye.se/plugin.js" defer>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