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 "ViewSlideShow" block that I want to display on my front page together with other (mainly text-) blocks. The slideshow cycles through a given number of images, each of which is its own node. Defining the nodes I HAVE to fill in the Title with something "non-blank".
When cycling through the slideshow I do not want the titles of each of the pictures to be displayed. How can I prevent this unwanted display from happening?
Regards and thanks for any hints
H. Stoellinger, Salzburg
I've added a few fields to my taxonomy terms in Drupal 8... but they're a bit more difficult to style with CSS. The fields don't have any classes or IDs. It's just sitting in a plain div.
Where would I modify this to generate classes with the field's name?
I need to pass extra variable to twig, below code loads 'weekView' twig file where I can access node of $week_id but need to access $image_path as well.
$week_id = $dynamic_week_id; //comes from different node
$image_path = $dynamic_image_path;
I am using core Aggregator module to parse some RSS feeds in D8, since I only want to display the items, not import them in any way.
My issue is that some of the fields within each RSS item can't be selected as Fields in Views.
For example, I have an Events feeds that's generated from a third-party. Each feed item contains "<start>" and "<end>" dates/times keys in the RSS. However, neither of these are selectable field options from within Views, so I can't incorporate them into the display.
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.