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)

tpearl5 07-18-2008 04:09 PM

when you say fully phrased you mean the style has it's own set of phrases now?

cygy2k 07-18-2008 06:58 PM

Can I get some help preventing vBAdvanced modules from showing for the mobile style? I have all my pages integrated with vBA and I keep getting moduleson the left side on the mobile pages.

Note - I've searched this thread and read the whole thing but haven't found a good answer.

Thanks!

dartho 07-18-2008 09:41 PM

@ Fireproof - Same CSS - no changes there
@tpearl5 - no it's using all vbulletin default phrases
@cygy2k - do you have a link to the hack installed to integrate vbadvanced on all pages? If I can have a look at that, I can probably help. Otherwise I'd need access to you admincp

Bounce 07-18-2008 10:39 PM

Can and if so how do you move the login box to the top.:erm:

Saves scrolling on a phone and some users are not seeing it and thinking they cant login :confused:

Edit cancel that sussed it :)

Find in footer

HTML Code:

<if condition="$show['member']">
<div class="navbar">
<a class="navbar" href="login.php?$session[sessionurl]do=logout&amp;logouthash=$bbuserinfo[logouthash]">
$vbphrase[log_out]</a> <a class="navbar" href="search.php$session[sessionurl_q]">$vbphrase[search]</a>
<if condition="$vbulletin->options['mo37_default_style_link']==2">
<a class="navbar" href="{$vbulletin->options['mo37_navbar_home']}?$session[sessionurl]styleid={$vbulletin->options['mo37_default_style']}">$vbulletin->options['mo37_default_link']</a>
</if>
</div>
<else />
<form action="login.php?do=login" method="post">
<div>
<label for="navbar_username">$vbphrase[username]</label>
<input type="text" class="windowbg" size="10" name="vb_login_username" id="navbar_username" accesskey="1" /><br />
<label for="navbar_password">$vbphrase[password]</label>
<input type="password" class="windowbg" size="10" name="vb_login_password" id="navbar_password" accesskey="2" /><input type="checkbox" name="cookieuser" value="1" />
<input type="hidden" name="securitytoken" value="$bbuserinfo[securitytoken]" />
<input type="submit" class="button" value="$vbphrase[log_in]" title="$vbphrase[enter_username_to_login_or_register]" accesskey="3" />
<input type="hidden" name="s" value="$session[sessionhash]" />
<input type="hidden" name="do" value="login" />
<input type="hidden" name="vb_login_md5password" />
<input type="hidden" name="vb_login_md5password_utf" />
</div></form>
</if>

remove and add to your header

Looks much better IMHO

MissKalunji 07-18-2008 11:31 PM

Quote:

Originally Posted by vbreal (Post 1574648)
thanks for the reply.

it not being supported is the problem. its a great theme but there are a few things about it that urk me like when u make a new thread or reply it shows the WYSIWYG. i like how urs doesn't.

Hey if you do the edit dartho put up would you mind putting a screenshot?

I put up the iphone style (modified) for the iphone on my site. Would be nice if i could enable both.

cygy2k 07-19-2008 02:16 AM

The way I have it integrated is just in vBAdvanced where you can select the pages for it to integrate with. If you don't use vBA, I can give you AdminCP login info to see how it works.

Thanks so much for supporting this great style!

dartho 07-19-2008 02:45 AM

PM me some login & site details - i'll need style manager admin access

May not do till tomorrow though

InoffLine 07-27-2008 06:08 AM

is it possible to make a php include in the skin?
For example with the help of hooks in global start

dartho 07-27-2008 09:06 AM

You can't include PHP in the style itself, but you can use plugins to execute PHP script as you've suggested with plugins on global_start

dartho 07-28-2008 02:41 AM

Updated to version 0.0.10a
Fixed small bug in Footer template which may affect those who use the "extend Mobile Style" add-on in conjunction with this style who choose to include a link to the default style in the footer.

To manually correct bug, edit your footer template and replace
Code:

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

Code:

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

Stryker412 07-28-2008 04:45 PM

Quote:

Originally Posted by dartho (Post 1570033)
Which chatbox are you using? I'll check its instructions and let you know what you can do...

Was there a solution for this?

I'm using Cybernetic version.

dartho 07-28-2008 10:14 PM

Edit the 4 Cybernetec Chatbox Plugins and add
Code:

if (STYLEID!=xx){
at the very top where xx is teh STyleID number of the mobile style

and
Code:

}
at the very end

Jase2 07-30-2008 04:51 PM

dartho, one of my member's reported a bug. He said he got a javascript error when he received a new PM -- any ideas?

dartho 07-30-2008 10:09 PM

That'd be the PM notifictaion popup causing his error at a guess. What's the error and does this user have a unique device among your userbase? I doubt I'll be able to do much other than remove the pm popup script altogether - this section of code has not been changed from the original vBulletin

If the error bugs them, suggest they turm off "Show New Private Message Notification Pop-up" in "Edit Options" in their usercp.

Roxie 07-31-2008 03:19 AM

Using MGC Chatbox.

Also wish to add image in header.

Roxie 07-31-2008 03:36 AM

Nevermind. I figured out the image in the header....

dartho 07-31-2008 04:13 AM

