Will this table wrappers work well with Integrated Index Page?<br /><br />Could I have the Integrated Index Page with the table wrappers and templates and stylesheets you use...<br /><br />I noticed your site is two columns and Integrated Index Page is three... does it matter?
My index page is IIP, and I have it set to two columns in the IIP admin panel <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />If you download my table wrappers mod then you've got everything you need. Just follow the directions <img src="/forum/images/graemlins/smile.gif" alt="" />
[]<br />I am starte to get addicted to threads :-) [/]<br /><br />hehe... it's one addiction that's not a bad thing. <img src="/forum/images/graemlins/wink.gif" alt="" />
#232606 - 01/21/0301:54 PMRe: [6.2] Table Wrappers Mod
[Re: sjsaunders]
dimopoulos
Kahuna
Registered: 08/18/02
Posts: 1271
Loc: Vienna, Austria
Unless your other half is standing right behind you with something heavy and wispering "Either you get away from the computer or else...."<br /><br /><img src="/forum/images/graemlins/ooo.gif" alt="" /><br /><br /><img src="/forum/images/graemlins/laugh.gif" alt="" /> <img src="/forum/images/graemlins/laugh.gif" alt="" /> <img src="/forum/images/graemlins/laugh.gif" alt="" /> <img src="/forum/images/graemlins/laugh.gif" alt="" /> <img src="/forum/images/graemlins/laugh.gif" alt="" /><br /><br />Warm regards<br /><br />Nikos
Thanks but I got it. I called the library but had to add the statement <br /> <br />send them the page <img src="/forum/images/graemlins/wink.gif" alt="" /> Now it makes me want to code Photopost with the tbwrappers but thats another story. Working through the errors trying to use tbopen and tbclose within there is a headache.
LOL! <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Oh no, you're hooked now. It's just a matter of time before you post a table wrappers mod for Photo Post... <img src="/forum/images/graemlins/wink.gif" alt="" /><br /><br />The funny thing is that if you look at what Rick Baker has done with Threads the concept of placing script in a php file, and then html in a template that the php file includes, makes a lot of sense. If you want to add a new feature to the script, no problem. There isn't any html getting in the way when you are manipulating the php file. Want to change the way that the final html page looks to the client, no problem. Just edit the template, and the only time you'll have to mess with php script is if there is some sort of loop that's being used to recycle the html (the post lists being one example). Seperating the php script from the html actualy makes them both easier to edit.
That will be the next step for Photopost in the next upcoming release. Rick was kinda behind the eight ball on that one actually every other forum software even Infopop's UBB was separated into PHP code and Templates. I am glad to see Threads went this way as it is much easier. <br /> <br />I have done MOST of the main Photopost Index. You can see it here. <br /> <br />http://www.reeftalk.com/ubbthreads/gallery/index.php <br /> <br />I am still working around one problem getting the wrapper around the recent images and if I choise to display others. <br /> <br />if ( $Globals['mostrecent'] == "yes" && $Globals['recentdefault'] == "no" ) { <br /> display_gallery("latest"); <br /> $output .= "<br />"; <br />} <br /> <br />I have tried placing the $tbopen $tbclose variables in multiple spots and it needs to be in the form <br /> <br /> $output .= "$tbopen"; as not to cause a parse error etc. <br /> <br />Now the problem being is that the top one shows up on those photo's however the closing one does not no matter what I do so thats why I say mostly have index done.
I must say you are definately getting into things! (in a good way) <img src="/forum/images/graemlins/smile.gif" alt="" /><br /><br />Looking forward to seeing the fruits of your efforts. <img src="/forum/images/graemlins/smile.gif" alt="" />
Thanks <img src="/forum/images/graemlins/smile.gif" alt="" /> I am kinda getting into the template work just a bit. <br /> <br /> Working on Photopost though is a pain the backside. Alot harder than working with just plain templates. <br /> <br /> So far was able to get the one page done playing for an hour but still the one snag mentioned above which is killing me. When I resolve that I will move on with the other main two files showphoto and showgallery. Then the little files will be last. <br /> <br />Any ideas on this one? Below is the original code: <br /> <br />if ( $Globals['mostrecent'] == "yes" && $Globals['recentdefault'] == "no" ) { <br />display_gallery("latest"); <br />$output .= "<br />"; <br />} <br /> <br />Here is the code that will put the tbopen around but the tbclose will not show. <br /> <br />if ( $Globals['mostrecent'] == "yes" && $Globals['recentdefault'] == "no" ) { <br /> $output .= "$tbopen"; <br /> display_gallery("latest"); <br /> $output .= "$tbclose"; <br /> $output .= "<br />"; <br />} <br /> <br />I seem to be stumped as to my the opening table forms but the closing does not. <br />
you mean td not tb i assume and you do not need $ in front of them. Thanks you got me on the right track. I felt like slapping myself. Basic HTML there. I was too busy looking at code that I forgot that unlike templates which already have the <tr><td> variables there than I needed to add them.<br /><br />Here is what the code is<br /><br />if ( $Globals['mostrecent'] == "yes" && $Globals['recentdefault'] == "no" ) { <br />$output .= "$tbopen"; <br />$output .= "<tr class=\"tdheader\">"; <br />$output .= "<td>"; <br />display_gallery("latest"); <br />$output .= "</td>"; <br />$output .= "</tr>"; <br />$output .= "$tbclose"; <br />$output .= "<br />"; <br />}
So Now Dalantech's mod goes even further into another program besides Threads.<br /><br /><img src="/forum/images/graemlins/wink.gif" alt="" /><br /><br />I was able to get all 4 main Photopost files which call the tables to use the wrappers.<br /><br />http://www.reeftalk.com/ubbthreads/gallery/index.php<br />
#232615 - 01/22/0308:44 PMRe: [6.2] Table Wrappers Mod
[Re: sf49rminer]
JoshPet
I type Like navaho
Registered: 11/29/01
Posts: 11330
Loc: Charlotte, NC
Looks good Chuck.<br /><br />You are becoming quite active here as well in developing stuff. Good for you. <img src="/forum/images/graemlins/smile.gif" alt="" />