![]() |
|
How do I display the AlbumThumb inside the ZenPage news loop? - 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: How do I display the AlbumThumb inside the ZenPage news loop? (/thread-9649.html) |
How do I display the AlbumThumb inside the ZenPage news loop? - JerryE - 16-02-2012 I am writing my own theme that utilizes ZenPage and CombiNews. In the next_news() loop, when the current news item is an album, I wish to display a custom sized album thumbnail. It appears that I want to use printAlbumThumbImage() or perhaps getAlbumThumbImage() in an tag. I verify that the getNewsType() == "album" before I try to display the thumb. Is that the right approach? I've looked at the news loop in Zenpage's news.php, but it packs too much together for my taste (no offense intended). I admit to being new at working with HTML, CSS, and PHP combined and I think that I am probably just having difficulty in getting the syntax and escape sequences correct. I have tried several variations and I get lots of interesting results ranging from nothing, to "not an object" errors to a crashed page. Can someone provide a couple lines of correctly formatted, escaped code that I can plug into the next_news() loop of my index.php to simply display the current news item's album thumb? I realize this is a noob type of question and I appreciate your patience. How do I display the AlbumThumb inside the ZenPage news loop? - JerryE - 16-02-2012 Some of my config Info:
How do I display the AlbumThumb inside the ZenPage news loop? - sbillard - 16-02-2012 Your approach is correct.
How do I display the AlbumThumb inside the ZenPage news loop? - acrylian - 17-02-2012 Before you can use How do I display the AlbumThumb inside the ZenPage news loop? - JerryE - 19-02-2012 Thank you both for your help! sbillard's code didn't work out the box for me but it gave me some more clues. Here's what I end up with: ` How do I display the AlbumThumb inside the ZenPage news loop? - acrylian - 19-02-2012 Yep, that's it. |