I am having the exact same experience – has anyone responded???
I also had this problem when I updated to version 1.12.
I rolled back to version 1.5.1 and that version still works. You can use a plugin like WP Rollback to quickly jump back to version 1.5.1.
Best plan would probably be to find another plugin or solution. It doesn’t look like the future of this plugin is promising.
thanks for the suggestion, i tried to downgrade to any version from 1.5.1 down to 1.0.0 but still it only display the loading spinner 🙁
Im at 1.12 and it happen to me too.. Try this code added on your css
.showloader .portfolio-slideshow, .showloader .slideshow-nav, .showloader .pager {
visibility: visible !important;
}
It seems they were hidden, thats why its not showing, when changed to visible, images start to show up and slides.
Goodluck
@fearracious BIG THANKS!!! The hotfix worked 🙂
I don’t know why but I needed to change it on the css file on the plugin located on
/wp-content/plugins/portfolio-slideshow/src/resources/public.css
Where appears
.showloader .portfolio-slideshow, .showloader .slideshow-nav, .showloader .pager {
visibility: hidden;
}
Change for
.showloader .portfolio-slideshow, .showloader .slideshow-nav, .showloader .pager {
visibility: visible !important;
}