| 1 |
CCK Slideshow is a simple module which takes several existing pieces of Drupal modules and makes a slideshow from any existing imagefield defined in CCK.
|
| 2 |
|
| 3 |
Dependencies:
|
| 4 |
- CCK
|
| 5 |
- Imagefield
|
| 6 |
- Imagecache
|
| 7 |
|
| 8 |
Written by Nathan Haug: http://quicksketch.org
|
| 9 |
|
| 10 |
This Module Made by Robots: http://www.lullabot.com
|
| 11 |
|
| 12 |
Install
|
| 13 |
-------
|
| 14 |
Install all the dependecies and cck_slideshow by downloading the modules from Drupal.org. Decompress the .gz files and drop the entire uncompressed directories into 'sites/all/modules'. If this directory does not exist you may need to create it.
|
| 15 |
|
| 16 |
Enable the module and its dependencies at http://my-drupal-site.com/admin/build/modules
|
| 17 |
|
| 18 |
Configuration
|
| 19 |
-------------
|
| 20 |
The heart of CCK Slideshow is a content formatter. Formatters provide various ways of displaying field information in CCK. These formatters are used in two places in particular: the CCK display settings and in a view (provided by the views.module).
|
| 21 |
|
| 22 |
1. Create an imagefield:
|
| 23 |
|
| 24 |
- Create a new content type or edit an existing type (admin/content/types).
|
| 25 |
- Add a new field to this content type of type 'image'.
|
| 26 |
- This new imagefield MUST BE MULTIPLE VALUE to work with slideshow.
|
| 27 |
- Save your new imagefield.
|
| 28 |
|
| 29 |
2 (option a). Enable slideshow as CCK display (most common):
|
| 30 |
|
| 31 |
- Go to the 'Display fields' tab of your node type which contains the multiple value imagefield.
|
| 32 |
- Under the 'Teaser' or 'Full' drop down select for your imagefield, choose the formatter 'Slideshow'.
|
| 33 |
|
| 34 |
2 (option b). Enable slideshow as part of a View:
|
| 35 |
|
| 36 |
- Create or edit a view.
|
| 37 |
- Add your imagefield field to your view.
|
| 38 |
- Select the formatter 'Slideshow' from the select list of formatters.
|
| 39 |
|
| 40 |
3. Configure your slideshow display options.
|
| 41 |
|
| 42 |
- Go to admin/settings/cck_slideshow
|
| 43 |
- A list of all imagefields is displayed there, click 'edit slideshow formatter' on the imagefield you are using in your node type.
|
| 44 |
- Choose the imagecache preset you wish to use for the display of your slideshow.
|
| 45 |
- Configure any other settings for your slideshow.
|
| 46 |
|
| 47 |
Support
|
| 48 |
-------
|
| 49 |
If you experience a problem with cck_imagefield or have a problem, file a request or issue on the cck_imagefield queue at http://drupal.org/project/issues/cck_slideshow. DO NOT POST IN THE FORUMS. Posting in the issue queues is a direct line of communication with the module authors.
|