The slideshow appears only on page created with view but the frame are there in other pages. See attachment. I would like to have the slideshow only on frontpage and full page layout on other pages. Someone can help me?

CommentFileSizeAuthor
new-1.png126.29 KBpermafix
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

boyoboy18’s picture

Even I am facing the same issue. Slideshow is geting displayed correctly only in the home page, but in the other pages, empty slider frame is visible.
What should we do to:
1) To show slideshow in all the pages
2) To remove empty slideshow frame from the other pages

Hey chx,
Have you got any solution for this issue?

permafix’s picture

To remove empty slideshow frame from others pages , you must specify it in the block.

Go to structure/block and configure slideshow. At the bottom, in "Visibility settings"/"pages"/"Show block on specific pages" choose
"Only the listed pages" and write

Good luck.

dwalker51’s picture

Doesn't appear on all pages... only on the front page. Any content that I create just has no image, same as #1

This is with an install of drupal 7.8.

1) Installed druapl 7.8
2( drush dl andromeda

There is no recommended release for project andromeda.
Choose one of the available releases:
[0] : Cancel
[1] : 7.x-1.x-dev - 2011-Sep-07 - Supported, Development

1
Project andromeda (7.x-1.x-dev) downloaded to /home/www/crap/sites/all/themes/andromeda.
3) Enable andromeda theme
4) Get a wysiwyg editor

drush dl wysiwyg
Project wysiwyg (7.x-2.1) downloaded to /home/www/crap/sites/all/modules/wysiwyg. [success]
r.n(189) drush en wysiwyg
The following extensions will be enabled: wysiwyg
Do you really want to continue? (y/n): y
wysiwyg was enabled successfully.

make a directory called /home/www/crap/sites/all/libraries

mkdir libraries

install tinymce 3.4.5

wget http://dl.dropbox.com/u/17093420/tinymce_3.4.5.zip

Enable it for admin

5)Copy images for the banner of size 940x400 to a directory sites/default/files/banner/

6) enable imce

drush dl imce
Project imce (7.x-1.4) downloaded to /home/www/crap/sites/all/modules/imce. [success]
r.n(217) drush en imce
The following extensions will be enabled: imce
Do you really want to continue? (y/n): y
imce was enabled successfully. [ok]
IMCE has been installed.

6) Create block called Banner and added with full html

<div id="slider">
	<a href=link/to/page1><img src="sites/default/files/banner/gff1.png" /></a>
	<a href=link/to/page2><img src="sites/default/files/banner/gff2.png" /></a>
	<a href=link/to/page3><img src="sites/default/files/banner/gff3.png" /></a>
</div>

Nothing much happens on other pages , except for the front main page.

dwalker51’s picture

Category: support » bug

Ok...wierd...i tried at home using vpn into the office and all the pages have the slideshow on them..I will check tomorrow and see what might be the diference.

shadcn’s picture

Check your images path. try use /path/to/image instead of path/to/image

dwalker51’s picture

For some reason it is working, without any changes done by me.

<div id="slider">
<a href="<front>"><img src="sites/default/files/banner/gff1.png" alt="" /> </a> 
<a href="<front>"><img src="sites/default/files/banner/gff2.png" alt="" /> </a> 
<a href="<front>"><img src="sites/default/files/banner/gff3.png" alt="" /></a>
</div>
dRaz’s picture

+1 - blank image on all pages except homepage.

The shadow shows below where the image should be, but no image.....

shadcn’s picture

You should check the path of your images. If your theme is at the root, you can use this : (note the use of / in the very beginning of the image path)

<div id="slider">
    <a href="<front>"><img src="/sites/default/files/banner/gff1.png" alt="" /> </a>
    <a href="<front>"><img src="/sites/default/files/banner/gff2.png" alt="" /> </a>
    <a href="<front>"><img src="/sites/default/files/banner/gff3.png" alt="" /></a>
</div>

If your site is found in a directory inside the root directory, you should include the path of the directory. See below : (note : here Drupal is found in a folder called mysite)

<div id="slider">
    <a href="<front>"><img src="/mysite/sites/default/files/banner/gff1.png" alt="" /> </a>
    <a href="<front>"><img src="/mysite/sites/default/files/banner/gff2.png" alt="" /> </a>
    <a href="<front>"><img src="/mysite/sites/default/files/banner/gff3.png" alt="" /></a>
</div>
dRaz’s picture

Ok, well on XAMPP, the only way I could get this to work was to include the FULL path to the image including http://localhost/......

adpihamat’s picture

By default the folders are checked where the index.php
Mine looks like this and this worked for me;

[img src="../sites/mysite/files/pictures/slideshow1.png" title="Residential Services"]

notice the dots before /sites/mysite...

Hope this helps