I have been submitting an error when sending my Drupal form, the code is designed to insert the values of a select type field in my database. I do not know what I'm failing but I've been trying to find an answer for over a week and I could not.
/*METODO CONSTRUCTOR DEL FORMULARIO - buildForm*/
Public function buildForm(array $form, FormStateInterface $form_state) {
Hi all. I'm trying to develop a sub-theme from Zen in Drupal 8, using Gulp as the task runner. Having some problems I hope someone can shed some light on.
I'm running things inside Docker containers using the 8.6.2-apache offical Drupal image, and the latest official MariaDB image.
I've got the sub-theme created, and it is set and working as my default theme. No issues there.
However, when I try to run gulp I get a TON of errors.
My objective
I have to create a forum with Drupal 8 that allows anonymous visitors to post new forum topics and comments (under topics) and I also have to show the anonymous posters' names which are filled by user input.
I created a field ("field_name") under the "Forum topic" content type (/admin/structure/types/manage/forum/fields) to hold the anonymous poster's name and made filling it a requirement.
I use paragraphs module for content of the nodes full view. My users like to upload several images on a node so I've used two paragraph types for images, one to display images in masonry style, one for slideshows. Unfortunately, if you want to switch the display after uploading the images you have to delete fEx the masonry paragraph and upload all images again on the slideshow paragraph :(