PDA

View Full Version : WAP / Pocket PC skin: Mobile Alabama



vBMechanic
Sat 26th Jun '04, 11:11am
Looks just like the vB3 archive except that it allows logging in, posting and PMs!


You can download it here (http://www.vbulletin.com/forum/showthread.php?t=108640)


This is the discussion thread :)

Floris
Sat 26th Jun '04, 2:39pm
Great work! Thank you for sharing :)

Sc0rpion
Sat 26th Jun '04, 3:37pm
Great stuff! just when we were asked for it, you deliver the goods.

Thanks for sharing ;)

Remi
Sun 27th Jun '04, 12:46am
Great, thank you very much.

Do you think this is going to work fine with the next VB versions?

Thanks

vBMechanic
Sun 27th Jun '04, 11:35am
You're welcome!

Should work fine with the next version; the templates are very simple.

vBMechanic
Sun 27th Jun '04, 11:07pm
It would be cool if everyone who was using this mobile skin would post their site here-- it could be the start of a list of PDA-compatible vBulletins.

MegaHertz
Sun 27th Jun '04, 11:28pm
Thanks so much this is fantastic work! :)

Installed at Outpost Firewall Forums (http://www.outpostfirewall.com/forum/index.php)

P.S. - This also makes a very nice minimalist skin for dial-up users as well. :)

MegaHertz
Sun 27th Jun '04, 11:53pm
I have been playing with this and the only downside I can see is the lack of any sort of navigation on the homepage.

I would like to add a few key links such as UserCP, New Posts, Search, and Log Out, but can't quite figure out where to put them in the new template.

vBMechanic
Mon 28th Jun '04, 12:15am
It's pretty minimalist at the moment, but the other parts like the search and the rest of the user CP can be updated easily in a new version.

Pugzly
Mon 28th Jun '04, 12:50am
In use @ http://www.efhs84.com/forum

Not sure how many wireless users I'll get, other than myself....

Transverse Styles
Tue 29th Jun '04, 12:35pm
Good work, I was thinking about releasing one, but it's been done.

Just used it on my sidekick. Very nice.

edeab220
Wed 30th Jun '04, 10:07am
It's pretty minimalist at the moment, but the other parts like the search and the rest of the user CP can be updated easily in a new version. I can't wait for that version! :D.

Thanks for releasing this! I'm webmaster at a PDA forum and they've all been asking for this, and it has finally been done :).

http://www.palmforums.org/forums/index.php?styleid=17

How can I put my mobile-logo up there?

jamesfrost
Wed 30th Jun '04, 3:01pm
looks fantastic. Will be installing along with vb3.02 - pretty soon if the top right of this web page is anything to go by!

Transverse Styles
Wed 30th Jun '04, 3:22pm
I can't wait for that version! :D.

Thanks for releasing this! I'm webmaster at a PDA forum and they've all been asking for this, and it has finally been done :).

http://www.palmforums.org/forums/index.php?styleid=17

How can I put my mobile-logo up there?Wow that looks excellent on a PDA.

sross
Fri 2nd Jul '04, 9:58pm
Hi, I installed the style and if I use the url:

http://www.apug.org/forums/?styleid=5

it works, but only on the main forum page. How do I keep the style working on all pages? I don't want users to have to switch to the style at all, I just want them to click a "PDA" link that puts them in the PDA style from then on. Can anyone help? thanks!

sross
Fri 2nd Jul '04, 10:06pm
whoa, also noticed after installing this style that some of my pages went screwy, so I rebooted, went back to my site and they were still screwey, for eample the search page was using the pda style!? So in a panic I deleted the pda style and things went back to normal, any idea? I didn't have the pda style set to default or anything like that either. thanks!

sross
Fri 2nd Jul '04, 10:16pm
sorry for another post, this style has screwed up the style in my photopost integration! ugh! i have no idea how this could have happened, the style was added as a 'new style' stupified, will try to fix it :(

Pugzly
Fri 2nd Jul '04, 10:51pm
I think building some autodetection into this is the best solution. Automatically redirect PDAs to that style...

sross
Fri 2nd Jul '04, 10:55pm
any idea why this happened to my gallery after trying to add the style and remove the style? now my photopost gallery is screwed up :(

vBMechanic
Sat 3rd Jul '04, 12:41am
Hi Sross, I think you have greater problems than just skin installation / removal. Perhaps some corrupt tables? Have you run a check / repair? A vB tech can correct me if I'm wrong, but I don't think installing or uninstalling an XML skin file could do this. Especially considering that this is probably the simplest skin out there; most of the templates are stripped down to almost nothing.

>>I think building some autodetection into this is the best solution. Automatically redirect PDAs to that style...

I posted the code for that somewhere else; let me find it.... I put this in global.php but I believe it can go in the php_include template as well. No, now that I think about it, it might be too late in that template.. I put it in global right below:


else
{
// no style specified - use default
$styleid = $vboptions['styleid'];
}


ADD:



// BROWSER DETECT

$browsers = array(
"Windows CE",
"WebTV",
"AvantGo",
"Blazer",
"PalmOS",
"lynx",
"Go.Web",
"Elaine",
"ProxiNet",
"ChaiFarer",
"Digital Paths",
"UP.Browser",
"Mazingo",
"Mobile",
"T68",
"Syncalot",
"NetFront",
"Danger",
"Symbian",
"Nokia",
"Xiino",
"AU-MIC",
"EPOC",
"BlackBerry",
"Wireless",
"Handheld"
);

if(preg_match('/('.implode('|', $browsers).')/i', $_SERVER['HTTP_USER_AGENT'], $match))
{
$mobile=1;
}
else if (isset($_SERVER['HTTP_UA_OS']))
{
if (strstr($_SERVER['HTTP_UA_OS'],"POCKET PC") !== false)
{
$mobile=1;
}
}
else
{
$mobile=0;
}

if ($mobile==1)
{
//echo "You are on a mobile device!";
$styleid='8';
}


Change the styleid='8' to whatever your PDA style is.

sross
Sat 3rd Jul '04, 9:10am
"Hi Sross, I think you have greater problems than just skin installation / removal. Perhaps some corrupt tables? Have you run a check / repair? A vB tech can correct me if I'm wrong, but I don't think installing or uninstalling an XML skin file could do this. Especially considering that this is probably the simplest skin out there; most of the templates are stripped down to almost nothing."

Hi, I tried a repair and optimize and no luck. I really have no idea what has caused it. I know for certain all I did was:

upload the template as a 'new template'
then went to the forum style id of the new template to look at it.
I then went to my gallery page and it was white
I then went back to the forum and it seemed ok, went to my forum search page and it was stripped down as if it were the mobile design
I then deleted the design, my forum search page went back to normal, I went to the gallery page and now it's all hosed for some reason. http://www.apug.org/gallery

:(

pete_brady
Tue 6th Jul '04, 7:20pm
http://www.thumped.com/bbs/?styleid=26

Should be popular with the 9-5 crowd :)

Erwin
Tue 6th Jul '04, 8:35pm
Well done mate. :) Thanks for sharing.

Silver_2000
Wed 7th Jul '04, 10:34am
Does this work with Blackberrys ? Has anyone tested it ?

The BB browser seems to choke on PHP....
( and on java script )

Doug

Silver_2000
Wed 7th Jul '04, 11:00am
Well I added the Style and uploaded the auto select code - It all seems to work great on the blackberry ... One comment though - The blackberry was redirected to the PDA style automatically BUT the style NAME at the bottom still shows my default Style choice - I guess that is to make sure that when I log in with a PC I still get the right style ??
Froum is at http://www.talonclub.com/forum/index.php?styleid=22

Thanks for the effort - works great -

Doug

Pugzly
Wed 7th Jul '04, 12:40pm
Does this work with Blackberrys ? Has anyone tested it ?

The BB browser seems to choke on PHP....
( and on java script )

Doug
How can a browser choke on server side scripting? It never sees it!

vBMechanic
Wed 7th Jul '04, 1:03pm
:) It was tested on a Blackberry but not sure which model.

drumsy
Thu 8th Jul '04, 7:13pm
Will this skin work well for cell phones as well?

dadymac
Fri 9th Jul '04, 12:52am
while the skin worked nicely, I couldnt load the page on my sony ericsson t610 (with tmobile), i used the global.php thingy too. The archives work well too as a way view a forum with cell phones.

pete_brady
Fri 9th Jul '04, 4:33pm
Does this work with Blackberrys ? Has anyone tested it ?

The BB browser seems to choke on PHP....
( and on java script )

Doug
works just great on my 7230 Blackberry.

it's pretty fantastic, actually.

drumsy
Sun 11th Jul '04, 1:57am
Installed, I'll see how it works.

Also, I couldn't help noticing, were you trying to name this style after the city in Alabama, Mobile? What was your reasoning behind it? :p

vBMechanic
Sun 11th Jul '04, 4:06am
>>were you trying to name this style after the city in Alabama, Mobile?

I think I succeeded!

>>What was your reasoning behind it?

A shout out to all my homies in the south? hehe I dunno, it had the word mobile in it? :)

luroca
Mon 12th Jul '04, 7:15am
Thanks, vBMechanic, the best skin in a long time :)

Floris
Wed 14th Jul '04, 10:50pm
Does this use the latest 3.0.3 templates?

Silver_2000
Wed 14th Jul '04, 10:59pm
anyone know why I recieved 7 emails telling me about floris's post on this thread ? Im subscribed BUT 7 posts ??

Silver_2000
Wed 14th Jul '04, 11:03pm
9 emails

Floris
Wed 14th Jul '04, 11:09pm
I'm THAT special :D

Silver_2000
Wed 14th Jul '04, 11:10pm
I'm THAT special :D

LOL

MegaHertz
Thu 15th Jul '04, 1:45am
Hmm, 7 emails for me as well. ;)

Ted S
Thu 15th Jul '04, 12:11pm
Great looking skin, I had my own PDA style in the past but it simply wasnt anything nearly this effective. Is this working with 3.0.3 by chance?

vBMechanic
Mon 19th Jul '04, 9:06pm
I'm sitting in the Vegas airport typing on my iPAQ, waiting for a plane that's 5 hours late... wishing more sites had this skin installed :) At least it's free wifi.

Does it work w/ 3.03? For sure... the templates are heavily simplified so upgrades won't likely affect it.

Ted S
Tue 20th Jul '04, 11:49am
Works like a charm, I simply forgot to turn of the version check/error when I uploaded it the first time.

SiFor
Tue 20th Jul '04, 5:34pm
Just installed, really nice. Thanks for sharing :D

hotch
Sun 25th Jul '04, 7:42pm
alright... this is sweet. 2 things I'd really like to see in it, though (i can add them myself if someone can offer some direction)--

1)Bold unread threads, like in the normal style
and more importantly- Quick Reply!

Pugzly
Sun 25th Jul '04, 7:53pm
alright... this is sweet. 2 things I'd really like to see in it, though (i can add them myself if someone can offer some direction)--

1)Bold unread threads, like in the normal style
and more importantly- Quick Reply!

Yeah - I'd like to see a NEW POSTS link, and your suggestions, too.

hotch
Sun 25th Jul '04, 8:54pm
i got it, and you can see it at climbdown.net (warning... this is not exactly a PG-13 board) here are the necessary files

spacer.gif goes in your forum root

PDAvbulletin-style.txt needs the extention changed to .xml

Changes made:

Quick reply added
Modified to work with legacy postbit
threadbit modified to: show reply count, bold threads that have "new" posts, added "v" to go to first new post, added "spacer" 4 pixel tall white space containing a horiz. grey line between thread titles, show last poster name

This has made the average title 2 lines instead of one, that's why the spacer was added... overall, it's a longer page, but i think it's worth it for the added information

Pugzly
Mon 26th Jul '04, 12:17am
Very cool!

Thanks for the work!

hotch
Mon 26th Jul '04, 12:35am
no problem-- enjoy. let me know if there are any other changes you want, i'm enjoying working on it... i think i'm going to replace the reply link on every post with a quote link... you can reply from the bottom of the page

josue
Tue 27th Jul '04, 7:17pm
Hi, thanks for the autodetection plugin and the alabama skin.

However, i believe something is still wrong, i get an error on my cell when i try to view the page.

In the autodetection plugin, should i add the code within that else statement, or just after it?

hotch
Tue 27th Jul '04, 7:51pm
it goes just after it

rebelsrock06
Mon 2nd Aug '04, 11:26am
The only problem i have with this style is that when i get on with my cell i dont know what forums have new posts and what threads are new ? It kinda defeats the purpose because if i have to go into every forum and look to see if it has new posts it would take FOREVER. Does anyone have any updates on this skin to make it work to show last post or anything.

Pugzly
Mon 2nd Aug '04, 3:08pm
i got it, and you can see it at climbdown.net (warning... this is not exactly a PG-13 board) here are the necessary files

spacer.gif goes in your forum root

PDAvbulletin-style.txt needs the extention changed to .xml

Changes made:

Quick reply added
Modified to work with legacy postbit
threadbit modified to: show reply count, bold threads that have "new" posts, added "v" to go to first new post, added "spacer" 4 pixel tall white space containing a horiz. grey line between thread titles, show last poster name

This has made the average title 2 lines instead of one, that's why the spacer was added... overall, it's a longer page, but i think it's worth it for the added information

I'll do a screen shot if I need to, but this ends up showing a bunch of the space.gifs above all the content. I end up having to scroll down to see things. This link (http://www.efhs84.com/forum/forumdisplay.php?f=2&styleid=11) should work.

