4images Forum & Community

4images Modifications / Modifikationen => Mods & Plugins (Requests & Discussions) => Topic started by: widgit1981 on June 01, 2003, 12:05:17 AM

Title: Text Clickable
Post by: widgit1981 on June 01, 2003, 12:05:17 AM
Hi all

Is there any way in the categories section not to show the thumbnails just the image name and let them be clickable ?

Thanks

Steve
Title: Text Clickable
Post by: V@no on June 01, 2003, 01:00:02 AM
in categories.php change:
$templates_used = 'categories,category_bit,thumbnail_bit2';
then, create template thumbnail_bit2
customize it the way u like.
Title: Text Clickable
Post by: widgit1981 on June 01, 2003, 10:20:45 AM
Thanks

Whats the code to make a list of thumnails in text format and have then clickable into the details page ?

Thanks

Steve
Title: Text Clickable
Post by: V@no on June 01, 2003, 04:04:06 PM
it's all up to u, your taste ;)
then, find
Code: [Select]
"image_id" => $image_row['image_id'], in /includes/functions.php and add after:
Code: [Select]
"image_details_url" => $site_sess->url(ROOT_PATH."details.php?".URL_IMAGE_ID."=".$image_row['image_id'].((!empty($mode)) ? "&mode=".$mode : "")),
then u can use {image_details_url} as adress for details.php for curent image.
Title: Text Clickable
Post by: widgit1981 on June 02, 2003, 10:01:26 AM
Hi

I tried that and it dosn't seem to work. I now get:

./details.php?image_id=2

where the list should be

thanks

Steve
Title: Text Clickable
Post by: V@no on June 02, 2003, 12:51:07 PM
Quote from: widgit1981
Hi

I tried that and it dosn't seem to work. I now get:

./details.php?image_id=2

where the list should be

thanks

Steve

ofcourse, that will give the address to the image details, and u need make a link ;)
Code: [Select]
<a href="{image_details_url}">blah blah</a>
Title: Text Clickable
Post by: widgit1981 on June 02, 2003, 02:18:42 PM
Thanks V@no

I tried using "<a href="{image_details_url}">{image_name}</a></td>" but its only showing the one result from the list in that category how do the others go in ?

Thanks Steve
Title: Text Clickable
Post by: widgit1981 on June 02, 2003, 08:29:32 PM
*bump*