I managed to install a Views slideshow in Bartik in Drupal 8. It looked great. 

It still looks great in previews but I can't make it come up on the page. 

In the preview I get the message: 

This display has no path.
 

Does anyone have idea what might be happening? 

This the first thing I've tried to do since installing Drupal. I'm not a coder. Talk to me like a little child. 

Comments

dibyajyoti.mallick’s picture

Hi,

I think something you have missing during configuration

Install this slide show module and follow the steps: https://www.ostraining.com/blog/drupal/drupal-8-slideshows/

Then if you have any issue please let me know

Thanks

ZoneBoy’s picture

Thanks!

I'll try it. 

ZoneBoy’s picture

I used this series of steps before and succeeded in creating a slideshow. The problem remains the same as before, though. 

I keep getting the message, "This display has no path."

VM’s picture

did you generate a block display, a page display, or a master display? Most utilize a block display which does not require a path. You simply place the block in a region as you would any block.

sachinsuryavanshi’s picture

Hello,

View Slideshow module needs JS files.

Simply create one libraries folder in the root directory

inside that create jquery.cycle, jquery.hoverIntent, json2 and then go to these links

    *https://malsup.github.io/jquery.cycle.all.js
    * https://raw.githubusercontent.com/briancherne/jquery-hoverIntent/master/...
    * https://raw.githubusercontent.com/douglascrockford/JSON-js/master/json2.js

Download and paste in their folder and Clear your cache.

It will work.

You can get all the details in the Readme.txt file.

INSTALLATION
------------
  * Install as you would normally install a contributed Drupal module. See the
  <a href='http://drupal.org/documentation/install/modules-themes/modules-8'>
  Drupal 8 instructions</a> if required in the Drupal documentation for further
  information. Note there are two modules included in this project; "Views
  Slideshow" & "Views Slideshow Cycle". In most cases you will need/want to
  enable both of them.

  * You will also need to download some JavaScript libraries. You can do this
  semi-automatically via drush using `drush dl-cycle-lib` or if preferred,
  manually from the sources.

  * Required libraries
    * https://malsup.github.io/jquery.cycle.all.js
    * https://raw.githubusercontent.com/briancherne/jquery-hoverIntent/master/...
    * https://raw.githubusercontent.com/douglascrockford/JSON-js/master/json2.js

  * an example of code you could run in your Drupal root directory to download
    to the right place:

    ```
    mkdir -p libraries/jquery.cycle && cd $_ && wget https://malsup.github.io/jquery.cycle.all.js \
    && mkdir -p ../../libraries/jquery.hoverIntent && cd $_ && wget https://raw.githubusercontent.com/briancherne/jquery-hoverIntent/master/... \
    && mkdir -p ../../libraries/json2 && cd $_ && wget https://raw.githubusercontent.com/douglascrockford/JSON-js/master/json2.js
    ```

Thanks,

Sachin

ZoneBoy’s picture

Thank you.