SaN-DeeP
Sun 5th Sep '04, 4:21pm
Just 1 Question: as stated by you
It is formatted specifically to work well on Pocket PC and WAP devices.

How can i make users use this skin, if my default skin is set to something else ?
thnx.

will the url carry styleid=xyz ??

Ted S
Sun 26th Sep '04, 9:41pm
Well, I've had the skin running for a few months now but I just added the autodetech script and wow... now I can surf my board and watch movies! Great template and great hack!

rebelsrock06
Sun 26th Sep '04, 10:37pm
Just 1 Question: as stated by you
It is formatted specifically to work well on Pocket PC and WAP devices.

How can i make users use this skin, if my default skin is set to something else ?
thnx.

will the url carry styleid=xyz ??
yeah it would be


www.yourforumsurlhere.com/forums/?styleid=X (http://www.yourforumsurlhere.com/forums/?styleid=X)

Floris
Mon 27th Sep '04, 7:33am
Users with PDA > archive/index.php/ has a nice little [PDA] button in version 3.0.3 - click it and play around :)

SnitchSeeker
Tue 28th Sep '04, 6:33am
Brilliant job!

Installed and working well on http://www.harrypotterfriends.com/vb3/?styleid=3

If that link above goes bad (we may be renaming stuff as we're just moving in and settling down), go to http://www.snitchseeker.com/ select forums and choose "ss lite" as the style.

The only problem I see is that when you go into a thread, the avatars show up, and so do some of the buttons.

Any way of overriding this?

Also, I would love to see new posts in bold, but I think that's all!

Great job!! :)

Bulent Tekcan
Tue 28th Sep '04, 12:05pm
I cannot find LOGOUT button..... Any idea...

Bulent Tekcan
Wed 29th Sep '04, 2:39pm
Any idea ? How can I put logout button.Because I cannot logout...

Zachery
Wed 29th Sep '04, 2:40pm
add this somewhere in a global template like the header.

<a href="login.php?do=logout&u=$bbuserinfo[userid]"> Logout $bbuserinfo[username] </a>

Pugzly
Thu 30th Sep '04, 6:31pm
Just curious as to if anyone has done some smaller buttons and images for this style.

Show us your PDA skin!

Bulent Tekcan
Fri 1st Oct '04, 3:56am
Thanks Zachery now great ;)

Bloodlust
Tue 5th Oct '04, 8:53pm
This will be great for my members who use Palms. Thanks very much for sharing!

cyclical
Sat 9th Oct '04, 12:00am
anyone know how to get the txt to be smaller on a cell phone? I went into style options and decreased the font sizes from 10-11px to 2px, but it only decreases the size on a computer internet browser.... the font on my cell phone stays the same.

any clues?

SnitchSeeker
Wed 13th Oct '04, 6:33am
Zachery, could you please tell us how to make it so that avatars and siggies don't show up in this skin?

I would also love to see regular html buttons instead of image buttons for the skin. The ideal would be no images at all - except for maybe logo and inside topics (user-posted only).

Once I can eliminate the images (at very least in siggies and avatars) this will be a great skin!

Thanks!

Remi
Sun 17th Oct '04, 10:18am
Hi

This style needs two links to be perfect.

1- A link for quick delete.
2- A links for quick ban

If you are a moderator, these two links are vital for you and including them into this style is very important.

sadly, I don't know how to do it :D

Zivilyn
Tue 26th Oct '04, 1:17am
When I choose to reply via my sprint phone, I get insufficient memory, due to all my post icons displaying for selecting.

Can I get rid of those in this style?

SnitchSeeker
Tue 26th Oct '04, 4:24am
I've been wanting to do the same thing but nobody seems to be supporting this thread so I guess we're SOL. :(

swspeed
Mon 15th Nov '04, 1:15am
http://mobile.swspeed.com

three things I'd like to see, new posts and moderator controls (enable signature check box, delete button and ban button) like others have suggested around here.

thanks for the hard work guys, I appreciate all the work you've put into this so far

hankster
Thu 30th Dec '04, 12:17am
Where can the auto-select code be found?

symbian.info
Sat 8th Jan '05, 3:47pm
Everybody got it working with VBadvanced? (portal)?

pendalar
Sat 8th Jan '05, 4:56pm
Hi guys, just curious if anyone else had a problem with the mobile Alabama skin as listed below... this error ONLY appears on new post or new thread actions, nothing else. It says page completed with errors, then clicking on the error button at bottom on IE :
(for newthread.php?do=newthread)

Line: 204
Char: 1
Error: Object Unexpected
Code: 0

I looked this up and didn't see anything wrong in the source code but then again I'm not a coder.

bkaul
Wed 26th Jan '05, 1:09pm
The one thing this skin was missing for me was a navbar (New Posts, Logout, etc. links) - so I trimmed the default navigation bar table down to a width that will not cause the skin to scroll horizontally (on a PocketPC anyway) - got rid of the Members List and some other links, but kept the most useful ones (at least those I find most useful when on a PocketPC)

Here's the modified navbar template for anyone interested.

<!-- breadcrumb, login, pm info -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td width="100%">
<div class="smallfont" style="background-color:#f9f9f9;border: 1px solid #c0c0c0; padding:4px;">

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
<a href="$vboptions[forumhome].php?$session[sessionurl]">
</if>

$vboptions[bbtitle]

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
</a>
</if>

<if condition="$navbits['breadcrumb']">
$navbits[breadcrumb]
</if>

<if condition="$navbits['lastelement']">
> $navbits[lastelement]
</if>
</div>
</td>
</tr>
<tr>

<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap">
<div class="smallfont" style="margin-top:6px;">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>
<if condition="$show['pmstats']"><a href="private.php?$session[sessionurl]">PMs: $bbuserinfo[pmunread] unread, $bbuserinfo[pmtotal] total</a>.</if>
</div>
</td>

<else />

<td nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php" method="post" style="margin:0px;margin-top:6px;" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont">$vbphrase[username]</td>
<td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont">$vbphrase[password]</td>
<td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="vb_login_md5password" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<br />

<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->

<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
</if>
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php?$session[sessionurl]">$vbphrase[register]</a></td>
</if>
<if condition="$show['searchbuttons']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</if>
</if>
<td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td>
<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
</if>
</tr>
</table>
</div>

i-Symbian.Com
Sat 29th Jan '05, 1:42am
@bkaul

Totally what I want. You read my mind! With the addition of your squeezed down navbar, the mobile version is now more complete and look more professional.

Checkout my website's Mobile Forum :

http://www.i-symbian.com/forum/index.php?styleid=2

Rgds

AshAbed
Sat 29th Jan '05, 11:40am
Ok guys... since vBMechanic isn't around I'll help you out. Post what you need fixed / changed about the skin and I'll get it done - but only replies after my post, I don't want to look through all these pages to fix errors for people that may no longer be checking for updates.

i-Symbian.Com
Sat 29th Jan '05, 2:53pm
@AshAbed,

Take a look at : http://www.mobileread.com/mobile/
username: test
pass: test

(Original thread here : http://www.vbulletin.org/forum/showthread.php?t=62603&page=1&pp=15)

A guy named AlexanderT have actually did his own mobile version for his forum. If you look carefully, he put some little icons to indicate new postings as well as some nifty functions like viewing counts, Sticky etc. But he missed the navbar ;)

Something like that will be superb! :)

IMHO, this existing MobileAlabama style + the Quick Reply improvements + navbar add-on, is already great! But can be greater with some small icons :)

:D:D:D

AshAbed
Sat 29th Jan '05, 3:16pm
@AshAbed,

Take a look at : http://www.mobileread.com/mobile/
username: test
pass: test

(Original thread here : http://www.vbulletin.org/forum/showthread.php?t=62603&page=1&pp=15)

A guy named AlexanderT have actually did his own mobile version for his forum. If you look carefully, he put some little icons to indicate new postings as well as some nifty functions like viewing counts, Sticky etc. But he missed the navbar ;)

Something like that will be superb! :)

IMHO, this existing MobileAlabama style + the Quick Reply improvements + navbar add-on, is already great! But can be greater with some small icons :)

:D:D:D
So you're looking for new post icons? I'll get them made and put up if that's it.

i-Symbian.Com
Sat 29th Jan '05, 3:28pm
So you're looking for new post icons? I'll get them made and put up if that's it.

Not only that, it could be nice if the icons also come with the installation instruction :D:D:D

Thanks for your time :)

AshAbed
Sat 29th Jan '05, 7:00pm
Oh of course I'd include installation instructions, I'm about to download the skin, I can get started once its downloaded and installed.

AshAbed
Sat 29th Jan '05, 7:28pm
New post in forum icons
Click Edit templates
Expand the template group 'Forum Home Templates'
Edit the 'forumhome_forumbit_level2_post' template
Delete the current code and replace it with:

<tr>
<td>
<table width="100%" cellspacing="1" cellpadding="0" border="0">
<tr>
<td>
<div class="smallfont" width="5" height="5" style="background-color:#f9f9f9;border: 1px solid #c0c0c0; padding:2px;margin-left:15px;">$forum[statusicon] </div></td>
<td width="100%">
<div style="margin-left:2px;">
<a href="forumdisplay.php?$session[sessionurl]f=$forum[forumid]">$forum[title]</a>

</div>

</td>
</tr>
</table>
</td>

</tr>
$childforumbits



Getting rid of post icons on newthread page

Click Edit templates
Expand the template group 'New Posting Templates'
Edit the 'newthread' template
search for "$posticons" and remove the code
and your done. No more post icons to slow loading time down.

i-Symbian.Com
Sat 29th Jan '05, 10:21pm
AshAbed,

Great stuff mate! :D :D :D !!! A gazillion thanks. I already "hacked" my mobile forum and it displays some nifty indications for new posts (on the left of each forum sections) now.

However, there are some other things that I would like to see in the forum index display page like the following :

1- Lines separating each forum sections.

2- Horizontal navbar instead of vertical

Please refer to my attachments :-

1- forum-index-current.jpg shows my mobile forum at the moment without lines separating forum sections and with a vertical navbar.

2- forum-index-planned.jpg is my planned forum index page with lines separator as well as a horizontal navbar. :D sorry... my photoshop skill is as bad as my vBulletin skill... :D

Really admire your works and again, a million thanks....

Rgds

AshAbed
Sun 30th Jan '05, 10:31am
Lines Separating each forum category
Click Edit templates
Expand the template group 'Forum Home Templates'
Edit the 'forumhome_forumbit_level1_nopost' template
Delete the current code and replace it with:

<tbody>

<tr>
<td><div style="margin-left:5px;"><HR>
<strong>$forum[title]</strong></div></td>
</tr>
</tbody>
<if condition="$childforumbits">
<tbody>
$childforumbits
</tbody>
</if>

Vertical Navbar
Click Edit templates
Expand the template group 'Navigation / Breadcrumb Templates'
Edit the 'navbar' template
Delete the current code and replace it with:

<!-- breadcrumb, login, pm info -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td width="100%">
<div class="smallfont" style="background-color:#f9f9f9;border: 1px solid #c0c0c0; padding:4px;">

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
<a href="$vboptions[forumhome].php?$session[sessionurl]">
</if>

$vboptions[bbtitle]

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
</a>
</if>

<if condition="$navbits['breadcrumb']">
$navbits[breadcrumb]
</if>

<if condition="$navbits['lastelement']">
> $navbits[lastelement]
</if>
</div>
</td>
</tr>
<tr>

<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap">
<div class="smallfont" style="margin-top:6px;">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>
<if condition="$show['pmstats']"><a href="private.php?$session[sessionurl]">PMs: $bbuserinfo[pmunread] unread, $bbuserinfo[pmtotal] total</a>.</if>
</div>
</td>

<else />

<td nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php" method="post" style="margin:0px;margin-top:6px;" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont">$vbphrase[username]</td>
<td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont">$vbphrase[password]</td>
<td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="vb_login_md5password" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<br />

<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<!--<td align="center" class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>-->
</tr>
<if condition="$show['member']">
<tr>
<td align="center" class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
</tr>
</if>
<if condition="$show['registerbutton']">
<tr>
<td align="center" class="vbmenu_control"><a href="register.php?$session[sessionurl]">$vbphrase[register]</a></td>
</tr>
</if>
<if condition="$show['searchbuttons']">
<tr>
<td align="center" class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>
</tr>
<if condition="$show['member']">
<tr>
<td align="center" class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
</tr>
<else />
<tr>
<td align="center" class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
</tr>
</if>
</if>
<tr>
<td align="center" class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td>
</tr>
<if condition="$bbuserinfo['userid']">
<tr>
<td align="center" class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
</tr>
</if>
</table>
</div>

i-Symbian.Com
Sun 30th Jan '05, 10:53am
AshAbed,

Awesome!!! I get the lines correctly but not the horizontal navbar. I copied your codes and paste it in the navbar template but it is still the same as previous one. Please refer to my attachment.

Again, thanks a million !!! :D:D:D

Regards

AshAbed
Sun 30th Jan '05, 11:09am
Hm... are you sure you hit save? Try it again - it should look like the attachment you provided.

i-Symbian.Com
Sun 30th Jan '05, 11:27am
Hm... are you sure you hit save? Try it again - it should look like the attachment you provided.

Yes, I am very sure :). I tried pasting several times (and saved) and it is still the same. It is still looking like the previous version. The navbar elements are still in vertical. Please refer to my attachment below (header only).

Thanks so much for your time AshAbed. You really are one in a million!!!

:D

Rgds

AshAbed
Sun 30th Jan '05, 11:29am
Oh my mistake - I thought that's what you wanted. I'll get it fixed once I get to my other computer.

i-Symbian.Com
Sun 30th Jan '05, 11:40am
Oh my mistake - I thought that's what you wanted. I'll get it fixed once I get to my other computer.

No problemo mate! :D Take your time :)

Well, I am sorry too if my previous attachments kinda confused you. Please refer to my attachments below to see the navbar that I want.

Rgds

symbian.info
Sun 30th Jan '05, 11:42am
I-Symbian.com can you share your style it to us?? Thanks!!

i-Symbian.Com
Sun 30th Jan '05, 11:49am
I-Symbian.com can you share your style it to us?? Thanks!!

Symbian.Info,

No problemo :D...

But before I can do that, I must make sure everything runs smoothly and without problem on my website now. At the moment, I'm satisfied with the result but I believe this Mobile style will be more developed :) as more and more mobile devices are used nowadays. Especially Symbian powered devices :D

Can you email me at admin@i-symbian.com to discuss about this matter?

Thanks ;-)

Cheers!!!

AshAbed
Sun 30th Jan '05, 11:51am
Horizontal Navbar with separators between links
Click Edit templates
Expand the template group 'Navigation / Breadcrumb Templates'
Edit the 'navbar' template
Delete the current code and replace it with:

<!-- breadcrumb, login, pm info -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td width="100%">
<div class="smallfont" style="background-color:#f9f9f9;border: 1px solid #c0c0c0; padding:4px;">

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
<a href="$vboptions[forumhome].php?$session[sessionurl]">
</if>

$vboptions[bbtitle]

<if condition="$navbits['breadcrumb'] OR $navbits['lastelement']">
</a>
</if>

<if condition="$navbits['breadcrumb']">
$navbits[breadcrumb]
</if>

<if condition="$navbits['lastelement']">
> $navbits[lastelement]
</if>
</div>
</td>
</tr>
<tr>

<if condition="$bbuserinfo['userid']">

<td valign="top" nowrap="nowrap">
<div class="smallfont" style="margin-top:6px;">
<strong><phrase 1="$bbuserinfo[username]">$vbphrase[welcome_x]</phrase></strong>
<if condition="$show['pmstats']"><a href="private.php?$session[sessionurl]">PMs: $bbuserinfo[pmunread] unread, $bbuserinfo[pmtotal] total</a>.</if>
</div>
</td>

<else />

<td nowrap="nowrap" style="padding:0px">

<!-- login form -->
<form action="login.php" method="post" style="margin:0px;margin-top:6px;" onsubmit="md5hash(vb_login_password,vb_login_md5password)">
<script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>
<table cellpadding="0" cellspacing="$stylevar[formspacer]" border="0">
<tr>
<td class="smallfont">$vbphrase[username]</td>
<td><input type="text" class="button" name="vb_login_username" id="navbar_username" size="10" accesskey="u" tabindex="1" value="$vbphrase[username]" onfocus="if (this.value == '$vbphrase[username]') this.value = '';" /></td>
<td class="smallfont" colspan="2" nowrap="nowrap"><label for="cb_cookieuser_navbar"><input type="checkbox" name="cookieuser" value="1" tabindex="3" id="cb_cookieuser_navbar" accesskey="c" checked="checked" />$vbphrase[remember_me]</label></td>
</tr>
<tr>
<td class="smallfont">$vbphrase[password]</td>
<td><input type="password" class="button" name="vb_login_password" size="10" accesskey="p" tabindex="2" /></td>
<td><input type="submit" class="button" value="$vbphrase[log_in]" tabindex="4" title="$vbphrase[enter_username_to_login_or_register]" accesskey="s" /></td>
</tr>
</table>
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="forceredirect" value="1" />
<input type="hidden" name="vb_login_md5password" />
</form>
<!-- / login form -->

</td>

</if>

</tr>
</table>
<br />

<div align="center">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<td style="padding:0px" class="vbmenu_control">|</td>
<!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>-->
<if condition="$show['member']">
<td class="vbmenu_control"><a href="usercp.php?$session[sessionurl]">$vbphrase[user_cp]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
</if>
<if condition="$show['registerbutton']">
<td class="vbmenu_control"><a href="register.php?$session[sessionurl]">$vbphrase[register]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
</if>
<if condition="$show['searchbuttons']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]" accesskey="4">$vbphrase[search]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
<if condition="$show['member']">
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getnew" accesskey="2">$vbphrase[new_posts_nav]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
<else />
<td class="vbmenu_control"><a href="search.php?$session[sessionurl]do=getdaily" accesskey="2">$vbphrase[todays_posts]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
</if>
</if>
<td class="vbmenu_control"><a href="forumdisplay.php?$session[sessionurl]do=markread">$vbphrase[mark_forums_read]</a></td> <td style="padding:0px" class="vbmenu_control">|</td>
<if condition="$bbuserinfo['userid']">
<td class="vbmenu_control"><a href="login.php?$session[sessionurl]do=logout&amp;u=$bbuserinfo[userid]" onclick="return log_out()">$vbphrase[log_out]</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>
</if>

</tr>
</table>
</div>

i-Symbian.Com
Sun 30th Jan '05, 11:57am
AshAbed,

WOW!!! That was fast :D Will install it ASAP and post a screenshot for your reference. Really appreciate that.

Cheers!

symbian.info
Sun 30th Jan '05, 12:14pm
Thanks AshAbed ! Put the Home choice back;-) I am very happy with it..

There is a problem with search_results_postbit. It is not showing good.
Anybody resollve that???

hankster
Sun 30th Jan '05, 2:19pm
Does anyone have an idea of of what the code is to use the WAP style automatically if someone a visits using a moble device?

i-Symbian.Com
Sun 30th Jan '05, 11:24pm
@AshAbed,

Amazing result :D... It is what I want from the very beginning. I dont know what to say.

After thinking and thinking about what to put, I came accross this idea to put a search button in the navbar. The current one already have a search function but my idea is to make a search function that is easy to access and permanently displayed in the navbar. So when a registered user or guest want to search something, they only need to type the keyword and press Search.

Please refer to my attachment below to understand what I meant by an easy search function. Again, sorry, my photoshop skill is still very bad ... :rolleyes:

Rgds

@symbian.info, I dont have problem with Search result. All okay :-)

@hankster, if you read this thread from the very beginning, you would find the auto-redirect script posted by vBMechanic (the original author of this WAP style). Anyway... here is the link to the post explaining how to use auto redirect :

http://www.vbulletin.com/forum/showpost.php?p=697334&postcount=20

Cheers!!! :D

paulz
Mon 31st Jan '05, 12:22am
hey guys, i'm kinda having some trouble getting this to work on my mobile phone. i have the style set up as a child of the default. i wasn't sure where to post the code in global.php as far as whether to post it above or below the //no style specified commented section. when i visit the site without the browser detect it does load my default style, but when i go to the site with the code implemented and the style=6 (my wap style), it just loads a blank page. i'm using a sanyo 5500 with the netfront browser. can anyone help?

i-Symbian.Com
Mon 31st Jan '05, 1:14am
i wasn't sure where to post the code in global.php as far as whether to post it above or below the //no style specified commented section.

First, you must edit the file global.php

Second, find the following code :


else
{
// no style specified - use default
$styleid = $vboptions['styleid'];
}

Put the auto browser detection code just below the } meaning, after the above code.

That's it! :D

Cheers!!!

paulz
Mon 31st Jan '05, 1:53am
First, you must edit the file global.php

Second, find the following code :


else
{
// no style specified - use default
$styleid = $vboptions['styleid'];
}

Put the auto browser detection code just below the } meaning, after the above code.

That's it! :D

Cheers!!!

i did just that. so it must be a phone issue. weird indeed.

AshAbed
Mon 31st Jan '05, 11:03am
Thanks AshAbed ! Put the Home choice back;-) I am very happy with it..Add 'Home' link to horizontal navbar
Click Edit templates
Expand the template group 'Navigation / Breadcrumb Templates'
Edit the 'navbar' template
Search for the code:

<!--<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>-->

Replace that code with:

<td class="vbmenu_control"><a href="$vboptions[forumhome].php?$session[sessionurl]">Home</a></td>
<td style="padding:0px" class="vbmenu_control">|</td>

I haven't tried this myself but I'm pretty sure it'll work.

AshAbed
Mon 31st Jan '05, 11:16am
Search Button in navbar
Click Edit templates
Expand the template group 'Navigation / Breadcrumb Templates'
Edit the 'navbar' template
Add the following code to the very end of the template:


<form action="search.php" method="post" name="vbform">
<input type="hidden" name="s" value="" />
<input type="hidden" name="do" value="process" />
<div><input type="text" class="bginput" name="query" size="35" value="" style="border-top:1px solid;border-bottom:1px solid;border-left: 1px solid;border-right:1px solid;BORDER-COLOR: #000000;width: 110px;height: 15px;" /> <input type="submit" class="button" name="dosearch" value="Search" accesskey="s" /></div>

</form>

i-Symbian.Com
Mon 31st Jan '05, 12:32pm
AshAbed,

All your codes worked very well. Please accept my sincere thanks from me for making this WAP style more complete and more useful. From your posts, I implemented the following hacks for style :-

1- icon for new posts in forum index
2- Getting rid of post icons on newthread page
3- lines separating forum sections in forum index
4- horizontal navbar with separators
5- Home in horizontal navbar
6- Search button in navbar

All work and function very well. Thanks AshAbed. Please refer to my attachment to see how it looks on my Mobile Forum :-)

I will post any suggestions in here when I have new ideas or when there are some things I want to share.

For those who want to see my Mobile Forum alive, visit :

http://www.i-symbian.com/forum/index.php?styleid=2

Thanks a million to AshAbed.

Rgds

Some questions for Ashabed,
1- Can you edit the Shoutbox implemented in my forum (the full version, not the Mobile version) to be compatible with the mobile style?

2- Before you helped us with this style, there is a post with modifications to this style. Original post here (http://www.vbulletin.com/forum/showpost.php?p=709777&postcount=46). But the ends up showing a bunch of the space.gifs above all the content like what happened to this forum (http://www.efhs84.com/forum/forumdisplay.php?f=2&styleid=11). Is there any way to get rid of the space.gif lines?

Thanks again :D

AshAbed
Mon 31st Jan '05, 12:53pm
Some questions for Ashabed,
1- Can you edit the Shoutbox implemented in my forum (the full version, not the Mobile version) to be compatible with the mobile style?

2- Before you helped us with this style, there is a post with modifications to this style. Original post here (http://www.vbulletin.com/forum/showpost.php?p=709777&postcount=46). But the ends up showing a bunch of the space.gifs above all the content like what happened to this forum (http://www.efhs84.com/forum/forumdisplay.php?f=2&styleid=11). Is there any way to get rid of the space.gif lines?
1 - Can you post the code you added to the templates here? I'll take that code and edit it so it works with mobile phones.
2 - Are the space.gif's only showing up on that page or also on the post pages and such? I can't view posts because I'm not registered.

i-Symbian.Com
Mon 31st Jan '05, 1:17pm
1 - Can you post the code you added to the templates here? I'll take that code and edit it so it works with mobile phones.

I installed the BVShoutbox created by tpircsvb (http://www.vbulletin.org/forum/member.php?u=51675) . You can read the original thread at vbulletin.org (http://www.vbulletin.org/forum/showthread.php?t=63562&highlight=bvshoutbox). For your convenience, I attached the package below.

The Shoutbox is displayed in FORUMHOME and the final part of the installation requires the following code to be included in the FORUMHOME template just below the $navbar :



<if condition="($permissions['shoutboxpermissions'] & CANREADSHOUTS)"><!-- shoutbox -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[tablewidth]" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_shoutbox')"><img id="collapseimg_forumhome_shoutbox" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_shoutbox].gif" alt="" border="0" /></a>
<a href="shoutbox.php?$session[sessionurl]">Shoutbox</a>
</td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_shoutbox" style="$vbcollapse[collapseobj_forumhome_shoutbox]">
<tr>
<td class="alt1" width="100%">
<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="120" scrolling="yes" frameborder="0" name="shoutbox" id="shoutbox"></iframe>
</td>
</tr>
</tbody>
</table>
<!-- end shoutbox -->


I tried to included the codes inside the FORUMHOME template in the WAP style but doesnt work :confused::confused::confused:


2 - Are the space.gif's only showing up on that page or also on the post pages and such? I can't view posts because I'm not registered.

OK. This one, I found the solution. I deleted the spacer.gif from the threadbit template :
Click Edit templates
Expand the template group 'Threadbit Templates'
Edit the 'threadbit' template
Search and delete the code:


<img src="spacer.gif">


I deleted the code and now my forum doesnt display that lines anymore. :D Thanks for your time. Really appreciate it!!!

Cheers!!!

AshAbed
Mon 31st Jan '05, 1:40pm
I installed the BVShoutbox created by tpircsvb (http://www.vbulletin.org/forum/member.php?u=51675) . You can read the original thread at vbulletin.org (http://www.vbulletin.org/forum/showthread.php?t=63562&highlight=bvshoutbox). For your convenience, I attached the package below.

The Shoutbox is displayed in FORUMHOME and the final part of the installation requires the following code to be included in the FORUMHOME template just below the $navbar :



<if condition="($permissions['shoutboxpermissions'] & CANREADSHOUTS)"><!-- shoutbox -->
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="$stylevar[tablewidth]" align="center">
<thead>
<tr>
<td class="tcat" colspan="2">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_shoutbox')"><img id="collapseimg_forumhome_shoutbox" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_forumhome_shoutbox].gif" alt="" border="0" /></a>
<a href="shoutbox.php?$session[sessionurl]">Shoutbox</a>
</td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_shoutbox" style="$vbcollapse[collapseobj_forumhome_shoutbox]">
<tr>
<td class="alt1" width="100%">
<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="120" scrolling="yes" frameborder="0" name="shoutbox" id="shoutbox"></iframe>
</td>
</tr>
</tbody>
</table>
<!-- end shoutbox -->


I tried to included the codes inside the FORUMHOME template in the WAP style but doesnt work :confused::confused::confused:

Alright, once I get to my other computer I'll install that hack and get it working with the skin - it might be in a few hours though, I have some other work I need to finish up first.

i-Symbian.Com
Mon 31st Jan '05, 2:23pm
Alright, once I get to my other computer I'll install that hack and get it working with the skin - it might be in a few hours though, I have some other work I need to finish up first.

Take your time mate... take your time... :cool: :cool: :cool:

In the meantime, allow me to request another enhancement for this excellent WAP vB style.

1- In forumdisplay (lists of threads inside a forum section), the topics are displayed nicely but very basic (please refer to attachment current-forum-display.jpg). A new post or topic is marked by bold in the title and a v besides it.

IMHO, the forumdisplay page will be better if we can view some important information like the number of replies, latest reply date, latest poster, number of views etc, complete with links to the latest post (refer to attachment planned-forum-display.jpg).

2- Also in forumdisplay, it would be great too if a separator line can be put to separate topics (Also please refer to attachment planned-forum-display.jpg).

Whoa!!! :D :D :D

I hope the above requests will not be the last from me :)

Thanks and best regards

Torqued
Tue 1st Feb '05, 7:23pm
wow. this thread is alive again! :D

i-Symbian.Com
Tue 1st Feb '05, 11:11pm
Dear all,

Is it possible to implement Threaded Mode display in Postbit in this WAP style? I mean, with linear mode, it takes time to load because every posts will be displayed but with threaded mode, only the most recent one is displayed with a selection of which reply users want to see.

I have sketched down my thoughts in my attachments below. Please have a look.

Rgds

AshAbed
Wed 2nd Feb '05, 8:08am
Is it possible to implement Threaded Mode display in Postbit in this WAP style?
That's a good idea, its more than likely possible. And sorry about taking so long to get the next update in - this week and next I don't have too much free time, two exams a day all week and my extra time is normally used for clients. hopefully you don't mind waiting a bit longer.

i-Symbian.Com
Wed 2nd Feb '05, 8:46am
That's a good idea, its more than likely possible. And sorry about taking so long to get the next update in - this week and next I don't have too much free time, two exams a day all week and my extra time is normally used for clients. hopefully you don't mind waiting a bit longer.

:D:D:D

Ashabed,

You have helped a lot. I can wait for you to get the stuff done because we are talking about some real quality stuff here.

Whatever it is, you have your own priority and that should come first before anything else. Your exams are very important.

I'll wait ...

Cheers!!!

i-Symbian.Com
Sat 5th Feb '05, 9:26am
I have successfully installed the following hacks in the Mobile vB Style:-

1- 2nd navbar on the top of the page (just under the logo)
2- 5 Latest Topics displayed in FORUMHOME
3- Shoutbox :-)

Please refer my attachments below to see them in action. For real experience of the Mobile vB Style customised for my website, please head to :

http://www.i-symbian.com/forum/index.php?styleid=2

Thanks and best rgds

:D:D:D

Winchester
Mon 7th Feb '05, 3:34pm
Superb and thank you for this :)

Members love it :D

( and one of my mobiles is too old I think "wrong mime-type" message :( ).

AshAbed
Mon 7th Feb '05, 4:19pm
"They can view all other sites mentioned in this thread though :confused:"
That means it can't be a problem with the style. Might be a problem with your permission's settings... I can't say though.

And I was just popping in to say it looks like I won't have too much time to help out until this Saturday.

i-Symbian.Com
Tue 8th Feb '05, 5:05am
And I was just popping in to say it looks like I won't have too much time to help out until this Saturday.

AshAbed,

Glad to see you here! :D:D:D

Will be awaiting your return!!!

Cheers!

AshAbed
Sat 12th Feb '05, 3:52pm
Looks like its Saturday, as promised I'm back. Reply with any requests you would like filled and I'll see what I can do.

i-Symbian.Com
Sun 13th Feb '05, 7:03am
Ashabed,

Welcome back mate... :D

Here are the stuff that I think you can help us to achieve :-

1- Thread mode in postbit

Please check this website : http://www.allaboutsymbian.com/forum/?styleid=10

It uses a very cool mobile style. I think many things can be implemented from that style. To view the mobile style, you need to have a username and password. Please check your PM ;-)

Rgds

AshAbed
Sun 13th Feb '05, 10:44am
Make Threaded Mode Possible
Click Edit templates
Expand the template group 'Show Thread Templates'
Step 1
Edit the 'SHOWTHREAD' template
Replace ALL of the current code with:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$thread[title]</title>
$headinclude

</head>
<body onload="$onload">
$header
$navbar

$poll

<a name="poststop" id="poststop"></a>

<!-- controls above postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tr valign="bottom">
<if condition="$show['largereplybutton']">
<td<if condition="$show['pagenav']"> width="33%"</if> class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']">Post Reply<else />Topic Closed</if></a></td>
<else />
<td class="smallfont">&nbsp;</td>
</if>
<!-- thread display mode menu -->
<td<if condition="$show['pagenav']"> width="34%"</if> align="<if condition="$show['pagenav']">center<else />right</if>" class="smallfont">
<if condition="$show['linearmode']">$vbphrase[linear_mode] |
<else /><a href="showthread.php?$session[sessionurl]p=$FIRSTPOSTID&amp;mode=linear$highlightwords#post$FIR STPOSTID">$vbphrase[switch_to_linear_mode]</a> |
</if>
<if condition="$show['threadedmode']">
&nbsp;$vbphrase[threaded_mode]
<else />
&nbsp;<a href="showthread.php?$session[sessionurl]p=$FIRSTPOSTID&amp;mode=threaded$highlightwords#post$F IRSTPOSTID">$vbphrase[switch_to_threaded_mode]</a>
</if>
</td>
<!-- / thread display mode menu -->
<if condition="$show['pagenav']"><td align="right" width="33%">$pagenav</td></if>
</tr>
</table>
<!-- / controls above postbits -->

<!-- end content table -->
$spacer_close
<!-- / end content table -->
<if condition="$show['threadedmode']">
<!-- thread posts list -->
$threadlist
<!-- /thread posts list -->
</if>
<div id="posts">$postbits</div>

<!-- start content table -->
$spacer_open
<!-- / start content table -->

<!-- controls below postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr valign="top">
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><if condition="$show['closethread']">Post Reply<else />Topic Closed</if></a></td>
<else />
<td class="smallfont">&nbsp;</td>
</if>
<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>
</tr>
</table>
<!-- / controls below postbits -->

<br />

<div class="smallfont" align="center">
<strong>&laquo;</strong>
<a href="showthread.php?$session[sessionurl]t=$threadid&amp;goto=nextoldest">$vbphrase[prev_thread]</a>
|
<a href="showthread.php?$session[sessionurl]t=$threadid&amp;goto=nextnewest">$vbphrase[next_thread]</a>
<strong>&raquo;</strong>
</div>

$footer
</body>
</html>

Step 2
Edit the 'showthread_list' template
Replace ALL of the current code with:

<script type="text/javascript">
<!--
var imgdir_statusicon = "$stylevar[imgdir_statusicon]";
var imgdir_misc = "$stylevar[imgdir_misc]";
var cleargifurl = "$vboptions[cleargifurl]";
var guestphrase = "$vbphrase[guest]";
var morephrase = "$vbphrase[more_replies_below]";
var highlightwords = "$highlightwords";
//-->
</script>
<script type="text/javascript" src="clientscript/vbulletin_thrdpostlist.js"></script>
<script type="text/javascript">
<!--
// initialize some variables
var curpostid = $curpostid;
var quickreply = <if condition="$SHOWQUICKREPLY">true<else />false</if>;

// cached posts (no page reload required to view)
$jspostbits
// next/previous post info
$navjs
// cached usernames
pu[0] = guestphrase;
$userjs
// -->
</script>
<style type="text/css">
<!--
#links div { white-space: nowrap; }
#links img { vertical-align: middle; }
#links .x { behavior: url(clientscript/branchcollapse.htc); }
#links a.ieB { behavior: url(clientscript/postlink.htc); }
-->
</style>

<div style="background-color:#ffffff;padding:1px;border: 1px solid #c0c0c0;margin-top:8px;margin-bottom:8px;">
<table cellpadding="1" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt2">
<div class="smallfont" style="text-align:$stylevar[center];">
<!-- start post links -->
<script type="text/javascript">
<!--
$links
//-->
</script>
<!-- end post links -->
</div>
</td>
</tr>
<if condition="$threadedmode==1">
<tr>
<td class="alt2" align="center"><div class="smallfont">
<a href="javascript:showPrevNextPost(0)">$vbphrase[prev]</a>
&nbsp;|&nbsp;
<a href="javascript:showPrevNextPost(1)">$vbphrase[next]</a>
</div></td>
</tr>
</if>
</table>
</div>



Edit: Changed a few things around, it looks alot better this way - if you implemented this modification before I put this message please switch the code to the new one.

i-Symbian.Com
Mon 14th Feb '05, 9:04am
AshAbed,

Awesome work !!!

However, I realised there are some core things that need to be added :-

1- The ability to Edit post from this mobile style. At the moment, there is no way to Edit posts with this :D

2- Is it possible to put the lists of posts in threaded mode below the latest post? At the moment, the lists are displayed at the top. If it is displayed at the bottom, I think it would be better because we dont have to scroll down to read the latest post.

That's all for now :-)

Cheers!!!

Rgds

AshAbed
Mon 14th Feb '05, 10:45pm
1- The ability to Edit post from this mobile style. At the moment, there is no way to Edit posts with this :D

2- Is it possible to put the lists of posts in threaded mode below the latest post? At the moment, the lists are displayed at the top. If it is displayed at the bottom, I think it would be better because we dont have to scroll down to read the latest post.
1- Sure, that shouldn't be hard.

2- I'm not sure exactly what you mean, could you provide a screenshot of what you'd like me to do?

i-Symbian.Com
Mon 14th Feb '05, 11:21pm
1- Sure, that shouldn't be hard.

2- I'm not sure exactly what you mean, could you provide a screenshot of what you'd like me to do?

Thanks. Please refer to my attachments.

ThreadedMode1 is the current threaded mode where the latest post is displayed at the bottom of the page. This needs scrolling especially if the topic contains many posts.

ThreadedModebottom is my suggestion. In here, the latest post is located on top of the list. Making it easy to see the latest post and read it because no scrolling is needed :-)

Another thing, I noticed the Quick Reply function is missing, can you please add that? :D :D :D

Cheers!!!

mclark2112
Tue 15th Feb '05, 3:34pm
I'll do a screen shot if I need to, but this ends up showing a bunch of the space.gifs above all the content. I end up having to scroll down to see things. This link (http://www.efhs84.com/forum/forumdisplay.php?f=2&styleid=11) should work.

I fixed it!!! I can add my first vB mod :) :)

Open: Thread Bit Templates> Threadbit

Replace with:


<tr>
<td><img src="spacer.gif">
<div style="padding-left: 5px;">
<if condition="$show['gotonewpost']"><a href="showthread.php?$session[sessionurl]goto=newpost&amp;t=$thread[threadid]">*</a></if> <a href="showthread.php?t=$thread[threadid]"><if condition="$show['gotonewpost']"><strong>$thread[threadtitle]</strong><else />$thread[threadtitle]</if></a> - <span class="smallfont">$thread[replycount] - last post <phrase 1="member.php?find=lastposter&amp;t=$thread[threadid]" 2="$thread[lastposter]">$vbphrase[by_x]</phrase></span>
</div>
</td>
</tr>

Looking much better now :)

By the way this is referencing The post om page 4 with the updated template.


*****crap, I didn't see where you fixed that, oh well, this shows how you can leave the bar in to do it's original job...also changed the 'v' to a '*' ;)

mclark2112
Tue 15th Feb '05, 3:59pm
Any way to change the size of the quick reply box and the post editor?

AshAbed
Tue 15th Feb '05, 9:36pm
Threaded Mode, Latest post diplayed ontop of links
Click Edit templates
Expand the template group 'Show Thread Templates'
Step 1
Edit the 'SHOWTHREAD' template
Replace ALL of the current code with:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$thread[title]</title>
$headinclude

</head>
<body onload="$onload">
$header
$navbar

$poll

<a name="poststop" id="poststop"></a>

