Update in v.1.10
- Option to download active picture on slideshow
- Option for slideshow owner to select/change the background color of its slideshow display
- Option for users to add descriptive text per slide show pictures.
If for some reasons the database new column '
slideshow_bgcolor' required by this mod on the "thread" table has not been automatically created during this mod installation/upgrade, please do add that column manually using the ALTER table command.
Code:
ALTER TABLE `TABLE_PREFIXthread` ADD `slideshow_bgcolor` VARCHAR(50) DEFAULT '#fff' NOT NULL
Replace TABLE_PREFIX by your actual table prefix. If you have none, then use the instruction:
ALTER TABLE `thread` ADD `slideshow_bgcolor` VARCHAR(50) DEFAULT '#fff' NOT NULL