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 managed to get the barrio bootstrap sass theme installed, as well as installing gulp and NPM. But things are not quite as they seem they should be.
If I have the gulp command entered in a terminal and the browser opens with the preview, if I update and save an .scss file, that browser should refresh to show the changes right?
Created the contact us page and am working on 'send email' functionality in drupal but encountered server issues and need your helpI have added 'Mail System' and 'SMTP Authentication Support' modules to support email functionality.
WAMP and Drupal PHP versions are different. Drupal is using php 5.6 and that's the reason the composer is unable to install PhpMailer Library files.
I have a content type News, with the link field field_news_source. I want to copy Node title to field_news_source Link text. all I got is a custom_module.module file with:
/**
* Implements hook_entity_presave().
*/
function custom_module_entity_presave(Drupal\Core\Entity\EntityInterface $entity) {
switch ($entity->bundle()) {
// Here you modify only your day content type
case 'news':
//???
break;
}
}
I love Drupal and how it's data-driven. But, it is a CMS, which means programming already done. Why then is there such a mystery to redirect http to https? I dug and searched and it seems to be this thing that no one EXACTLY knows how to get to work. If it's that tough, why is either: No Module, or No clear directions in the documentation? I hate WordPress, but they actually do have a way to click and it's done. This is the norm in creating websites now—HTTPS. I'm not a developer, I barely like to insert code anywhere even though I can.