<!-- controls above postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%" style="margin-bottom:3px">
<tr valign="bottom">
<if condition="$show['largereplybutton']">
<td<if condition="$show['pagenav']"> width="33%"</if> class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$FIRSTPOSTID"><if condition="$show['closethread']">Post Reply<else />Topic Closed</if></a></td>
<else />
<td class="smallfont">&nbsp;</td>
</if>
<!-- thread display mode menu -->
<td<if condition="$show['pagenav']"> width="34%"</if> align="<if condition="$show['pagenav']">center<else />right</if>" class="smallfont">
<if condition="$show['linearmode']">$vbphrase[linear_mode] |
<else /><a href="showthread.php?$session[sessionurl]p=$FIRSTPOSTID&amp;mode=linear$highlightwords#post$FIR STPOSTID">$vbphrase[switch_to_linear_mode]</a> |
</if>
<if condition="$show['threadedmode']">
&nbsp;$vbphrase[threaded_mode]
<else />
&nbsp;<a href="showthread.php?$session[sessionurl]p=$FIRSTPOSTID&amp;mode=threaded$highlightwords#post$F IRSTPOSTID">$vbphrase[switch_to_threaded_mode]</a>
</if>
</td>
<!-- / thread display mode menu -->
<if condition="$show['pagenav']"><td align="right" width="33%">$pagenav</td></if>
</tr>
</table>
<!-- / controls above postbits -->

<!-- end content table -->
$spacer_close
<!-- / end content table -->
<div id="posts">$postbits</div>
<if condition="$show['threadedmode']">
<!-- thread posts list -->
$threadlist
<!-- /thread posts list -->
</if>
<!-- start content table -->
$spacer_open
<!-- / start content table -->

<!-- controls below postbits -->
<table cellpadding="0" cellspacing="0" border="0" width="100%">
<tr valign="top">
<if condition="$show['largereplybutton']">
<td class="smallfont"><a href="newreply.php?$session[sessionurl]do=newreply&amp;noquote=1&amp;p=$LASTPOSTID"><if condition="$show['closethread']">Post Reply<else />Topic Closed</if></a></td>
<else />
<td class="smallfont">&nbsp;</td>
</if>
<if condition="$show['pagenav']"><td align="$stylevar[right]">$pagenav</td></if>
</tr>
</table>
<!-- / controls below postbits -->

<br />

<div class="smallfont" align="center">
<strong>&laquo;</strong>
<a href="showthread.php?$session[sessionurl]t=$threadid&amp;goto=nextoldest">$vbphrase[prev_thread]</a>
|
<a href="showthread.php?$session[sessionurl]t=$threadid&amp;goto=nextnewest">$vbphrase[next_thread]</a>
<strong>&raquo;</strong>
</div>

$footer
</body>
</html>

Step 2
Edit the 'showthread_list' template
Replace ALL of the current code with:

<script type="text/javascript">
<!--
var imgdir_statusicon = "$stylevar[imgdir_statusicon]";
var imgdir_misc = "$stylevar[imgdir_misc]";
var cleargifurl = "$vboptions[cleargifurl]";
var guestphrase = "$vbphrase[guest]";
var morephrase = "$vbphrase[more_replies_below]";
var highlightwords = "$highlightwords";
//-->
</script>
<script type="text/javascript" src="clientscript/vbulletin_thrdpostlist.js"></script>
<script type="text/javascript">
<!--
// initialize some variables
var curpostid = $curpostid;
var quickreply = <if condition="$SHOWQUICKREPLY">true<else />false</if>;

// cached posts (no page reload required to view)
$jspostbits
// next/previous post info
$navjs
// cached usernames
pu[0] = guestphrase;
$userjs
// -->
</script>
<style type="text/css">
<!--
#links div { white-space: nowrap; }
#links img { vertical-align: middle; }
#links .x { behavior: url(clientscript/branchcollapse.htc); }
#links a.ieB { behavior: url(clientscript/postlink.htc); }
-->
</style>

<div style="background-color:#ffffff;padding:1px;border: 1px solid #c0c0c0;margin-top:8px;margin-bottom:8px;">
<table cellpadding="1" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td class="alt2">
<div class="smallfont" style="text-align:$stylevar[center];">
<!-- start post links -->
<script type="text/javascript">
<!--
$links
//-->
</script>
<!-- end post links -->
</div>
</td>
</tr>
<if condition="$threadedmode==1">
<tr>
<td class="alt2" align="center"><div class="smallfont">
<a href="javascript:showPrevNextPost(0)">$vbphrase[prev]</a>
&nbsp;|&nbsp;
<a href="javascript:showPrevNextPost(1)">$vbphrase[next]</a>
</div></td>
</tr>
</if>
</table>
</div>


I didn't try this out - Blind coding you could say, I'm pretty sure its right though.

i-Symbian.Com
Tue 15th Feb '05, 10:20pm
AshAbed :D

Thanks...

I installed the code and it displayed correctly now. The ThreadMode is at the bottom and the Quick Reply is there (I added it myself...)

Here is another enhancement that I think would make the style better. I've tried to find the code myself but I couldnt do it... :D :

1- Edit post

It could be great if registered users can edit their own post in this mobile style...

Rgds

Cheers!!!! :D :D :D

AshAbed
Wed 16th Feb '05, 12:11am
Sure, I'll get that implemented tomorrow, I'm out for the night ;).

Gri
Wed 16th Feb '05, 7:30am
I have installed and tried it, it's really good. :)

AshAbed
Sat 19th Feb '05, 12:38pm
Edit Post
Click Edit templates Step 1
Edit the 'editpost' template
Replace ALL of the current code with:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[edit_post]</title>
$headinclude
</head>
<body$onload>
$header
$navbar

<if condition="$show['deletepostoption']">
<form action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="do" value="deletepost" />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="smallfont">
$vbphrase[delete_this_message]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="100%" align="$stylevar[left]">

<div class="fieldset">

<if condition="$show['firstpostnote']">
<div>$vbphrase[deleting_message_deletion_of_thread]</div>
</if>
</div>

<fieldset class="fieldset">
<legend>$vbphrase[delete_options]</legend>
<div style="padding:$stylevar[formspacer]px">
<div>
<label for="rb_del_leave"><input type="radio" name="deletepost" value="" id="rb_del_leave" tabindex="1" checked="checked" />$vbphrase[do_not_delete_message]</label>
</div>
<div>
<label for="rb_del_soft"><input type="radio" name="deletepost" value="delete" id="rb_del_soft" tabindex="1" />$vbphrase[delete_message]</label>
<if condition="$show['physicaldeleteoption'] AND $show['keepattachmentsoption']">(<label for="cb_keepattachments"><input type="checkbox" name="keepattachments" value="1" id="cb_keepattachments" tabindex="1" />$vbphrase[keep_attachments]</label>)</if>
</div>
<if condition="$show['physicaldeleteoption']">
<div>
<label for="rb_del_hard"><input type="radio" name="deletepost" value="remove" id="rb_del_hard" tabindex="1" />$vbphrase[physically_remove_message]</label>
</div>
</if>
</div>
</fieldset>

</div>
</div>

<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" class="button" value="$vbphrase[delete_this_message]" tabindex="1" accesskey="s" />
</div>

</td>
</tr>
</table>
</form>
<br />
</if>

<form name="vbform" action="editpost.php" method="post"<if condition="!is_browser('webtv')"> onsubmit="return validatePost(this, 0, $vboptions[postminchars], $vboptions[postmaxchars]);" onreset="vB_RESET(this);"</if>>

$postpreview

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">
<span class="smallfont" style="float:$stylevar[right]"><strong>$vbphrase[thread]</strong>: <a href="showthread.php?$session[sessionurl]t=$threadinfo[threadid]">$threadinfo[title]</a></span>
$vbphrase[edit_post]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel" >
<div style="100%" align="$stylevar[center]">

$usernamecode


<!-- subject field -->
<table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:$stylevar[formspacer]px">
<tr>
<td class="smallfont" colspan="3">$vbphrase[title]:</td>
</tr>
<tr>
<td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td>
<td>&nbsp;&nbsp;</td>
<td><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /></td>
</tr>
</table>
<!-- / subject field -->

<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>

<!-- message area -->
<div class="smallfont"><phrase 1="member.php?$session[sessionurl]u=$postinfo[userid]" 2="$postinfo[username]" 3="$postinfo[postdate]" 4="$postinfo[posttime]">$vbphrase[message_by_x_on_y_at_z]</phrase>:</div>
$messagearea
<!-- / message area -->

</td>
</tr>
</table>

</div>
</div>

<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updatepost" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<input type="submit" class="button" name="sbutton" value="$vbphrase[save_changes]" accesskey="s" tabindex="1" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_changes]" accesskey="p" tabindex="1" />
</div>

</td>
</tr>
</table>

<br />



</form>

$footer

</body>
</html>


Step 2
Expand the template group 'Postbit Templates'
Edit the 'postbit' template
Search for:

<if condition="$post['replylink']"><div class="smallfont"><br />
<a href="$post[replylink]">Reply to this Message</a></div>
</if>

And replace it with:

<if condition="$post['replylink']"><if condition="$post['editlink']"><div class="smallfont"><br />
<a href="$post[replylink]">Reply to this Message</a> |
<a href="$post[editlink]">$vbphrase[edit_delete_message]</a></div>
</if></if>

Step 3
Expand the template group 'Editor Templates'
Edit the 'editor_toolbar_wysiwyg' template
Replace ALL of the current code with:

<!-- load scripts -->
$vBeditTemplate[clientscript]

<!-- start message area --><div id="vBulletin_editor" style="text-align:$stylevar[left]"><!-- / start message area -->

<!-- start control bar --><div id="controlbar"><!-- / start control bar -->



<!-- end control bar --></div><!-- / end control bar -->

<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td>
<!-- hidden field to contain html -->
<input type="hidden" name="WYSIWYG_HTML" id="html_hidden_field" value="$newpost[message_html]" />

<!-- edit text area -->
<if condition="is_browser('ie')">

<!-- internet explorer text area -->
<div id="htmlbox" tabindex="0" style="width:$stylevar[messagewidth]; height:250px; padding:8px">$newpost[message]</div>

<else />

<!-- mozilla text area -->
<iframe id="htmlbox" tabindex="0" style="width:$stylevar[messagewidth]; height:250px"></iframe>

</if>
<!-- / edit text area -->



</td>
</tr>
</table>




<!-- end message area --></div><!-- / end message area -->




<if condition="is_browser('ie')">
<!-- initialization script -->
<script type="text/javascript">
<!--
editInit();
//-->
</script>
</if>

i-Symbian.Com
Sat 19th Feb '05, 1:20pm
AshAbed,

again, great stuff. However, after installing it, I noticed that whenever I clicked on the Edit/Delete Message, it goes to the editpost page but the box is empty. I tried this on several devices, on PC, laptop, Nokia N-Gage, Nokia 6670, Nokia 9500, all the same. the edit box doesnt have the text that we suppose to edit.Please refer to attachment Editpost.jpg

Another thing, the QuickReply box is quite complicated (refer to attachment CurrentQuickReply.jpg) . It could be great if the quickreply is simpler as in attachment SimpleQuickReply.jpg.

Thanks a million my friend ;-)

Rgds

AshAbed
Sat 19th Feb '05, 5:38pm
Ah my mistake - when I have it show the current message it shows the more complex editor so I had switched it and forgot that it was editing a message and not a new reply ;). I'll get that fixed.
And I'll get the quickreply simplified.

Phil Lee
Mon 21st Feb '05, 7:30am
I've been following this thread at the same time as modifying the style for use on my own forum. There are a couple of things it would be great to have:

1. Ability for admins/mods to close a thread.
2. A very basic admin control panel, basically an emergency off button , in case the forum need to be switched off remotely. We have had need of that in the past when our forum was attacked by some kiddies posting all sorts of obscene images.

I'm currently working on simplifying the User Control Panel. At the moment I need to work out how to simplify the Edit Signature page.

Edit: Got the signature editor sorted out.

MikaK
Mon 21st Feb '05, 7:47am
This is not a valid question anymore as I decided to remove the style and try to build a custom one.
Does anybody have anuy idea why this might be happening:
Threads dont show in forumdisplay - for example:
style was removed
while the full default style shows all pretty like:
http://www.soundchilds.net/loud_lounge/forumdisplay.php?f=6&styleid=1
Looking at a thread works totally ok even with the light to be version, like:
style was removed
(nevermind the current layout)

Thanks for any info!
-Mika

one.
Mon 21st Feb '05, 3:15pm
I am doing something TOTALLY wrong I guess. :/ I keep getting an error when I try to go to my site. "413 : page cannot be displayed."

Any ideas? Thanks!

AshAbed
Mon 21st Feb '05, 6:50pm
Mika - Feel free to PM me with your admin information and I'll get it fixed for you in a few minutes, I'll have to look at the templates to see what's wrong.

one. - Can you post a link to your site? I don't think thats a problem with the skin, probably the board itself. Just incase.

MikaK
Tue 22nd Feb '05, 2:43am
Mika - Feel free to PM me with your admin information and I'll get it fixed for you in a few minutes, I'll have to look at the templates to see what's wrong.

Thanks, AshAbed. I think it is related to the threaded view which I have disabled all together after it begun showing same symptoms with my default style - probably has to do with other hacks installed.

What I´ll do is I´ll replicate my current used style and mod that into a mobile skin. I think it´s easier at the end since I know the templates used at that one.

If ít looks like a pain I´ll try re-installing this style and get back to you.

Thanks once more,
-Mika

one.
Tue 22nd Feb '05, 11:50am
one. - Can you post a link to your site? I don't think thats a problem with the skin, probably the board itself. Just incase.

www.d-series.org/forums (http://www.d-series.org/forums)

There it is.. I haven't made that style choosable... let me know what you find. I really appreciate your help!

Thanks!

AshAbed
Tue 22nd Feb '05, 5:40pm
www.d-series.org/forums (http://www.d-series.org/forums)

There it is.. I haven't made that style choosable... let me know what you find. I really appreciate your help!

Thanks!
Oh so the error only happens on that skin? In that case I'll have to have that skin be selectable so I can take a look at it... right now I don't see any problems

- And Mika, changing your current skin into a mobile skin would take a very long time compared to allowing me to fix the error, it probably is related to disabling threaded view but I can most likely get it to work.

crepo
Tue 22nd Feb '05, 6:17pm
I love this thread with the postings of AshAbed. But I see a lot of code and so one.

I was thinking, can someone post a recent xml file with the mobile template / skin?

I'm thinking to used it on our dutch forum of digital photography http://forum.belgiumdigital.com

thanks,
peter

one.
Wed 23rd Feb '05, 8:05pm
Oh so the error only happens on that skin? In that case I'll have to have that skin be selectable so I can take a look at it... right now I don't see any problems

Thanks a ton! I have set it to be selectable.

Thanks again!!!

AshAbed
Fri 25th Feb '05, 12:02am
one.: It seems to work fine for me.. I don't get any error pages... can you link me to an example?

one.
Sat 26th Feb '05, 2:20pm
AshAbed, I get the error when trying to access via my phone.

Thanks.

AshAbed
Sat 5th Mar '05, 7:15pm
I can't figure out why that's happening.. sorry.
I finished up another project - now my goal is to install every edit created in this thread and post a zip file with all the changes for download.

i-Symbian.Com
Sat 5th Mar '05, 11:09pm
AshAbed,

Nice to see you back here again. I have no problem with this mobile style and I am very proud to use it. I cauldn't have done this without your help, AshAbed :)

However, there are things that I think will better enhance this mobile style and you have promised to fix them, please refer to :

http://www.vbulletin.com/forum/showpost.php?p=819517&postcount=126

http://www.vbulletin.com/forum/showpost.php?p=819517&postcount=127

And I really hope you could do it for us. The Edit and simplified Quick Reply functions are very important for me and my forum. I hope you can consider it. If you do, this will be my last request to you ;)

Thanks a million!

Cheers!

AshAbed
Sun 6th Mar '05, 11:50am
Simplified Quick Reply
Click Edit templates
Expand the template group 'Show Thread Templates'
Step 1
Edit the 'SHOWTHREAD' template
Search for the code:

<!-- / controls below postbits -->
Add AFTER:

<br />
$quickreply

Step 2
Edit the 'showthread_quickreply' template
Replace ALL of the current code with:

<script type="text/javascript">
<!--
var WYSIWYG = $WYSIWYG;
var threadedmode = $threadedmode;
var minchars = $vboptions[postminchars];
var maxchars = $vboptions[postmaxchars];
var require_click = $QRrequireclick;
var must_click_message = "$vbphrase[click_quick_reply_icon]";
var istyles = new Array(); istyles = { $istyles_js };
var normalmode = false;
var vbphrase = {
// wysiwyg only
"wysiwyg_please_wait" : "$vbphrase[wysiwyg_please_wait]",
"wysiwyg_initialized" : "$vbphrase[wysiwyg_initialized]",
"wysiwyg_command_invalid" : "$vbphrase[wysiwyg_command_invalid]",
"moz_must_select_text" : "$vbphrase[moz_must_select_text]",
"moz_edit_config_file" : "$vbphrase[moz_edit_config_file]",
"enter_tag_option" : "$vbphrase[enter_tag_option]",
"must_select_text_to_use" : "$vbphrase[must_select_text_to_use]",
"browser_is_safari_no_wysiwyg" : "$vbphrase[browser_is_safari_no_wysiwyg]",
// standard only
"enter_text_to_be_formatted" : "$vbphrase[enter_text_to_be_formatted]",
"enter_link_text" : "$vbphrase[enter_link_text]",
"enter_list_type" : "$vbphrase[enter_list_type]",
"enter_list_item" : "$vbphrase[enter_list_item]",
// both
"must_enter_subject" : "$vbphrase[must_enter_subject]",
"message_too_short" : "$vbphrase[message_too_short]",
"enter_link_url" : "$vbphrase[enter_link_url]",
"enter_image_url" : "$vbphrase[enter_image_url]",
"enter_email_link" : "$vbphrase[enter_email_link]"
};
//-->
</script>

<form action="newreply.php" method="post" name="vbform" onsubmit="return checkQR(this);">

<table cellpadding="$stylevar[cellpadding]" cellspacing="0" border="0" width="100%" align="center">
<tr>
<td align="center">
<div>
<table cellpadding="0" cellspacing="0" border="0" align="center">
<tr>
<td class="smallfont" align="$stylevar[left]">$vbphrase[quick_reply]:</td>
</tr>
<tr>
<td align="$stylevar[left]">
<!-- <<<< indent back for ease of reading -->

<!-- no-toolbar quick reply -->

<div>
<textarea name="message" id="qr_message" style="width:500; height:100px;" rows="5" cols="60" tabindex="0"></textarea>
</div>

<!-- / no-toolbar quick reply -->


<!-- >>>> outdent back to normal -->
</td>
</tr>
</table>
</div>

<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="fromquickreply" value="1" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="postreply" />
<input type="hidden" name="t" value="$threadid" id="qr_threadid" />
<input type="hidden" name="p" value="$qrpostid" id="qr_postid" />
<input type="hidden" name="parseurl" value="1" />
<input type="hidden" name="clickedelm" value="" />
<input type="submit" class="button" value="$vbphrase[post_quick_reply]" accesskey="s" title="(Alt + S)" name="sbutton" tabindex="2" onclick="this.form.clickedelm.value=this.value" />
<input type="submit" class="button" value="$vbphrase[go_advanced]" accesskey="x" title="(Alt + X)" name="preview" tabindex="3" id="qr_preview" onclick="this.form.clickedelm.value = this.value" />
</div>
</td>
</tr>
</tbody>
</table>

</form>
<br />

<if condition="!is_browser('ie') AND $WYSIWYG == 2">
<!-- Mozilla work around for focusing on QR in WYSIWYG mode -->
<div id="qr_scroll"></div>
</if>

<script type="text/javascript" src="clientscript/vbulletin_quickreply.js"></script>
<!-- END WYSWIWYG QUICK REPLY -->

AshAbed
Sun 6th Mar '05, 12:10pm
However, there are things that I think will better enhance this mobile style and you have promised to fix them, please refer to :

http://www.vbulletin.com/forum/showpost.php?p=819517&postcount=126

http://www.vbulletin.com/forum/showpost.php?p=819517&postcount=127

And I really hope you could do it for us. The Edit and simplified Quick Reply functions are very important for me and my forum. I hope you can consider it. If you do, this will be my last request to you ;)

Thanks a million!

Cheers!
Feel free to add on more requests, I edited my original post with how to get Editposts to work, here's a link to the post:
http://www.vbulletin.com/forum/showpost.php?p=819500&postcount=125

URPREY
Sun 13th Mar '05, 11:17pm
Any idea when the zip file will be posted?

keith455
Fri 18th Mar '05, 4:26am
This works great but when i'm on my mobile device how can I make it so it always loads the mobile style?
Is there a link i can point to?
Thanks again for all the hard work.
Edit -- I've done all these mod's and attached it. I hope it works.

Keith

