|
#11
|
|||
|
|||
|
Hi Ubbe, I did some filtering on the browsepage and also the captions you want.
http://www.antonputtemans.com/index....=last_uploaded First I hacked the functions_browse.php, but at the end I rewrote everything in the paged_archive.php addon. Anyway, you can check out my functions_browse.php here |
|
#12
|
||||
|
||||
|
Quote:
__________________
Pixelpost Documentation | Visual Pixels | My Addons | Transition Bottlerocket Fund |
|
#13
|
||||
|
||||
|
Well this kinda spoils the presentation of my new layout lol
![]() http://www.ubbedall.dk/blog/index.ph...wse&category=2 If you press the "All" button in the top right corner, you'll see that when it merely shows the browse page there are no problems, but when filtering by some category it makes the previously mentioned error. [Edit] Ahh I found out that this is the output for the thumb: <a href="./index.php?showimage=12"> <img class="thumbnails" title="test2" alt="test2" src="thumbnails/thumb_2008-05-18 16:52:45"/> </a> the timestamp must be the thing breaking it up... |
|
#14
|
||||
|
||||
|
Why do your thumbnails have time-stamps but not your images? The filenames should be the same except for the affixed thumb_.
Also, your file names don't contain a file extension (.jpg) If you can provide me with your browse page code and a snapshot of your thumbnails folder directory contents i'd be able to see what's going on a bit better. You can private message me this stuff if you wish or email using the link in my profile.
__________________
Pixelpost Documentation | Visual Pixels | My Addons | Transition Bottlerocket Fund |
|
#15
|
||||
|
||||
|
Nevermind. I know what's happening.
You can still send me your browse page code and i'll fix it for you so you don't have to mess around too much as multiple queries will have to be fixed. OR You can attempt the fix yourself. It's not too difficult. Wherever you see a mysql query containing $headline_selection add $body_selection after it. so if you see Code:
SELECT 1,t2.id,$headline_selection,image,datetime FROM Code:
SELECT 1,t2.id,$headline_selection,$body_selection,image,datetime FROM Code:
SELECT 1, t1.id,t1.$headline_selection,t1.image, t1.datetime so for this specific query you'll need to make it look like so: Code:
SELECT 1, t1.id,t1.$headline_selection,t1.$body_selection,t1.image, t1.datetime
__________________
Pixelpost Documentation | Visual Pixels | My Addons | Transition Bottlerocket Fund |
|
#16
|
||||
|
||||
|
It works like a charm now :P Thanks a lot!
|
| Post Reply |
| Thread Tools | |
|
|