Still on Drupal 7? Security support for Drupal 7 ended on 5 January 2025. Please visit our Drupal 7 End of Life resources page to review all of your options.
I have a multi-site set up with /sites/default and /sites/dev.
In the sites.php I have set /sites/default for my-domain.tld and /sites/dev for dev.my-domain.tld. This is working, I have two website running a different database on different sub domain.
The problem is I want to override the site name with this : $config['system.site']['name'] = 'New site name';
This works when I add the line $config['system.site']['name'] = 'New site name'; in /sites/default/settings.php for the my-domain.tld.
I want to customized default tab in user page, first I'm not using tabs block from core.I'm using view modules to make a tabs with unpublished,published and add new article for current user.It is work, but there is a problem, I want it show up below the user page and the tilte must be current user's name just like drupal's user page. Do someone know the problem?
Hi, I'm new to module development and have a dumb question. I'm building a custom module and I need to call an external web service from the module. I used to use NuSoap as my SOAP client. Can I just include the NuSoap files in my module src folder? Thanks!
I did search but found all soap client modules were for 7.x, could not find one for 8.x. I need to call a web service with SOAP from my custom module. I used to use the library NuSoap as my SOAP client. I'm wondering how to do it in Drupal 8.
I'm using Drupal 8 and I want one page of the site to have collapsible content sections.
I want to keep the content separate from the functionality.
What I would like to do is:
1. make the content pages (nodes), say story 1, story 2 and story 3
2. I want to have a page called "stories" where the first thing the viewer sees is story 1 expanded, story 2 and story 3 are collapsed except a title.
2. selecting story 2 would expand it.