Elementor Page Builder Plugin Setup for WordPress

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1212
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    815

Elementor Plugin Setup for WordPress

Elementor is a visual page builder with a drag-and-drop editor. It installs on top of any WordPress theme and allows building layouts without writing code. The free version covers basic needs; Elementor Pro adds theme builder, popups, forms, and WooCommerce widgets.

Installation

The plugin is available in the official WordPress repository. After installation and activation, each page gets an Edit with Elementor button in the top panel or in the page list.

For correct operation, make sure the theme supports full-width template — otherwise sidebars or the theme header will overlap the editor. Themes Hello Elementor, Astra, GeneratePress work without conflicts.

Site Setup via Elementor

In Elementor → Settings:

  • Post Types — which post types have the editor enabled (pages, posts, CPT)
  • Default Colors / Fonts — global palette and typography that can be overridden at the widget level
  • Lightbox — global popup image settings

In Elementor → Global Settings (Pro) — color and font variables for the entire site.

Editor Structure

A page is built from sections → columns → widgets:

Section (layout: full-width / boxed)
  └── Column (width: 50% / 33% / etc.)
        └── Widget (Text / Image / Button / etc.)

Each element has three settings tabs: Content (data), Style (styling), Advanced (margins, CSS class, display conditions, effects).

Global Widgets

A widget can be saved as "global" — it is used on multiple pages, and changing the original updates all copies. Analogous to a component in React or include in PHP.

Right-click widget → Save as Global Widget → give name

Elementor Pro: Theme Builder

The Pro version allows creating templates for theme parts: Header, Footer, Single Post, Archive, 404. Templates are assigned via conditions:

Template: "Blog Header"
Display Conditions: Include → Entire Site
Exception: Exclude → Front Page

This replaces PHP file editing for most layout tasks.

Custom CSS and Hooks

// Add CSS only to pages edited with Elementor
add_action( 'elementor/frontend/after_enqueue_styles', function() {
    wp_enqueue_style( 'my-elementor-additions', get_stylesheet_directory_uri() . '/elementor-custom.css' );
} );

// Add custom widget
add_action( 'elementor/widgets/register', function( $widgets_manager ) {
    require_once __DIR__ . '/widgets/my-widget.php';
    $widgets_manager->register( new \My_Custom_Widget() );
} );

Performance

Elementor generates inline CSS for each page and stores it in wp_posts (type elementor_library) and wp_postmeta. With many pages, database size grows. Recommendations:

  • Enable Improved Asset Loading in Elementor → Experiments (loads CSS only for needed widgets, not all at once)
  • Enable Inline Font Icons to reduce HTTP requests
  • Regularly run Tools → Regenerate CSS after plugin updates

Conflicts

Common issue — conflict with themes that forcibly load their styles over Elementor. Diagnostics: disable all plugins except Elementor, check the problem, enable them back one by one.

jQuery conflicts after WordPress 5.6 (jQuery 3.x): if third-party plugin widgets use obsolete syntax — errors appear in console. Solution — update or replace conflicting plugin.

Timeline

Installation, global styles setup, development of 5–10 pages — 2–3 business days. Theme builder setup (Pro), popups, forms, WooCommerce integration — 3–5 days.