Hello
I've activated the Danland theme on my site (on a development server on an intranet), however, for the front page, the slideshow remains stuck on the first image loaded, which so far is the default one available in Danland theme, and never changes to the next image.
A brief debug on the head section gave me this

<script src="//scripts/jquery.cycle.all.js?K" type="text/javascript">
Failed to load source from cache for: http://scripts/jquery.cycle.all.js?K
</script>

Anyone can help with this, seems its not finding the jquery plugin, although i see it in the scripts folder

Comments

danpros’s picture

Category: bug » support

Hi,

Its seem your server environment that causing this, try to clear the cache.

Dan

lordrt21’s picture

Cleared the cache but still the same... could it be related to the fact that I copied to the theme folder specific for the website, and not to Drupal's default theme folder?

danpros’s picture

Hi,

Yes its possible, try to placing the theme to Drupal default theme's folder, and let see what happen then

if (drupal_is_front_page()) {
  drupal_add_js(drupal_get_path('theme', 'danland') . '/scripts/jquery.cycle.all.js');
}
lordrt21’s picture

Status: Active » Needs review

Indeed it was the folder causing this trouble, changed folder and slideshow works fine, but I wanted to have the theme specific for the site being developed as am on multi-site hosting. Any way of continuing to get the slideshow to work if I move the theme to a specific folder?