Symbian-Developers

Forum And Blog Information => Forum Support and News => Topic started by: Magissia on May 07, 2012, 06:59:36 pm

Title: Taptalk support
Post by: Magissia on May 07, 2012, 06:59:36 pm
Hello, it seems taptalk isn't supported for this forum,

any plans for that ?
Title: Re: Taptalk support
Post by: 5233user on May 08, 2012, 12:18:40 pm
I want tapatalk support too. Admins please add it!
Title: Re: Taptalk support
Post by: Allstar12345 on May 08, 2012, 12:42:48 pm
We have no plans to add this in the future.
Title: Re: Taptalk support
Post by: 5233user on May 08, 2012, 03:44:38 pm
We have no plans to add this in the future.
Any specific reason, buddy?
Title: Re: Taptalk support
Post by: vds5344 on May 08, 2012, 03:57:46 pm
tapatalk support for symbian is dropped. :(
Title: Re: Taptalk support
Post by: Magissia on May 09, 2012, 04:40:30 am
Maybe, but the website lag the hell out when writing from an arm device ...
Title: Re: Taptalk support
Post by: vds5344 on May 09, 2012, 07:41:31 am
well which arm device you're using? It's working fine on my phone. :)
Title: Re: Taptalk support
Post by: 5233user on May 09, 2012, 11:31:25 am
Maybe, but the website lag the hell out when writing from an arm device ...
Tapatalk doesn't at all lag. I'm also using an ARM based device.
Title: Re: Taptalk support
Post by: Magissia on May 13, 2012, 10:36:22 pm
Hello
The website writin' area lag, i wrote website, not taptalk.

Adding the taptalk plugin would probably increase the number and/or the frequency peoplecome rea the forum.

Regards
Title: Re: Taptalk support
Post by: vds5344 on May 13, 2012, 10:50:00 pm
hi there,
tapatalk has dropped support for symbian and most of users are using symbian and which isn't supported on their phones. Hope you get the point :)
Title: Re: Taptalk support
Post by: Magissia on May 20, 2012, 10:25:54 pm
Hello

Some user may want to use the forum with others devices too, yhink about it.

Still, i understand what you mean, you can close the thread if you will never add taptalk support.

Regards, Magissia
Title: Re: Taptalk support
Post by: sachinvermarip on May 20, 2012, 10:41:00 pm
Hello

Some user may want to use the forum with others devices too, yhink about it.

Still, i understand what you mean, you can close the thread if you will never add taptalk support.

Regards, Magissia
Admins reserve all the rights to make changes to forum, so decision of adding tapatalk support belongs to Admins
I will raise this topic in Staff chat, after that someone from staff will get back to you. :)
Title: Re: Taptalk support
Post by: UpakulRox on May 20, 2012, 10:59:10 pm
Well bro!
I would have gladly added that plugin.
But after adding it, the problem is everytime u open the site on a mobile browser, the annoying popup pops up that this forum is taptalk supported and do u want to download the app.
I just dont like this.
If there is a way to remove the popup. I will add taptalk support
Title: Re: Taptalk support
Post by: UpakulRox on May 20, 2012, 11:00:08 pm
And that popup is annoying coz most are symbian users here and taptalk has no support for symbian now
Title: Re: Taptalk support
Post by: Magissia on May 24, 2012, 07:22:11 pm
Hello

if it's only about that i'll look at it, i may be able to remove the lines related to the pop up

I'll need the exact version the forum is using, you can pm it if needed.
Title: Re: Taptalk support
Post by: Magissia on May 30, 2012, 07:25:45 am
Hello, to remove the popup you need to remove

./mobiquo/tapatalkdetect.js

and delete reference to it on the header.

The "up to date" file should not trigger on Symbian anyway (if i'm right)

Code: [Select]
function detectTapatalk() {
if (document.cookie.indexOf("tapatalk_redirect3=false") < 0) {

if (!navigator.userAgent.match(/Opera/i)) {

if ((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
setTapatalkCookies();
if (confirm("This forum has an app for iPhone and iPod Touch! Click OK to learn more about Tapatalk."))
window.location = "http://itunes.apple.com/us/app/tapatalk-forum-app/id307880732?mt=8";
} else if(navigator.userAgent.match(/iPad/i)) {
setTapatalkCookies();
if (confirm("This forum has an app for iPad! Click OK to learn more about Tapatalk."))
window.location = "http://itunes.apple.com/us/app/tapatalk-hd-for-ipad/id481579541?mt=8";
} else if(navigator.userAgent.match(/Kindle Fire/i)) {
setTapatalkCookies();
if (confirm("This forum has an app for Kindle Fire! Click OK to learn more about Tapatalk."))
window.location = "http://www.amazon.com/gp/mas/dl/android?p=com.quoord.tapatalkpro.activity";
} else if(navigator.userAgent.match(/Android/i)) {
setTapatalkCookies();
if (confirm("This forum has an app for Android. Click OK to learn more about Tapatalk."))
window.location = "market://details?id=com.quoord.tapatalkpro.activity";
} else if(navigator.userAgent.match(/BlackBerry/i)) {
setTapatalkCookies();
if (confirm("This forum has an app for BlackBerry! Click OK to learn more about Tapatalk."))  
window.location = "http://appworld.blackberry.com/webstore/content/46654?lang=en";
}
}
}
}

function setTapatalkCookies() {
var date = new Date();
var days = 90;
date.setTime(date.getTime()+(days*24*60*60*1000));
var expires = "; expires="+ date.toGMTString();
var domain = "; path=/";
document.cookie = "tapatalk_redirect3=false" + expires + domain;
}

detectTapatalk();

Regards