Setting Up Views in Drupal
Last Updated: 18 Mar 2025
Introduction
Drupal's Views module is a powerful tool that allows you to create, manage, and display lists of content dynamically without writing custom SQL queries. Whether you need to display a list of articles, create a custom block, or build a filtered content display, Views makes it easy to achieve these goals with a user-friendly interface.
Enabling the Views Module
By default, Drupal 8 and later versions come with the Views module included in the core. However, you need to ensure that both Views and Views UI modules are enabled to create and configure views.
- Navigate to Extend (
/admin/modules
). - Search for "Views" and check both Views and Views UI.
- Click Install to enable the modules if they are not already enabled.
Creating a Basic View
To create a new view, follow these steps:
- Go to Structure > Views (
/admin/structure/views
). - Click Add View.
- Enter a View Name (e.g., "Latest Articles").
- Under View Settings, choose a Content type (e.g., Article).
- Set the Display format (e.g., Unformatted list, Table, Grid, etc.).
- Click Save and edit to configure further settings.
Customizing the View
Once the view is created, you can customize it:
Adding Fields
Instead of displaying full content, you can select specific fields:
- In the Fields section, click Add.
- Select fields such as Title, Image, and Created Date.
- Configure field settings and click Apply.
Using Filters and Sorting
- Under Filter Criteria, add conditions (e.g., Show only Published content).
- Under Sort Criteria, set an ordering rule (e.g., Newest first).
Changing the Display Format
You can choose how the view will be displayed:
- Click on Format and select options like Grid, Table, or Unformatted list.
- Adjust settings like column count for grids.
Using Views with Exposed Filters
Exposed filters allow users to refine results dynamically:
- Click Add filter criteria and select a field (e.g., Content Type or Tags).
- Check Expose this filter to visitors.
- Save and preview the view with filtering enabled.
Theming Views
Views allow customization via Twig templates:
- Find the template suggestions for your view (
views-view--[view-name].html.twig
). - Override the template in your theme’s
templates
folder. - Clear cache and test the new design.
Exporting & Reusing Views
To reuse a view on another Drupal site:
- Go to Configuration > Development > Configuration Synchronization.
- Export the view configuration and import it on another site.
Conclusion
The Views module is an essential feature in Drupal that provides flexibility in displaying content. By using filters, relationships, and theming, you can create highly customized content lists and pages efficiently. Mastering Views will significantly improve your Drupal development experience.
If you need further assistance, have any questions, or require custom code, feel free to reach out through our Contact Us page. We are happy to help!