Back to No-Code Website Builders

Integrate AI chatbots with Editus

Real-time front-end editing; supports custom HTML integration for enhanced flexibility.


Overview

Editus is a powerful front-end editing tool for WordPress that enables real-time content editing directly on the site.

Unique Features:

  • No-Code Editing: Users can add images, maps, and galleries without any coding skills.
  • Real-Time Updates: Changes are visible immediately, enhancing the editing experience.
  • Aesop Story Engine Integration: Extends functionality with drag-and-drop components.
  • High Compatibility: Works with 99.98% of WordPress themes and supports custom fields and codes.

Add Custom HTML Documentation

Documentation for Adding Custom HTML to Editus

To add custom HTML to Editus, follow these steps:

  1. Create a Custom Component Class: Define a new PHP class for your custom component.

    class editus_CustomHtml {
        public function __construct() {
            add_action('wp_enqueue_scripts', array($this,'scripts'));
        }
    }
    
  2. Enqueue Scripts: Inside the scripts function, enqueue any necessary JavaScript or CSS files.

    function scripts() {
        add_filter('lasso_components', array($this,'add_CustomHtml_content'), 10, 1);
        add_action('lasso_toolbar_components', array($this,'add_CustomHtml_button'), 10);
    }
    
  3. Define Your Custom HTML Content: Create a function that returns the HTML you want to insert.

    function add_CustomHtml_content($array) {
        $custom = array(
            'custom_html' => array(
                'name' => __('Custom HTML','lasso'),
                'content' => '<p>Your custom HTML here</p>',
            )
        );
        return array_merge($array, $custom);
    }
    
  4. Add a Button to the Toolbar: Define a function to add a button for your custom component in the Editus toolbar.

    function add_CustomHtml_button() {
        ?><li data-type="custom_html" title="<?php esc_attr_e( 'Custom HTML', 'lasso' );?>" class="lasso-toolbar--component_custom_html"></li><?php
    }
    
  5. Instantiate Your Class: Finally, instantiate your custom component class to make it active.

    new editus_CustomHtml();
    

For more detailed examples, refer to the Editus documentation.

Integration Guide

For more information on how to add custom HTML to your Editus website, please refer to the Custom HTML Documentation.

How to integrate OpenAssistantGPT with Editus

  1. Create your OpenAssistantGPT chatbot

    Sign in to your OpenAssistantGPT dashboard and create a new chatbot or select an existing one.

  2. Configure your chatbot settings

    Customize your chatbot's appearance, behavior, and knowledge base to match your website's needs.

  3. Get your embed code

    In your OpenAssistantGPT dashboard, go to the "Deployment" section and copy your unique embed code.

  4. Add the embed code to your Editus website

    Log in to your Editus account, open your website editor, and add an HTML or Custom Code element to your site. Paste the OpenAssistantGPT embed code into this element.

  5. Publish your website

    Save your changes and publish your website to make the chatbot live.

Advanced Configuration

For more advanced integrations with Editus, you can customize the following:

  • Chatbot position and appearance on your website
  • Trigger conditions (e.g., time on page, scroll depth)
  • Custom welcome messages based on the page content
  • Integration with your existing forms and contact systems

Builder Details

No-code Solution

✅ No coding required

Custom HTML Support

✅ Supports custom HTML