Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Mobile phone

Asked Modified Viewed 2,832 times
S
Sladdaren
S
http://volvosweden.se - Forum för oss som kör Volvo
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 9 threads in the forums
  • Started this discussions
asked
Junior Member

is it possible to arrange so that you can upload photos from your mobile phone directly on the forum?
what is required?
0 replies

4 posts

F
Falk
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
answered
Super Admin

We have no current solution for this, but it is something we are currently looking at.
0 replies
S
Sladdaren
S
http://volvosweden.se - Forum för oss som kör Volvo
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 9 threads in the forums
  • Started this discussions
answered
Junior Member

Quote

Domi wrote:

We have no current solution for this, but it is something we are currently looking at.

Ok ty Domi :G.
0 replies
P
PolarFox
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
answered
Veteran Member

Mobile browser?
0 replies
H
HobbyMan
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
answered
Veteran Member

This is an excellent open source mobile detection script - mobiledetect.net that I've used on one of my sites. I have seen others but this one seems to be the most stable. GitHub

There are currently 2 ways (that I can think of) to optimise your PF site for mobile devices using a browser detection script.

1. Turning things off when viewed with a mobile device...
if ( !$detect->isMobile() ) { /* show this */  } 

But, it means modifying your core code which is always a bad idea because of the difficulty with upgrades. You could try just by developing a theme that decides what to show depending on the browser but that is still not really a full mobile site.

2. Creating a subdomain (http://m.yoursite.com/) as a separate site but running off the main database. You can then create a dedicated theme that displays just the way you want. The only core file you need to edit is themes/templates/header.php by adding...
require_once BASEDIR."browser_detect.php";


Both ways have their advantages and disadvantages. Personally, I prefer method 2 . It's more work than method one but you get greater control over your sites.
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 4 posts
  • Votes 0 votes
  • Topic users 4 members

4 participants

F
F
Falk 146
Need help?, Having trouble?
• View our Documentation for Guides, Standards and Functions
• Name and Organize your Topics and Content correctly in the corresponding Forums for best support results
• Attaching Log Files and Screenshots when reporting issues will help
• Provide with an URL to live example if one exists
• Please read the How to Report an Error post
• Please read and comply with the Code of Conduct

(¯·._.·(¯°·._.·°º*[ Project Manager ]*º°·._.·°¯)·._.·¯)
  • Super Admin, joined since
  • Contributed 6,201 posts on the community forums.
  • Started 639 threads in the forums
  • Answered 12 questions
H
H
Just some Guy
  • Veteran Member, joined since
  • Contributed 1,486 posts on the community forums.
  • Started 91 threads in the forums
P
P
  • Veteran Member, joined since
  • Contributed 1,633 posts on the community forums.
  • Started 29 threads in the forums
S
S
http://volvosweden.se - Forum för oss som kör Volvo
  • Junior Member, joined since
  • Contributed 28 posts on the community forums.
  • Started 9 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet