Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Offline
#50 2006-11-05 12:02:34
- lensjournal
- New Member
- Registered: 2005-12-31
- Posts: 7
Re: wet_thumbfilter: Renders article thumbs matching various criteria
I am using wet_thumbfilter to run my photoblog archives. Unfortunately when I publish images at a future date in a post, the thumbnail appears before the image is published. Is there an easy fix for this…
Offline
Re: wet_thumbfilter: Renders article thumbs matching various criteria
v0.6. Quick enough fix, eh?
Offline
#52 2006-11-07 09:11:22
- lensjournal
- New Member
- Registered: 2005-12-31
- Posts: 7
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Wow, i am impressed. Unfortunately I am now getting this error message…
Fatal error: Call to undefined function do_list() in /home/.dajawa/kocom/leonardmetcalf.com/textpattern/lib/txplib_misc.php(459) : eval()’d code on line 3
Offline
Re: wet_thumbfilter: Renders article thumbs matching various criteria
do_list is part of Textpattern 4.0.4, added to the core in July 2006.
You are still on 4.0.3, I suppose? Any chance for upgrades? Frankly, I haven’t the capacity to support my plugin in staled Textpattern versions as this would require me to track the point in time at which Txp got a new core functionality.
Offline
#54 2006-11-08 02:52:18
- lensjournal
- New Member
- Registered: 2005-12-31
- Posts: 7
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Oh… thanks for the pointer, yes still on 4.0.3 will upgrade Textpattern then. Thanks a heap for the change to plug in, and doing it so quickly.
Regards,
Len
Offline
#55 2006-11-08 04:11:24
- lensjournal
- New Member
- Registered: 2005-12-31
- Posts: 7
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Have now upgraded my site, and the time attribute works wonderfully. Now I can have my photoblog publishing photographs while I am away. Thanks. Many many thanks….
Len
Offline
#56 2007-01-03 01:43:14
- sangalo
- Member
- Registered: 2006-12-21
- Posts: 11
Re: wet_thumbfilter: Renders article thumbs matching various criteria
i got the plugin working but how do i align the article thumbnails horizontally ?
// Nevermind i got it working horizontally with a little googling and listmatic help :)
Last edited by sangalo (2007-01-03 02:19:41)
Offline
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Is there any way to use <txp:category1 />
for the category attribute?
e.g. <txp:wet_thumbfilter category="<txp:category1 />" />
I’m hoping to display a list of related article (images) below the current article, based on the category of the current article.
Guessing perhaps not, as <txp:article_custom />
doesn’t allow this either…
Last edited by milkshake (2007-11-16 10:33:24)
Offline
Re: wet_thumbfilter: Renders article thumbs matching various criteria
milkshake, it’s easy. You could use asy_wondertag plugin or just plain php:
<txp:php>
echo wet_thumbfilter(
array(
'category' => $GLOBALS['thisarticle']['category1'],
));
</txp:php>
With asy_wondertag:
<txp:asy_wondertag><txp:wet_thumbfilter category="<txp:category1 />" /></txp:asy_wondertag>
Guessing perhaps not, as <txp:article_custom /> doesn’t allow this either…
So you were completely wrong. Don’t gues, know :)
Cheers!
Offline
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Awesome dude, works wonders. asy_wondertag
had passed me by until today. Thanks for enlightening…
Offline
#60 2008-02-10 21:33:57
- Wayman
- New Member
- Registered: 2008-02-09
- Posts: 2
Re: wet_thumbfilter: Renders article thumbs matching various criteria
Thank you for the plugin, it works great. I had one question though. Is it possible to display the alt text or the image caption below each thumbnails? I’m trying to use a combination of upm_image_caption and asy_wondertag but I’ve hit a wall and it’s not coming out. Perhaps there is a simpler way?
Last edited by Wayman (2008-02-10 21:34:32)
Offline