AshAbed
Fri 18th Mar '05, 5:46pm
This works great but when i'm on my mobile device how can I make it so it always loads the mobile style?
Is there a link i can point to?
Yes, just put the link to your forums and add ?styleid=(the style's ID)
IE:
http://YourForum.com/Forum/index.php?styleid=2

If you aren't sure how to get the styleID try this:

Login to the AdminCP, click Styles & Templates > Style Manager
Click the name of the mobile style, the link should open in a new window. The url it takes you to is the one you go to on your phone.

I plan on posting a zip file with the updated style later today or tomorrow.

AshAbed
Sat 19th Mar '05, 10:01am
I've attached a zip file containing the updated xml file, let me know if there are any problems installing it.

hankster
Mon 21st Mar '05, 2:54pm
Does anyone have the code to put in the header so that when WAP enabled devices views the site that they automatically get the WAP theme?

SnitchSeeker
Tue 22nd Mar '05, 1:13pm
I tried that on my site, but it didn't work. I got the code from one of the early pages in this thread. So if somebody has new code (that works!) I would be glad to use it! :)

Girlys
Thu 24th Mar '05, 6:33pm
I tried to install this style but I received an error saying that Im running 3.0.7 and the .xml file was created with 3.0.3Please help

Steve Machol
Thu 24th Mar '05, 6:56pm
Choose the option to ignore the version.

Girlys
Fri 25th Mar '05, 11:00pm
Succesfuly installed! but in my mobile phone the forum looks all messed up, is this mod compatible with mobil phones or just for pockets pc?

AshAbed
Sat 26th Mar '05, 2:18am
It should also work with mobile phones

hankster
Mon 4th Apr '05, 10:41am
I got it installed and the auto-detect working. The only problem I noticed is that a link to threaded mode shows up even though I have threaded mode turned off on our forums. Great skin... this will help a ton when I'm on the road.

wynode
Sat 9th Apr '05, 9:19am
Installed on http://www.ozhonda.com/forum/index.php?styleid=5 Awesome work guys! :)

wynode
Mon 11th Apr '05, 4:09am
I've had a good read through this thread but can't find the option to disable avatars.

Any ideas?

evssadmin
Mon 11th Apr '05, 8:30am
Great thanks to everyone. it works great.
http://forum.aiomobile.com/?styleid=9

T-Roz
Sat 30th Apr '05, 10:06pm
thanx for this style its very good and the modifications made on it are very good and usefull but i hope i can have these modifications on it:

1 Lines separating each thead

2 if we can put whos online hack on it??

and thanx for the good things made here

URPREY
Mon 2nd May '05, 7:14pm
I've had a good read through this thread but can't find the option to disable avatars.

Any ideas?

I'd love to know also. This is a fantastic style, but the avatars take way too long to load on my Treo.

T-Roz
Mon 9th May '05, 12:28pm
thanx for this style its very good and the modifications made on it are very good and usefull but i hope i can have these modifications on it:

1 Lines separating each thead

2 if we can put whos online hack on it??

and thanx for the good things made here

and can we do a hack that says this post is done by pocket pc if it is posted by pocket pc

why nobody is answering here???

LeeD
Fri 13th May '05, 11:59am
Installed on http://www.ozhonda.com/forum/index.php?styleid=5 Awesome work guys! :)
Did you use the most recent installation files from AshAbed?

tommyxv
Wed 25th May '05, 2:22pm
Other than uploading the wap style, is there anything else that needs to be done? I keep getting the 413 error on my phone. I set the option to allow the user to choose style, and went directly to that style via my phone to test it. EX: http://forums.mysite.com/index.php?styleid=10 (http://forums.mysite.com/index.php?styleid=10)

Still getting 413 error.. ERRR. What am I doing wrong.

Thanks,

TeenForums
Wed 25th May '05, 2:32pm
This is not actually a hack people, it is just a skin, if you want to remove avatars then you must do it by editing the templates, i am going to try and use this soon, when i do, i will post my template files for the postbit so you can just copy that and it will be much simpler on your phone but still have the same functionality!


oh and a 413 error is when the request entity is too large, this is because the server is refusin to process a request cause the request entity is larger than the server is willing or able to process.

tommyxv
Wed 25th May '05, 2:52pm
So, I guess I am am SOL with this one. :(

T-Roz
Thu 26th May '05, 12:12am
This is not actually a hack people, it is just a skin, if you want to remove avatars then you must do it by editing the templates, i am going to try and use this soon, when i do, i will post my template files for the postbit so you can just copy that and it will be much simpler on your phone but still have the same functionality!

how can u also disable the signitures and the pictures in this style only??

and is there any hack when someone writes a reply or a thread from his pocket pc the forum says that this thread or this reply is written by pocket pc???

TeenForums
Thu 26th May '05, 1:33pm
Not sure about that hack but i could look into it, as for the sigs and avatars not showing, you just have to remove them from the templates, ill have ago now and post my first version of edited postbit, please not however that i am using the postbit_legacy template cause i use the old style postbit with the avatars on the left so my first template may reflect that a little but it should not matter which postbit template you use it in.

lefteris
Fri 27th May '05, 5:09am
Have Anyone IMODE Style - Hack for VB 3?

wynode
Fri 27th May '05, 8:11am
Not sure about that hack but i could look into it, as for the sigs and avatars not showing, you just have to remove them from the templates, ill have ago now and post my first version of edited postbit, please not however that i am using the postbit_legacy template cause i use the old style postbit with the avatars on the left so my first template may reflect that a little but it should not matter which postbit template you use it in.
Sounds good!

djr
Fri 3rd Jun '05, 7:48pm
Did somebody succeed in making the reputation work in the mobile style? I'm having a hard time because it's a popup and the self.close() doesn't work.

Fly
Tue 7th Jun '05, 10:22pm
Any way to fix the redirects after logging in and/or posting? Those templates are totally hosed when I use this on m phone...

Ferbull
Wed 8th Jun '05, 10:07am
Does anyone know how to change how change the template url access:
instead: www.xxx.xx/forum/forum.php?styleid=X (http://www.xxx.xx/forum/forum.php?styleid=X) to www.xxx.xx/forum/wap.php (http://www.xxx.xx/forum/wap.php) ?

Regards
Fernando

TeenForums
Tue 14th Jun '05, 4:02pm
Sounds good!

Not got around to doing it yet cause the memory on my phone seems to be full on every page load so that cant be a good sign, i have a Nokia 6230 if anyone knows anything about making it work better?

TheMusicMan
Mon 20th Jun '05, 9:31am
I have this installed on my site but the threadview layout doesn't seem to work or display correctly when viewed on a PC or PDA. Does anyone have ideas as to why this is so...?

Cheers

TheMusicMan
Tue 21st Jun '05, 3:02pm
Hi All

Where can I find the auto-detect script for this style. I am ammending mine and so far is starting to take shape nicely. I see in posts in here earlier on in the thread that some users refer to the auto-detect script.

Can someone point me to where I can get this please as I'd like to have this running.

Thanks.:D

Chris Blount
Fri 8th Jul '05, 9:57am
I installed this. Friggin awesome and looks great! Thanks for posting.

Word of warning. If your forums are set to use the Postbit_Legacy template, you have to cut and past the Postbit template into the Postbit_Legacy template so avatars and user info doesn't show.

JGNYC
Fri 15th Jul '05, 1:17am
Possible to get this to work with 3.0.7?

Also, would it work with VBPortal?

dreamer81
Sat 30th Jul '05, 5:12am
it doesn't workw ith wap devices.... I get an "no WML content" error

AndyA
Wed 3rd Aug '05, 11:38am
It seems to be working ok on my 3.0.7 :D


http://www.throttlejockey.co.uk/forum/index.php?el=throttlejockey.co.uk&styleid=8

wynode
Tue 9th Aug '05, 10:30pm
Hi All

Where can I find the auto-detect script for this style. Thanks.

It's in this thread........you just have to find the post!

freeshares1
Sun 21st Aug '05, 6:47am
would it be possible that links to downlaods work? I have an OTA "over the air" jad download but its stripped how would i put it back in?

thanks in advance

tpccom
Tue 30th Aug '05, 10:54pm
I have vbportal as part of my site. My users will be using the downloads module to obtain things and I would like to make it easier for them to use the downloads area with their mobile phones, so I am wondering that even though this is a skin for vbulletin does it work with vbportal?

Jukov
Sat 3rd Sep '05, 11:36pm
A small but a very significant problem:
If a forums configured as category and has sub-forums, it is impossible to see the subforum list if linked directly to the category.
BTW thank you for this skin AshAbed, i-Symbian.Com and all the other contributers...!

tpccom
Sat 3rd Sep '05, 11:52pm
A small but a very significant problem:
If a forums configured as category and has sub-forums, it is impossible to see the subforum list if linked directly to the category.
BTW thank you for this skin AshAbed, i-Symbian.Com and all the other contributers...!


Do you have this installed on your site? Do you know if this works with vbportal? I have not anyone answer that question.

May I view your site?

Jukov
Sat 3rd Sep '05, 11:58pm
I'm just installing this board - This is a hebrew board and I'm using Mambo as my front page portal so I have no idea if this could work with vbportal,( but my be I will test it later... dunno...)

tpccom
Sun 4th Sep '05, 12:09am
I'm just installing this board - This is a hebrew board and I'm using Mambo as my front page portal so I have no idea if this could work with vbportal,( but my be I will test it later... dunno...)


I am plancing a bunch of ringtones on my site and using the downloads module for the content. I can navigate to the area no problem with my mobile phone but I was hoping maybe I could use this skin and make it easier for my users to get to and download their content. I thought maybe creating a subdomain of mobile.mysite.com and puting the skin and items there would make it easier. I am new to all of this so I admit my stupidity, humble myself and ask a million questions. Do you have any advice on how to make this easier for my users?

Also, you wouldnt happen to have a blog on your site like b2evolution?

Jukov
Sun 4th Sep '05, 12:42am
No no blogs - My site is a info/news site with some forums on smartphones ppc and other mobile devices.
I think that creating a differrent subdomain is less useful Maybe you could add a redirecting code to the page so it would detect the browser and redirect to this scin by default?

Pum
Thu 8th Sep '05, 7:24pm
Hi ppl
I added your Alabama skin to my site it's working excellently with PDAs but how can I to enter to forums with WAP (SE T630 for example). When I trying to enter it's writes
Too long URL=mydomain.com/forums/
Status=62[hex]
What I doing not correctly and how it can be recovered?

Dangly
Mon 3rd Oct '05, 12:54pm
Any news if it will work on 3.5?

Silver_2000
Tue 4th Oct '05, 2:22am
Any news if it will work on 3.5?
I installed this some time ago and it still works with 3.5 as far as I can tell ...

Havent tested a lot but it seems to - Lots of templates need updates/ reverts but I havent done those yet ...

It would be great to get an updated version for 3.5

Doug

EDIT - In reading all the pages between this post and my previous posts - its funny the Mobile alabama style was originally designed to be very light, pared down to bare essentials and quick. Designed for modem users or PDA users who have either slow connection or have to pay per kb to download. Now lots of the stuff that was removed is being added back one at a time for mr symbian ... Its kinda funny ...

Silver_2000
Tue 4th Oct '05, 10:40am
Edit Post
Click Edit templates Step 1
Edit the 'editpost' template
Replace ALL of the current code with:

$stylevar[htmldoctype]
<html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]">
<head>
<title>$vboptions[bbtitle] - $vbphrase[edit_post]</title>
$headinclude
</head>
<body$onload>
$header
$navbar

<if condition="$show['deletepostoption']">
<form action="editpost.php" method="post">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="do" value="deletepost" />
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="smallfont">
$vbphrase[delete_this_message]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel">
<div style="100%" align="$stylevar[left]">

<div class="fieldset">

<if condition="$show['firstpostnote']">
<div>$vbphrase[deleting_message_deletion_of_thread]</div>
</if>
</div>

<fieldset class="fieldset">
<legend>$vbphrase[delete_options]</legend>
<div style="padding:$stylevar[formspacer]px">
<div>
<label for="rb_del_leave"><input type="radio" name="deletepost" value="" id="rb_del_leave" tabindex="1" checked="checked" />$vbphrase[do_not_delete_message]</label>
</div>
<div>
<label for="rb_del_soft"><input type="radio" name="deletepost" value="delete" id="rb_del_soft" tabindex="1" />$vbphrase[delete_message]</label>
<if condition="$show['physicaldeleteoption'] AND $show['keepattachmentsoption']">(<label for="cb_keepattachments"><input type="checkbox" name="keepattachments" value="1" id="cb_keepattachments" tabindex="1" />$vbphrase[keep_attachments]</label>)</if>
</div>
<if condition="$show['physicaldeleteoption']">
<div>
<label for="rb_del_hard"><input type="radio" name="deletepost" value="remove" id="rb_del_hard" tabindex="1" />$vbphrase[physically_remove_message]</label>
</div>
</if>
</div>
</fieldset>

</div>
</div>

<div style="margin-top:$stylevar[cellpadding]px">
<input type="submit" class="button" value="$vbphrase[delete_this_message]" tabindex="1" accesskey="s" />
</div>

</td>
</tr>
</table>
</form>
<br />
</if>

<form name="vbform" action="editpost.php" method="post"<if condition="!is_browser('webtv')"> onsubmit="return validatePost(this, 0, $vboptions[postminchars], $vboptions[postmaxchars]);" onreset="vB_RESET(this);"</if>>

$postpreview

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat">
<span class="smallfont" style="float:$stylevar[right]"><strong>$vbphrase[thread]</strong>: <a href="showthread.php?$session[sessionurl]t=$threadinfo[threadid]">$threadinfo[title]</a></span>
$vbphrase[edit_post]
</td>
</tr>
<tr>
<td class="panelsurround" align="center">
<div class="panel" >
<div style="100%" align="$stylevar[center]">

$usernamecode


<!-- subject field -->
<table cellpadding="0" cellspacing="0" border="0" style="margin-bottom:$stylevar[formspacer]px">
<tr>
<td class="smallfont" colspan="3">$vbphrase[title]:</td>
</tr>
<tr>
<td><input type="text" class="bginput" name="title" value="$title" size="50" maxlength="85" tabindex="1" title="$vbphrase[optional]" /></td>
<td>&nbsp;&nbsp;</td>
<td><img id="display_posticon" src="$selectedicon[src]" alt="$selectedicon[alt]" /></td>
</tr>
</table>
<!-- / subject field -->

<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td>

<!-- message area -->
<div class="smallfont"><phrase 1="member.php?$session[sessionurl]u=$postinfo[userid]" 2="$postinfo[username]" 3="$postinfo[postdate]" 4="$postinfo[posttime]">$vbphrase[message_by_x_on_y_at_z]</phrase>:</div>
$messagearea
<!-- / message area -->

</td>
</tr>
</table>

</div>
</div>

<div style="margin-top:$stylevar[cellpadding]px">
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="updatepost" />
<input type="hidden" name="p" value="$postid" />
<input type="hidden" name="posthash" value="$posthash" />
<input type="hidden" name="poststarttime" value="$poststarttime" />
<input type="submit" class="button" name="sbutton" value="$vbphrase[save_changes]" accesskey="s" tabindex="1" />
<input type="submit" class="button" name="preview" value="$vbphrase[preview_changes]" accesskey="p" tabindex="1" />
</div>

</td>
</tr>
</table>

<br />



</form>

$footer

</body>
</html>


Step 2
Expand the template group 'Postbit Templates'
Edit the 'postbit' template
Search for:

<if condition="$post['replylink']"><div class="smallfont"><br />
<a href="$post[replylink]">Reply to this Message</a></div>
</if>

And replace it with:

<if condition="$post['replylink']"><if condition="$post['editlink']"><div class="smallfont"><br />
<a href="$post[replylink]">Reply to this Message</a> |
<a href="$post[editlink]">$vbphrase[edit_delete_message]</a></div>
</if></if>

Step 3
Expand the template group 'Editor Templates'
Edit the 'editor_toolbar_wysiwyg' template
Replace ALL of the current code with:

<!-- load scripts -->
$vBeditTemplate[clientscript]

<!-- start message area --><div id="vBulletin_editor" style="text-align:$stylevar[left]"><!-- / start message area -->

<!-- start control bar --><div id="controlbar"><!-- / start control bar -->



<!-- end control bar --></div><!-- / end control bar -->

<table cellpadding="0" cellspacing="0" border="0">
<tr valign="top">
<td>
<!-- hidden field to contain html -->
<input type="hidden" name="WYSIWYG_HTML" id="html_hidden_field" value="$newpost[message_html]" />

<!-- edit text area -->
<if condition="is_browser('ie')">

<!-- internet explorer text area -->
<div id="htmlbox" tabindex="0" style="width:$stylevar[messagewidth]; height:250px; padding:8px">$newpost[message]</div>

<else />

<!-- mozilla text area -->
<iframe id="htmlbox" tabindex="0" style="width:$stylevar[messagewidth]; height:250px"></iframe>

</if>
<!-- / edit text area -->



</td>
</tr>
</table>




<!-- end message area --></div><!-- / end message area -->




<if condition="is_browser('ie')">
<!-- initialization script -->
<script type="text/javascript">
<!--
editInit();
//-->
</script>
</if>

Looks like the 'editor_toolbar_wysiwyg' template is missing from 3.5

When i Attempted to implement the edit feature it by default added all the smmilies and the wysiwyg stuff - which amounted to a 200K plus download

To turn all that off, to save data for people who have to pay to dload over pda - I copied the contents of editor_toolbar_off to the editor_toolbar_on template ... Seems to work

Much faster and cleaner
Doug

Dangly
Fri 14th Oct '05, 10:49pm
I'll wait for the 3.5 version before upgrading then :D

Great work btw

FZ1OA
Sun 30th Oct '05, 8:22pm
Great job guys! Thanks! One little problem. In 3.5 the quick style chooser pulldown doesn't seem to work when I'm in this PDA skin. Any idea how to fix this?

Thanks
Steve

lowandloudinc
Mon 31st Oct '05, 1:56am
can someone make this for 350 gold please?

uquni
Mon 31st Oct '05, 7:33am
can someone make this for 350 gold please?

FZ1OA
Sun 6th Nov '05, 11:48am
Ok,

The only thing that I could find that was broken in vb3.5 with this style was the quick chooser menu at the bottom of the screen. I did a quick hack and believe I fixed it. This was my first time trying something like this so I hope it works for you too.


Steve

AcornDomains
Sat 17th Dec '05, 9:04pm
I get loads of style errors (21 of them) when I try to use this with 3.5.1 and it doesn't work.

Anyone got a fix?

LanciaStratos
Sun 15th Jan '06, 1:28pm
I got this working on 3.5.3, check it out at http://mobile.gtplanet.net - thanks for the hard work, Floris! Everyone using this style, to include sub-forums, just include this code:


<if condition="$show['forumslist']">
<!-- sub-forum list -->
<strong>$vbphrase[subforums]:</strong>
$forumbits
<br />
<!-- / sub-forum list -->
</if>

...right below this code in the FORUMDISPLAY template...


<!-- / controls above thread list -->

<div style="background-color:#ffffff;border: 1px solid #c0c0c0; padding:8px;margin-top:6px;margin-bottom:6px;">

Dangly
Sun 29th Jan '06, 9:46pm
I got this working on 3.5.3, check it out at http://mobile.gtplanet.net - thanks for the hard work, Floris! Everyone using this style, to include sub-forums, just include this code:


<if condition="$show['forumslist']">
<!-- sub-forum list -->
<strong>$vbphrase[subforums]:</strong>
$forumbits
<br />
<!-- / sub-forum list -->
</if>

...right below this code in the FORUMDISPLAY template...


<!-- / controls above thread list -->

<div style="background-color:#ffffff;border: 1px solid #c0c0c0; padding:8px;margin-top:6px;margin-bottom:6px;">

Ive added that in but doesnt seem to work? Do you have a final version 3.5.3?

keymistress
Mon 20th Feb '06, 1:25am
hi everyone, may i know how do i not show avatars and signatures for this skin? also, which css do i need to edit to reduce all the font sizes to the same as that of "private messages" text? many thanks in advance!

btw, working great for my vb3.5.3!

Akagi
Wed 22nd Feb '06, 12:06am
anyone care to share a working copy of the style for 3.5.3?

Silver_2000
Wed 22nd Feb '06, 12:12am
It works just install it
you can see it here
http://www.talonclub.com/forum/index.php?styleid=22

Akagi
Wed 22nd Feb '06, 4:36am
oh..thanks for the help!

LanciaStratos
Thu 2nd Mar '06, 1:09am
I've had quite a few people PM me about this style in 3.5.3, but like Silver_2000 said you shouldn't have any problems just installing it. I'm going to go ahead and post my 3.5.3 style for those who may be having other problems. See it in action here (http://www.gtplanet.net/forum/index.php?styleid=12).

Dangly
Sat 4th Mar '06, 4:31pm
I've had quite a few people PM me about this style in 3.5.3, but like Silver_2000 said you shouldn't have any problems just installing it. I'm going to go ahead and post my 3.5.3 style for those who may be having other problems. See it in action here (http://www.gtplanet.net/forum/index.php?styleid=12).

Still having a problem with this, See:

http://www.vistatechnical.co.uk/pictures/forum.jpg
http://www.vistatechnical.co.uk/pictures/forum2.jpg

Any ideas?

jaybolt
Sun 2nd Apr '06, 8:14am
Am trying to put the Reply to PM function back in but am having trouble figuring it out. Any help please?

jaybolt
Sun 2nd Apr '06, 6:32pm
Scratch that - got it sorted :)

ALanJay
Sun 30th Apr '06, 6:10am
Hi,

I have been looking at this and was trying to work out if it really is capable of being used by a WAP device - is it possible to send an XML header to the browser rather than the HTML one?

DJRoppolo
Sun 30th Apr '06, 8:37pm
Does this style automatically detect a handheld browser? I dont see much help with the install and questions like that answered.

LeftCoastBias
Sun 28th May '06, 2:31pm
our forum also experienced an error with this skin.


once you have selected the skin, you cannot select another skin from the drop down. they all respond with an error on the page- and you are stuck in the mobile skin.



i had to delete it from the style manager to regain use of my other skins.

Fly
Sat 10th Jun '06, 1:51pm
anyone know where I can even PAY for a fully functional PDA skin that works with 3.5.4? Preferrably with a PDA browser detector...

cmeinck
Sun 2nd Jul '06, 3:49pm
Has anyone made this 3.54 compatible? It won't let me install?

URPREY
Sun 2nd Jul '06, 8:19pm
Has anyone made this 3.54 compatible? It won't let me install?
Just click the box that says to ignore version, and it will work fine.

princessfrozen
Fri 7th Jul '06, 8:52am
Does this style automatically detect a handheld browser? I dont see much help with the install and questions like that answered.
You can use the info in this post to add automatic detection: http://www.vbulletin.org/forum/showpost.php?p=991260&postcount=121

cmbehan
Tue 18th Jul '06, 4:56pm
I installed the 353 version on our 354 installation and the main page works fine, but when I click to go into one of my forums, I get the default style instead of the new one.

What am I doing wrong?

hype901
Fri 21st Jul '06, 1:13pm
our forum also experienced an error with this skin.

once you have selected the skin, you cannot select another skin from the drop down. they all respond with an error on the page- and you are stuck in the mobile skin.

i had to delete it from the style manager to regain use of my other skins.
I had that problem with the 3.0.1 version of this skin, but the 3.5.3 version of this skin works fine on vB 3.5.4 from what I can tell. Quick Style Chooser switches back and forth with ease :)

Glen C
Mon 7th Aug '06, 11:09pm
has anyone tried this with 3.60?

i'd like to configure my board to at least be able to read PMs via cell phone.

mvpower
Tue 8th Aug '06, 4:26am
I just installed it on 3.5.4 and it works fine.

Also for everyone who want browser autodetection and dont want to modify vBulletin scripts - here is instruction how to add autodetect plugin (thanks to vBulletin team for hooks):

1. Go to admin area "Plugin System/Add new plugin"

2. Fill in form here:
- Product: "vBulletin"
- Hook location: style_fetch
- title: "WAP auto detect" or whatever sounds good for you
- PHP code:

$browsers = array(
"Windows CE",
"WebTV",
"AvantGo",
"Blazer",
"PalmOS",
"lynx",
"Go.Web",
"Elaine",
"ProxiNet",
"ChaiFarer",
"Digital Paths",
"UP.Browser",
"Mazingo",
"Mobile",
"T68",
"Syncalot",
"NetFront",
"Danger",
"Symbian",
"Nokia",
"Xiino",
"AU-MIC",
"EPOC",
"BlackBerry",
"Wireless",
"Handheld"
);

if(preg_match('/('.implode('|', $browsers).')/i', $_SERVER['HTTP_USER_AGENT'], $match)) {
$mobile=1;
} else if (isset($_SERVER['HTTP_UA_OS'])) {
if (strstr($_SERVER['HTTP_UA_OS'],"POCKET PC") !== false) {
$mobile=1;
}
} else {
$mobile=0;
}

if ($mobile==1) {
$styleid=2;// your wap theme ID here
$vbulletin->options['styleid'] = 2;// your wap theme ID here
}



Enable plugin and enjoy :D

johngdk
Fri 11th Aug '06, 7:11pm
I got this working on 3.5.3, check it out at http://mobile.gtplanet.net - thanks for the hard work, Floris! Everyone using this style, to include sub-forums, just include this code:


<if condition="$show['forumslist']">
<!-- sub-forum list -->
<strong>$vbphrase[subforums]:</strong>
$forumbits
<br />
<!-- / sub-forum list -->
</if>

...right below this code in the FORUMDISPLAY template...


<!-- / controls above thread list -->

<div style="background-color:#ffffff;border: 1px solid #c0c0c0; padding:8px;margin-top:6px;margin-bottom:6px;">


Does anyone have this to work on 3.5.4 ?

ryanozawa
Tue 3rd Oct '06, 11:40pm
has anyone tried this with 3.60?I've installed it on a 3.6.1 forum and am experimenting with it now. Seems to work fine. Since this 'skin' is basically a skin stripped of graphics and other goodies, I'd expect it to require little tweaking except when vBulletin undergoes a substantial code change.

skoenig
Fri 6th Oct '06, 6:07am
Great template...

Found a small buglet..

In the threadbit - around line 4 there's a stray right bracket bewteen usename and Thread Title...

~ Steph

ryanozawa
Fri 6th Oct '06, 1:30pm
Found a small buglet.. In the threadbit - around line 4 there's a stray right bracket bewteen usename and Thread Title...I think that's intentional, actually. I made a number of tweaks to the template myself, just based on having different aesthetic preferences.
Added in "New Posts" (getnew) "Latest Posts" (getdaily) and "Search" links to the logged-in header (after the PM notice).
Removed the "Thread/Thread Starter," "Last Post," and other column headers (which didn't seem to connect to anything and took up a lot of space).
In the search template (such as "Latest Posts"), instead of "Username) Thread Title" I used "-Thread Title (Username)" and changed the username from the thread starter to the latest poster.
Put a link next to the header/forum title to switch back to the "Full" version (i.e. normal skin).I haven't been able to get the moderation features to work, and the PM interface and advanced search screen aren't "scaled down," so that may be what was affected in the upgrade from 3.0.x to 3.5.x, but to browse and get around, it's great.

skoenig
Sat 7th Oct '06, 4:44am
Agree. I love it.
...very well put together a good looking.

Wopuld dearly love to make 'old' and 'new' to grey and green backgrounds respectively but can't for the life of me figure out how. All I can fine is forum[statusicon] which doesn't fo anythign if I dick with it.

Can anyone help?

~ Steph

pablo
Sat 7th Oct '06, 5:28am
looking forward to 3.6.2 release !

TheOverclocked
Thu 12th Oct '06, 9:58pm
looking forward to 3.6.2 release !

ditto.

Zachery
Fri 13th Oct '06, 2:35am
vBMechanic has been gone for a long time, i wouldnt hold your breath.

BlueKnight
Sat 14th Oct '06, 9:16pm
so does this install as a product or a plug in? or? I triedboth and no go.

Steve Machol
Sun 15th Oct '06, 12:36am
Neither. It's a style.

Telesik
Tue 17th Oct '06, 4:19pm
vBMechanic has been gone for a long time, i wouldnt hold your breath.
I'm sorry, but what is vBMechanic ?

TheOverclocked
Tue 17th Oct '06, 4:23pm
I'm sorry, but what is vBMechanic ?

The guy that made the skin/thread.

furst
Tue 17th Oct '06, 4:41pm
So does this work on 3.6?

TheOverclocked
Tue 17th Oct '06, 4:57pm
So does this work on 3.6?

Read VVVVV


I've installed it on a 3.6.1 forum and am experimenting with it now. Seems to work fine. Since this 'skin' is basically a skin stripped of graphics and other goodies, I'd expect it to require little tweaking except when vBulletin undergoes a substantial code change.


I think that's intentional, actually. I made a number of tweaks to the template myself, just based on having different aesthetic preferences.
Added in "New Posts" (getnew) "Latest Posts" (getdaily) and "Search" links to the logged-in header (after the PM notice).
Removed the "Thread/Thread Starter," "Last Post," and other column headers (which didn't seem to connect to anything and took up a lot of space).
In the search template (such as "Latest Posts"), instead of "Username) Thread Title" I used "-Thread Title (Username)" and changed the username from the thread starter to the latest poster.
Put a link next to the header/forum title to switch back to the "Full" version (i.e. normal skin).I haven't been able to get the moderation features to work, and the PM interface and advanced search screen aren't "scaled down," so that may be what was affected in the upgrade from 3.0.x to 3.5.x, but to browse and get around, it's great.

Should work okay according to that but not perfect.

94civicEX
Fri 20th Oct '06, 4:42pm
Is the creator ever going to update this style for newer versions?

Steve Machol
Fri 20th Oct '06, 4:43pm
I doubt it since he has beeen gone for a long time.

TheOverclocked
Fri 20th Oct '06, 5:06pm
I just run this one myself

http://www.vbulletin.org/forum/showthread.php?t=100764

Works pretty good

94civicEX
Fri 20th Oct '06, 9:55pm
I've had quite a few people PM me about this style in 3.5.3, but like Silver_2000 said you shouldn't have any problems just installing it. I'm going to go ahead and post my 3.5.3 style for those who may be having other problems. See it in action here (http://www.gtplanet.net/forum/index.php?styleid=12).
Wow, I was editing the other then saw your post, thanks for saving me time!!!

94civicEX
Fri 20th Oct '06, 10:41pm
I just installed it on 3.5.4 and it works fine.

Also for everyone who want browser autodetection and dont want to modify vBulletin scripts - here is instruction how to add autodetect plugin (thanks to vBulletin team for hooks):

1. Go to admin area "Plugin System/Add new plugin"

2. Fill in form here:
- Product: "vBulletin"
- Hook location: style_fetch
- title: "WAP auto detect" or whatever sounds good for you
- PHP code:



Enable plugin and enjoy :D

Works perfectly. I wonder where this guy compiled his Mobile Browser list?

MotoUp
Fri 29th Dec '06, 11:40am
I looked at the couple sites posted here using this style, and including mine, when viewing from my blackberry, the "old" and "new" tags show up as a 100% and takes a whole line by itself, then the forum name shows up underneath it, instead of showing old as a small square, then the forum name.

Any ideas?

Silver_2000
Fri 29th Dec '06, 11:46am
I looked at the couple sites posted here using this style, and including mine, when viewing from my blackberry, the "old" and "new" tags show up as a 100% and takes a whole line by itself, then the forum name shows up underneath it, instead of showing old as a small square, then the forum name.

Any ideas?
on many BBs there are 2 or 3 browsers with different features etc
Did you try the others ?

MotoUp
Fri 29th Dec '06, 12:04pm
Yeah, I tried all the emulation modes, and all the settings. So does it show normally on Windows devices then?

MotoUp
Sun 31st Dec '06, 5:49pm
Has anyone noticed that you can only type about 30 or so characters and then you get an exception fault in the browers? I used the other mobile style that I was originally using, and it works just fine.

SaN-DeeP
Wed 7th Mar '07, 10:47pm
Does someone has a working version of this style for Vbulletin 3.6.x series ?
Kindly/Please share the same .

Regards,

dartho
Mon 18th Jun '07, 8:27am
I've modified this skin a little and made it available with a mobile detection hack over on vbulletin.org here: http://www.vbulletin.org/forum/showthread.php?t=130983

I did try and contact VBMechanic, but no response.

Remi
Tue 25th Sep '07, 5:28am
Does someone has a working version of this style for Vbulletin 3.6.x series ?
Kindly/Please share the same .

Regards,


same here, thanks

Dangly
Tue 25th Sep '07, 6:58am
Yeah its working on my 3.6.8