Sniper:
Thank you very very much.
For more than a year and watching your progress here to see what will be the final release . But some of my members asked about special edition of my site for mobiles.
So I installed it and I have some issues.
first of all :
posting_body.html has double inputs for signature.
- Code: Select all
<!-- IF S_SIG_ALLOWED -->
<tr class="row1">
<td><input type="checkbox" class="radio" name="attach_sig"{S_SIGNATURE_CHECKED} /></td>
<td class="gen">{L_ATTACH_SIG}</td>
</tr>
<!-- ENDIF -->
one in the first cell and the other below.
Second:
include/session.php
I have 'board3 Portal 2.0.0' version 2.0.0
which replaces this line in the session.php
this line
- Code: Select all
if (!empty($_GET['style']) && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
to this:
- Code: Select all
if (!empty($_GET['style']) && !defined('ADMIN_START') && $this->data['user_type'] != USER_IGNORE)
and the mobile style detect changes the line to this
- Code: Select all
// Setup for ?style=# to work for style viewing.
// if (!empty($_GET['style']) && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
if (!empty($_GET['style']))
after installing the mobile style detect the portal did not affect , but I am afraid there are something happened that I do not notice it yet.
Also about the switch to the standard style:
I have subsilver installed and active. style=2
prosilver installed and not active. style=3
and the new one installed and not active. style=4
and all my visitors and members forced them to use only the subsilver.
now when I installed the mobile style and the detect.
everything is ok except that any one can see the other styles even the desktop browsers.
if they click:
http://www.domain.com/forum/index.php?style=2 ............ will see the subsilver
http://www.domain.com/forum/index.php?style=3 .............will se the prosilver
http://www.domain.com/forum/index.php?style=4 .............will se the mobile
I tried through my PC and abled to see the three styles.
why this happened?
there is a mod for mobiles < 'phpBB Mobile' > for the author Callum95 .
he puts a link to disable the mobile style to switch to the standard style , and this way the auth of the viewing the style will not change and the visitors will always see the default style also the mobile. and if we want to see the mobile style the user should delete the cockies to detect the mobile once again.
I suggest you do something to disable enable the mobile style for the mobile users without changing this line:
- Code: Select all
if (!empty($_GET['style']) && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
Thank you very much
I