ZenphotoCMS Forum
Slideshow in zenphoto "site" - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: Plugins (https://forum.zenphoto.org/forum-6.html)
+--- Thread: Slideshow in zenphoto "site" (/thread-11558.html)



Slideshow in zenphoto "site" - pedro - 30-12-2013

Hallo,

a slideshow in a "page" is this possible?
I would like to embed a slideshow (5 random pic) in a normal zenphoto page (cms).

Thanks for help!

Pedro




Slideshow in zenphoto "site" - acrylian - 30-12-2013

Yes, using a content macro as documented:
http://www.zenphoto.org/documentation/plugins/media/_zp-extensions---slideshow.php.html
Depending on the theme used you might need to add extra css.

General info on macros: http://www.zenphoto.org/news/content-macros




Slideshow in zenphoto "site" - pedro - 30-12-2013

I mean in the zenphoto page.
I want to create the page in zenphoto editor. So that you can also integrate slideshow (for example per Album) in static pages.

thanks for help




Slideshow in zenphoto "site" - sbillard - 30-12-2013

If you will enable the macroList plugin you will get a tab that lists all the provided macros. You will see that the slideshow plugin does provide a macaro that can be used in the page editor.




Slideshow in zenphoto "site" - acrylian - 30-12-2013

If you really mean static pages like the standard archive page, just use the slideshow function directly. It is all documented on the link above.

If you mean managed pages from the Zenpage plugin use the macro.




Slideshow in zenphoto "site" - pedro - 30-12-2013

Sorry.

My Code:
[SLIDESHOW Harz]

Error in Page: Invalid slideshow album name!

"Harz" is the Album Name.

What is my mistake?




Slideshow in zenphoto "site" - pedro - 30-12-2013

ok it is works. The album name is lower case.

2 Question:
1: Can I remove the image name in the slidehow?
2: Can I create a slideshow using the latest pictures?

Thanks for help.




Slideshow in zenphoto "site" - acrylian - 30-12-2013

1: Use CSS
2: Create a dynamic album




Slideshow in zenphoto "site" - pedro - 30-12-2013

Thanks!




Slideshow in zenphoto "site" - pedro - 01-01-2014

Hallo,

In which CSS file I can change this? I just want the image without caption (only for slideshow Macro).

Thanks for help!

Pedro




Slideshow in zenphoto "site" - pedro - 01-01-2014

I have the slideshow.css file copied into the theme directory.
What I change in this file (the caption (H4) is no longer displayed)?




Slideshow in zenphoto "site" - acrylian - 01-01-2014

I would add it to the theme's css. Look at the page source for the elements to hide. I don't know offhand.




Slideshow in zenphoto "site" - pedro - 01-01-2014

This is a problem, what is the source for element slideshow (macro slideshow)? Theme: zpArdoise




Slideshow in zenphoto "site" - acrylian - 01-01-2014

Look at the page source via your browser. All modern browser let you choose even a specific element.




Slideshow in zenphoto "site" - fretzl - 01-01-2014

In your slideshow.css add:

`

post #slides h4 {


display: none;
}
`




Slideshow in zenphoto "site" - pedro - 01-01-2014

Thanks!