Check post 292 (up about 4) for what you can do to stop teh chatbox - this should be applicable to any addon that uses plugins...

Tralala 07-31-2008 06:41 AM

Quote:

Originally Posted by vbreal (Post 1574648)
its a great theme but there are a few things about it that urk me like when u make a new thread or reply it shows the WYSIWYG. i like how urs doesn't.

speaking of that other (iPhone optimized) theme, that issue was a peeve of mine too, but thanks to dartho I was able to fix it. I passed along the tip in that other thread.

Roxie 07-31-2008 08:22 PM

Quote:

Originally Posted by dartho (Post 1588023)
Check post 292 (up about 4) for what you can do to stop teh chatbox - this should be applicable to any addon that uses plugins...

I did that, but it stopped the chat from appearing on the forum home. Not sure why. hmmm

BTW, I got this theme looking great! Go to daboard.com (via phone) to see.

dirtycrow 08-01-2008 01:01 AM

i am running these two mods on my site Ap - Latest Album Pictures Comments - Forum Home & Latest Album Pictures - Forum Home

i would like them not to appear on the mobile theme. any suggestions?

dartho 08-01-2008 03:33 AM

You could try creating a new plgin on style_fetch called "Disable Hacks for Mobile Style", execution order 6 with the following code:
Code:

if (STYLEID==xx){
$vbulletin->options['afm_onoff']=0;
$vbulletin->options['ap_album_comments_onoff']=0;
}

@Roxie - same as above - the following may work for disabling MGC Chatbox

Code:

if (STYLEID==xx){
$vbulletin->options['mgc_cb_evo_active']=0;
}

Where xx is the styleid number of your mobile style

let me know if this helps...

dartho 08-01-2008 10:35 PM

I've updated the Mobile Style Addon to include a section where you can enter PHP code to unwanted disable addons with in teh mobile style.

Roxie 08-03-2008 03:47 PM

Thanks!

cfrench 08-07-2008 12:40 AM

I am having a issue with the page not reloading to show the post. You have to refresh the page yourself to see it there. Also when I hit new posts it will show a person posted on a thread but when I pull up the thread it doesn't show that person has posted unless I refresh again. Any Idea's? I don't have this problem on my normal site while on the computer.

cfrench 08-07-2008 11:13 PM

Anyone?

dartho 08-08-2008 12:13 AM

Not sure, sounds like caching issue with either your browser or your server. does it do the same when browsing your site using this style from a desktop PC?

cfrench 08-08-2008 01:43 AM

No, this is an issue only with the mobile site. I did switch the style over to be used on the desktop and it acts fine. I tried switching to the old mobile style and its still an issue. Which is weird, you would think I would be having this issue with the main site on the computer.

EvilJohn 08-09-2008 01:37 AM

Thanks, installed.

myown 08-09-2008 10:03 AM

invalid file specified getting this error when trying to install mod

dartho 08-09-2008 10:55 AM

Did you import it as a style? Using the product system won;t work...

lim(x?-5x?) = ∞ 08-11-2008 12:43 PM

Very strange, why all smiles have ":-)" after image?

It looks very strange, like: "https://vborg.vbsupport.ru/external/2008/12/24.gif:-)"

May be its better to have option to use enable/disable smiles (unless user select not default forum value for smile display)

dartho 08-11-2008 09:43 PM

That is rather strange, I've not had any reports of it happening before. Perhaps another add-on or replacement variable is conflicting?

obmob 08-12-2008 02:17 PM

Thanks, i'll test this :D

mystic10 08-12-2008 06:11 PM

anyone is using i would like to see their site..if they can post a link...b4 i use it thanks

MissKalunji 08-12-2008 06:25 PM

<a href="http://www.dancehallareaz.com/forum" target="_blank">www.dancehallareaz.com/forum</a>

jbeam 08-18-2008 02:24 PM

Would it be possible to put a link in place of where images should be? If the user clicks on the link it would load the image.

Majority of the users love this template, but a few have shown dissatisfaction with the inability to view images.

holwebs 08-18-2008 09:05 PM

Hi,

I've installed this style first on my test forum as I primarily want to use it myself as administrator/moderator when I'm out & about. I haven't yet managed to find any of the moderator functions either inline or via the User CP using this style.

Is this possible as this is one of the main reasons why I wanted to install it. Thanks.

dartho 08-19-2008 12:48 AM

@jbeam - it should currently place a link where images should be with the text Image
@holwebs - the only moderator functions are to delete and edit posts/threads

I doubt I'll add more - but out of interest, which mod tasks would you want to see?

holwebs 08-19-2008 10:45 AM

I just need to be able to approve posts as delete is already there but the best option would be access to "threads/posts to moderate" option. Thanks.

jbeam 08-19-2008 01:29 PM

Quote:

Originally Posted by dartho (Post 1601958)
@jbeam - it should currently place a link where images should be with the text Image

Hmmm, my install does not. It just leaves a blank space. I'll look into this, I might not have the newest version.


All times are GMT. The time now is 01:09 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.01524 seconds
  • Memory Usage 1,829KB
  • 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
  • (6)bbcode_code_printable
  • (1)bbcode_html_printable
  • (5)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