vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Styles (https://vborg.vbsupport.ru/forumdisplay.php?f=230)
-   -   Mobile, Cell, Phone, PDA, iPhone Style (https://vborg.vbsupport.ru/showthread.php?t=174375)

filmking 07-14-2009 02:01 AM

Quote:

Originally Posted by MissKalunji (Post 1848049)
Is this to make sure it keeps the size of the screen?

Yes, if you want the display to look like the screenshots then add that line----- it'll format according to the screen size of the particular mobile device, from a basic cell phone, to an Iphone or smart phone.

30et 07-17-2009 06:17 AM

Hi there,
I am running vbulletin using a mobile template. When a user wants to view a poll, they click the poll title and they expect to be taken to the form where they enter their vote. This is how it works on my default vbulletin installation. But on the mobile template, the user is taken to the last post for the poll.

The link from the mobile template /forums/showthread.php?p=3902301#post3902301

The same link from the default template goes to /forums/showthread.php?t=252960

What can I change so that the mobile template works the way the default template does?

dartho 07-17-2009 09:34 AM

I assuem you are talking about another style as polls work fine in this one, you should check with the author.

zeus_r6 07-20-2009 12:48 AM

I'm running this style and images that are in image tags do not show up, neither do links to the images...I would like the images to show up if they are in image tags....ideas?

dartho 07-20-2009 07:20 AM

delete all the replacement variables (end of the style options page) for this style, and images will appear inline as normal

jbeam 07-21-2009 01:36 AM

I have a couple odd issues.

I am running;

Mobile Device Detection 1.0.0
Mobile Style Options 0.0.10b
vbulletin-mobile-style-0.0.10a

I am running these on two different sites, it works perfect on one site, but the other is having some issues.

Works - http://www.thenewx.org/forum/index.php?styleid=7
Problems - http://first.thexterra.org/forum/index.php?styleid=6

1. There is no color.
2. There are no "image" links.

Anyone have any ideas?

MissKalunji 07-21-2009 01:47 AM

color...did you upload the css at the right place?

As for image which images are you talking about? if i recall he removed all the images and replaced the smiles with letters instead like :-) instead of showing the image

Keep in mind it's a mobile....very low bandwich to load as fast as possible...

flowermama 07-21-2009 06:08 AM

This is really working great on my board. Thank you!

Quantnet 08-02-2009 02:56 AM

I use VB Ad Management mod which display an ad after the first post on each thread. how do I remove the ad in this mobile style.

dartho 08-02-2009 04:05 AM

If you have the add-in which extends this style (https://vborg.vbsupport.ru/showthread.php?t=182692) placing the following code in teh disable add-ons code section:
PHP Code:

// Disable "vB Ad Management" https://vborg.vbsupport.ru/showthread.php?t=131150
$vbulletin->options['adintegrate_onoff']=0

might work ...

Quantnet 08-02-2009 12:37 PM

Thanks, but this works

Code:

// Disable "Forum Ad Management"
$vbulletin->options['vbam_forum_onoff']=0;


dartho 08-02-2009 10:22 PM

Glad you worked it out, but thats a different product, the previous will should still work with 'vB Ad Management'

RaceJunkie 08-05-2009 03:20 AM

Worked fine on my other Blackberry but now I have a new one and it's all white with blue text.

Blackberry Curve with Verizon v4.5.0.77

JamesN 08-05-2009 09:14 AM

Does this work with vBulletin 3.8.3 guys?

Biker_GA 08-05-2009 10:25 AM

As the numerous posts in this thread state... Yes!

Lynne 08-05-2009 03:45 PM

Yes, it works with 3.8.3. However, if you want to use Social Groups on your phone/pda, you should edit those templates unless you just want to use default vb.

fenderf4i 08-06-2009 12:26 PM

I don't see where I'm supposed to find the replacement variables at the bottom of the style options to enable images. Can someone point it out to me? Thanks!

Lynne 08-06-2009 01:38 PM

Quote:

Originally Posted by fenderf4i (Post 1862518)
I don't see where I'm supposed to find the replacement variables at the bottom of the style options to enable images. Can someone point it out to me? Thanks!

Styles & Templates Manager > Replacement Variable Manager

fenderf4i 08-07-2009 12:43 PM

Thank you! That worked very well. I have one final question.

What do I have to change so that when there is a new post in a thread, the thread title is in bold, but NOT in bold after the new post within it is read? The main page behaves this way with the categories-if there's a new post somewhere, the category title will be in bold.

I tried deleting all of the font-weight: bold lines out of the css file, but it didn't have any effect on anything! Thank you!!

Quantnet 08-10-2009 11:49 AM

I use this with the Mobile Option mod. I added a style switcher on the top. When I click on that, it goes to the forum home instead of the post/thread I was using with the mobile style. Is there anyway we can keep the same location and just switch the styleid?

dartho 08-11-2009 10:18 AM

@Quantnet - You could try editing the navbar template and replacing:
Code:

<if condition="$vbulletin->options['mo37_default_style_link']==1">
<a class="navbar" href="{$vbulletin->options['mo37_navbar_home']}?$session[sessionurl]styleid={$vbulletin->options['mo37_default_style']}">{$vbulletin->options['mo37_default_link']}</a>
</if>

with

Code:

<if condition="$vbulletin->options['mo37_default_style_link']==1">
<a class="navbar" href="{$_SERVER[REQUEST_URI]}&amp;styleid={$vbulletin->options['mo37_default_style']}">{$vbulletin->options['mo37_default_link']}</a>
</if>

There may be some issue I'm not sure of (you *should* in theory clean all server vars before using them, but this *seems* safe (insert wordy disclaimer here) - use at your own risk, if you have knowledge of such this - you input is welcome!

dartho 08-11-2009 10:19 AM

Quote:

Originally Posted by fenderf4i (Post 1863067)
Thank you! That worked very well. I have one final question.

What do I have to change so that when there is a new post in a thread, the thread title is in bold, but NOT in bold after the new post within it is read? The main page behaves this way with the categories-if there's a new post somewhere, the category title will be in bold.

I tried deleting all of the font-weight: bold lines out of the css file, but it didn't have any effect on anything! Thank you!!

try loggin out and then logging back in and seeing if it still remains bold. thx

Quantnet 08-11-2009 11:09 AM

Quote:

Originally Posted by dartho (Post 1865027)
@Quantnet - You could try editing the navbar template and replacing:
Code:

<if condition="$vbulletin->options['mo37_default_style_link']==1">
<a class="navbar" href="{$vbulletin->options['mo37_navbar_home']}?$session[sessionurl]styleid={$vbulletin->options['mo37_default_style']}">{$vbulletin->options['mo37_default_link']}</a>
</if>

with

Code:

<if condition="$vbulletin->options['mo37_default_style_link']==1">
<a class="navbar" href="{$_SERVER[REQUEST_URI]}&amp;styleid={$vbulletin->options['mo37_default_style']}">{$vbulletin->options['mo37_default_link']}</a>
</if>

There may be some issue I'm not sure of (you *should* in theory clean all server vars before using them, but this *seems* safe (insert wordy disclaimer here) - use at your own risk, if you have knowledge of such this - you input is welcome!

This seems to work. I'll def let you know when my users notify me of something wrong ;)
Thanks


Edit: When I keep switching back and forth between the styles, I notice that the styleid var is being added to the site url over and over
?styleid=23&styleid=35&styleid=23&&styleid=35&styl eid=23..................

dartho 08-11-2009 09:59 PM

that doesn't suprise me - not much to do about it with this method (other than to not sit idly changing styles :) ) Should be back to a standard uri as soon as you follow a link

Hornstar 08-11-2009 10:10 PM

dartho, I noticed it has been a year without any updates. Are you planning on doing any updates to this skin? Since I find it is the better of the phone skins available to the public currently.

dartho 08-11-2009 11:21 PM

I've been planning on doing updates, and have made tweaks along the way on my own site - I just need to incorporate these and release a new package for 3.8. There have been no major changes however...

Quantnet 08-12-2009 12:06 AM

Can't wait for the updates, dartho.

One thing in my wishlist would be a way to override the Detect Mobile and Style Assignment mod. I like the idea of giving mobile users the default mobile style but giving them an option to switch back.

Currently your style does not work with with that mod.

The second thing would be the User CP template. Right now, I have to scroll down past the User CP menu item to get to the PM. Somehow the layout is just off.

Quantnet 08-12-2009 01:33 AM

And vb 3.8.4 released today and I have 32 out of date templates found, all from this mobile style ;)

It's a perfect time to release a 3.8.x upgrade, dartho :)

Biker_GA 08-12-2009 10:11 AM

If it bothers you that much, just go in to the xml file and replace the version with 3.8.4.

Quantnet 08-12-2009 12:04 PM

Quote:

Originally Posted by Biker_GA (Post 1865712)
If it bothers you that much, just go in to the xml file and replace the version with 3.8.4.

What were you thinking?
The templates for 3.7.2 are nowhere compatible to 3.8.4. It's not about changing the version letter in the xml

Biker_GA 08-12-2009 10:31 PM

If they're not compatible, they wouldn't work now, would they? It's working just fine with 3.8.x.

BGObsession 08-13-2009 09:33 PM

Hey Dartho, been working great on my board, but one member using a blackberry with Opera minibrowser that "when selecting a thread that has multiple pages, if you are beyond the first page and you try to navigate to the first page. When clicking the arrow back and number the page refreshes instead."

Any idea on what's going on here or a possible fix?

Thanks again for a great mobile mod!

BGObsession 08-15-2009 10:28 PM

Bump for possible assistance?

dartho 08-16-2009 12:24 AM

sorry, BG - if it's only affecting a single user I have no idea where to start.

Mr. W 08-21-2009 03:31 AM

This sounds cool. But I'm wondering about something.

If a moderator or administrator logs in, can he perform moderation duties? Like, edit posts, delete threads, and so on?

How about banning users?

If not then while this seems like a very cool idea, this would limit it's usefulness. My idea is this: Suppose I go on vacation? That way, I can keep logging in and perform moderation duties as if I was at home.

A variant for this that would instead work for the ACP and/or the MCP would be very cool. At least I have Opera on my Blackberry, but it's kind of slow and cumbersome.

Baldilocks 08-29-2009 05:40 AM

The update looks awesome! Now this one looks nearly as good as the iPhone custom skin that I use.

Dan! 09-07-2009 01:20 PM

beautiful thankyou!

installed!

CR_TurboGuy 09-08-2009 11:37 AM

Quote:

Originally Posted by Quantnet (Post 1865497)
Can't wait for the updates, dartho.

One thing in my wishlist would be a way to override the Detect Mobile and Style Assignment mod. I like the idea of giving mobile users the default mobile style but giving them an option to switch back.

Currently your style does not work with with that mod.

The second thing would be the User CP template. Right now, I have to scroll down past the User CP menu item to get to the PM. Somehow the layout is just off.

Check out my post here for something that may take care of that first part for you:
https://vborg.vbsupport.ru/showpost....&postcount=283

--JOsh

Quantnet 09-08-2009 12:13 PM

Josh,
Most welcome news. Will check that out.
Thanks

Mr. W 09-15-2009 06:41 AM

Quote:

Originally Posted by Mr. W (Post 1871421)
This sounds cool. But I'm wondering about something.

If a moderator or administrator logs in, can he perform moderation duties? Like, edit posts, delete threads, and so on?

How about banning users?

If not then while this seems like a very cool idea, this would limit it's usefulness. My idea is this: Suppose I go on vacation? That way, I can keep logging in and perform moderation duties as if I was at home.

A variant for this that would instead work for the ACP and/or the MCP would be very cool. At least I have Opera on my Blackberry, but it's kind of slow and cumbersome.

____Alright, so I'm basically replying to myself. However, I found out the answer to some of the things that I was wondering about.

____If a moderator logs in, using this skin on his mobile phone, he will be able to delete threads. However, there doesn't seem to be a way for a moderator to undelete a previously soft-deleted thread. Not with this skin.

____Unfortunately, the functionality for editing posts doesn't seem to work right. There's no button to save the changes after making the edits. So, basically this means that moderators who log in using this skin will not be able to edit posts.

____In addition, there's no way for a moderator to ban another user while using his mobile phone. At least not with this skin, in it's current state.

____Another thing I noticed is that there could be some conflicts, or otherwise odd behavior if you install this skin, and have certain other modifications installed. For example, a shoutbox. It probably won't work too well on a mobile phone anyway, so you may need to make some changes so that a shoutbox, if you have one, won't show up on this skin.

____I realize that this skin is not yet perfect. It hasn't even reached the first version. However, it nevertheless is a very cool idea. With a little more work, it can be a lot better. But that's just my opinion.

Note: I performed this testing using a Blackberry Pearl, using the default browser that Blackberries have. I'll try to do some more testing, again with a Blackberry Pearl, but instead with Opera Mini.


All times are GMT. The time now is 05:08 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01898 seconds
  • Memory Usage 1,832KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)bbcode_php_printable
  • (7)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete