Skip to header Skip to main navigation Skip to main content Skip to footer
Cookies UI
Alaa Haddad Offers Exceptional Drupal Custom Theming and Modules in Austin TX Alaa Haddad - Drupal Expert
Main navigation
  • Professional Profile
  • Drupal Services
    • Drupal Consultant
    • Drupal Architect
    • Drupal Developer
    • Drupal Themer
  • My Drupal Modules & Themes
      • Cloudflare Purge
      • Solo Copy Blocks
      • W3CSS Paragraphs
      • Paragraphs Bundles
      • Acquia Purge Varnish
      • Reference Blocked Users
      • Module Matrix
      • Paragraphs Bundles Import
      • Selectify
      • Solo Utilities
      • Utilikit
      • Solo
      • Amun
      • Anhur
      • Amunet
      • W3CSS Theme
      • 3D Carousel
      • 3D FlipBox
      • Accordion
      • Carousel
      • Hero
      • Lightbox
      • Parallax
      • Reveal
      • Slideshow
      • Tabs
  • Blog
  • Videos
  • Contact
  • Hire Me (opens in new tab)
Search form
User login
CAPTCHA
This question is for testing whether or not you are a human visitor and to prevent automated spam submissions.
  • Reset your password
User account menu
  • Hire Me (opens in new tab)
  • Drupal Services
  • Blog
Site branding
Alaa Haddad - Drupal Expert
Consultant • Architect • Developer • Themer - Expert Drupal Solutions
Article Title Image - Block 1
Custom node edit form layout for different content types in Drupal Solo theme

Customizing Node Edit Forms per Content Type in the Solo Theme

Content Info - Article Info
Alaa Haddad, professional Drupal developer based in Austin, TX   Alaa Haddad
  1:50 PM CDT, Sun May 17, 2026
Share

Breadcrumbs

Breadcrumb

  • Home
  • Drupal Theme
  • Customizing Node Edit Forms per Content Type in the Solo Theme

Main page content

How to Override and Create a Custom Node Edit Form for Each Content Type in the Solo Theme

In the Solo theme, the default node add/edit form is rendered using the following template:

solo/templates/admin/node-edit-form.html.twig

This template is applied to all content types when creating or editing nodes. If you'd like to customize the layout globally for all node types, you can:

  1. Copy the template to your sub-theme: themes/custom/your_subtheme/templates/admin/node-edit-form.html.twig
  2. Modify the HTML structure or layout classes as needed.

Creating a Per-Content-Type Node Edit Template

If you need a custom layout or field arrangement for a specific content type such as Article, follow the steps below.

Step 1: Download the Latest Dev Version of Solo

Make sure you are using the latest development version of the Solo theme, which includes support for node_edit_form theme hook suggestions.

Step 2: Copy the Default Template

Copy the base node edit template:

solo/templates/admin/node-edit-form.html.twig

Rename and place it in your sub-theme using the following format:

node-edit-form--article.html.twig

This template will be used only when editing or creating Article nodes.

Step 3: Print Fields Individually

Inside your custom template, you can render individual fields manually. Here's a basic example:

{{ form.title }}
{{ form.body }}
{{ form|without('title', 'body', 'advanced', 'footer', 'actions') }}

Important: Any field you render explicitly (like form.title or form.body) must be excluded from the form|without() list to prevent duplicate rendering.

Step 4: Discover Available Fields

To see all available fields in the node form, add the following to your Twig template during development:

<pre>{{ dump(form) }}</pre>

This will display the full structure of the form in the HTML source, allowing you to identify field names for manual rendering.

Example Template Structure

{# node-edit-form--article.html.twig #}

{{ attach_library('solo/solo-node-edit-form') }}

<div class="layout-node-form solo-clear">
  <div class="layout-region layout-region-node-main solo-padding">
    {{ form.title }}
    {{ form.body }}
    {{ form|without('title', 'body', 'advanced', 'footer', 'actions') }}
  </div>

  <div class="layout-region layout-region-node-secondary solo-padding">
    {{ form.advanced }}
  </div>

  <div class="layout-region layout-region-node-footer solo-padding">
    {{ form.footer }}
    {{ form.actions }}
  </div>
</div>

Summary

  • To globally customize the node edit form, override node-edit-form.html.twig.
  • To customize per content type, use node-edit-form--[bundle].html.twig.
  • Render specific fields directly and exclude them from the form|without() fallback.
  • Use dump(form) to discover field names and structure during development.

This workflow gives you full control over the structure, grouping, and layout of the node edit form for each content type in your Solo-based sub-theme.

Note:
This article was created in response to Drupal.org issue #3536537, which discussed the need for per-content-type customization of the node edit form in the Solo theme. The solution documented here is now available in the latest development release of the theme.

Drupal Theme
Slide 1 of 26
Optimize Cache Management with Acquia Purge Varnish Module
Acquia Purge Varnish - API V2 (Drupal Module)
Slide 2 of 26
 Amun: Elevating Web Design with Dynamic Functionality for Drupal
Amun - W3CSS Sub-Theme (Drupal Theme)
Slide 3 of 26
Amunet: The Essence of Minimalist Design for Drupal
Amunet - W3CSS Sub-Theme (Drupal Theme)
Slide 4 of 26
Anhur: Redefining Structure and Navigation in Drupal
Anhur - W3CSS Sub-Theme (Drupal Theme)
Slide 5 of 26
Optimizing Drupal Performance with Cloudflare Purge Module
Cloudflare Purge (Drupal Module)
Slide 6 of 26
Introducing Module Matrix: Revolutionizing Module Management in Drupal
Module Matrix (Drupal Module)
Slide 7 of 26
Transform Your Drupal Site with Advanced Custom Paragraph Bundles
Paragraphs Bundles (Drupal Module)
Slide 8 of 26
Discover the PB Import module for Drupal
Paragraphs Bundles Import (Drupal Module)
Slide 9 of 26
Enhancing Drupal Editorial Workflows with Reference Blocked Users Module
Reference Blocked Users (Drupal Module)
Slide 10 of 26
Selectify – Transform Your Forms with Modern, Accessible UI Enhancements
Selectify (Drupal Module)
Slide 11 of 26
Discover the Solo Theme: Revolutionizing Web Design for Drupal
Solo (Drupal Theme)
Slide 12 of 26
Discover Solo Move Blocks, the dedicated Drupal module for migrating blocks from the W3CSS theme to the Solo theme
Solo Copy Blocks (Drupal Module)
Slide 13 of 26
Discover Solo Utilities, a powerful module designed to enhance the Solo theme
Solo Utilities (Drupal Module)
Slide 14 of 26
UtiliKit admin interface showing inline and static rendering mode options, responsive breakpoint configuration, and developer tools settings in Drupal
Utilikit (Drupal Module)
Slide 15 of 26
Transform the way you showcase content on your Drupal site with the innovative Views 3D Carousel module
Views 3D Carousel (Drupal Module)
Slide 16 of 26
In today’s digital landscape, delivering an engaging and interactive user experience is essential for capturing and retaining visitor interest
Views 3D FlipBox (Drupal Module)
Slide 17 of 26
A Powerful and Lightweight Accordion Solution for Drupal Views
Views Accordion (Drupal Module)
Slide 18 of 26
Transform the way you showcase content on your Drupal site with the innovative Views Carousel module
Views Carousel (Drupal Module)
Slide 19 of 26
Hero sections are often the first thing visitors see when they land on a website.
Views Hero (Drupal Module)
Slide 20 of 26
Powerful and Lightweight Lightbox Solution for Drupal Views
Views Lightbox (Drupal Module)
Slide 21 of 26
Elevate Your Drupal Site with Stunning Parallax Effects
Views Parallax (Drupal Module)
Slide 22 of 26
a powerful, flexible, and accessible solution for creating interactive content displays in Drupal
Views Reveal (Drupal Module)
Slide 23 of 26
The Drupal community thrives on innovation and collaboration, constantly evolving to meet the diverse needs of its users
Views Slideshow (Drupal Module)
Slide 24 of 26
enhances user experience by providing smooth and engaging tabbed navigation for content displayed through Drupal Views.
Views Tabs (Drupal Module)
Slide 25 of 26
Unleash Creativity with W3CSS Paragraphs Module for Drupal
W3CSS Paragraphs (Drupal Module)
Slide 26 of 26
Discover the W3CSS Theme: Redefining Speed and Simplicity in Drupal Web Design
W3CSS Theme (Drupal Theme)
1 of 26

Mission

Our mission is to make Drupal more accessible and user-friendly, empowering businesses of all sizes, especially small enterprises with powerful tools that streamline content customization and enhance digital experiences.

Need help with your Drupal project? Hire Me through Flash Web Center, LLC.

Search

Diagram showing a Drupal website, Cloudflare edge cache, browser cache, cache max-age, and purge invalidation flow working together

Drupal, Cloudflare Purge, and Long Cache TTLs: How They Work Together

Collaborative network diagram showing diverse community members, leadership, and organizations working together through strong communication channels and shared decision-making

Strengthening Drupal's governance and collaborative leadership for sustainable success

Collaborative roadmap showing multiple pathways converging toward platform growth with community members, developers, and organizations working together toward shared success milestones

Building Drupal's exciting future through collaborative innovation and community strength

Launching rocket illustration representing Drupal CMS initiative ascending successfully, opening pathways for diverse users to access Drupal's powerful capabilities easily

Drupal CMS - Making Drupal's power accessible to everyone through innovative evolution

Drupal Module - Paragraphs Bundles - Image Overlay

Paragraphs Bundles

Drupal Module - Paragraphs Bundles

Drupal Theme - Solo - Image Overlay

Drupal Theme - Solo

Drupal Theme - Solo

Drupal Work List - Drupal Work

Discover the W3CSS Theme: Redefining Speed and Simplicity in Drupal Web Design

W3CSS Theme (Drupal Theme)

Introducing Module Matrix: Revolutionizing Module Management in Drupal

Module Matrix (Drupal Module)

a powerful, flexible, and accessible solution for creating interactive content displays in Drupal

Views Reveal (Drupal Module)

Transform the way you showcase content on your Drupal site with the innovative Views 3D Carousel module

Views 3D Carousel (Drupal Module)

In today’s digital landscape, delivering an engaging and interactive user experience is essential for capturing and retaining visitor interest

Views 3D FlipBox (Drupal Module)

Drupal Theme - W3CSS Theme - Image Overlay

Drupal Theme - W3CSS Theme

Drupal Theme - W3CSS Theme

Drupal Module - W3CSS Paragraphs - Image Overlay

Drupal Module - W3CSS Paragraphs

Drupal Module - W3CSS Paragraphs

Inspiration

Inspiration is the fuel that powers our creative engine, often coming from our surroundings, experiences, or the works of others. It's that magical moment when something clicks inside your brain, and you suddenly see a path forward that you hadn't noticed before. Inspiration can strike at any time, providing the motivation and energy needed to explore new possibilities and bring your ideas to life.

Unique Ideas

Unique Ideas

Unique ideas are the seeds of innovation, representing original thoughts or concepts that stand out from the usual. They're the sparks that ignite the process of creating something new and different, often leading to unexpected and groundbreaking solutions or products. Whether in art, science, business, or technology, unique ideas challenge the status quo and pave the way for progress.

Brainstorming

Brainstorming

Brainstorming is a creative group activity designed to generate a large number of ideas or solutions to a problem. It's a free-flowing and open-ended discussion where every suggestion is welcomed and considered, no matter how outlandish it may seem. Brainstorming encourages thinking outside the box, fostering an environment where creativity and collaboration lead to innovative solutions.

Planning

Planning

Planning is the blueprint for turning your ideas into reality. It involves setting goals, outlining steps, and organizing resources in a way that makes achieving your objectives possible. Good planning considers potential challenges and opportunities, making it easier to navigate the journey from concept to completion. It's about preparing the groundwork so that your projects can grow and flourish.

Drupal Developer

A Drupal Developer stands as the technical powerhouse behind dynamic websites, wielding expertise in PHP, custom module development, and Drupal's sophisticated API ecosystem. This role transforms business requirements into functional, secure, and scalable web solutions that power everything from small business sites to enterprise platforms serving millions of users. A Drupal Developer's expertise spans the entire development lifecycle—from architecting custom modules and integrating third-party services to optimizing performance and ensuring security compliance. Discover the complete guide to Drupal Developer skills, career paths, and hiring strategies.

Drupal Themer

A Drupal Themer serves as the artistic craftsperson who transforms wireframes and design mockups into pixel-perfect, accessible, and responsive user experiences using Twig templates, CSS, and JavaScript. This specialized role bridges the gap between design vision and technical implementation, ensuring every website not only looks exceptional but performs flawlessly across all devices and meets WCAG accessibility standards. A Drupal Themer's work encompasses the entire front-end ecosystem—from creating custom theme architectures and optimizing Core Web Vitals to implementing complex responsive designs and ensuring seamless integration with Drupal's rendering system. Explore the comprehensive guide to Drupal Themer expertise, theming best practices, and career advancement.

Drupal Architect

A Drupal Architect emerges as the strategic visionary of web construction, armed with encyclopedic knowledge of enterprise architecture patterns, infrastructure design, and Drupal's extensive technological ecosystem. This senior role operates at the highest technical level, making critical decisions that determine whether complex implementations scale successfully or collapse under real-world demands. A Drupal Architect's responsibilities begin long before development starts—during strategic planning phases where the foundation for secure, performant, and maintainable systems is established through careful evaluation of technology stacks, integration strategies, and scalability requirements. Learn about Drupal Architect skills, enterprise architecture strategies, and career progression to principal roles.

Footer menu

  • Contact
  • Professional Resume
  • Resume Summary
  • Technical Skills
  • Privacy Policy
  • Terms & Conditions
  • Search
  • Login
  • Sitemap

Copyright © 2026 Flash Web Center, LLC - All rights reserved

Developed & Designed by Alaa Haddad