Config Pages: A Simple Way to Manage Site Settings in Drupal
What is Config Pages?
Config Pages is a Drupal module.
It gives you a special page where you can put settings for your site.
Example: site phone number, logo, or social links.
When to Use It
Better than Blocks: Use Config Pages if you only need data, not a block on a page.
Better than Content Types: Use Config Pages if it is not content, but a setting (like one global value).
Better than settings.php: Editors can change values in the UI, no need for a developer.
How to Use It
Add a Config Page in the admin.
Choose fields (text, image, link).
Editors can fill values (like phone number).
In your theme or code, call the values from this page.
Example Uses
A page with the company address and phone.
A page with links to social media.
A page with colors or images used many times in the site.
Finish
Config Pages makes life easy for devs and editors.
It keeps global settings in one place.
Try it now and make your Drupal site simple!
Download Config Pages here