View Full Version : Mini Mods - Tapatalk - Better Who's Online (WOL)
Simon Lloyd
11-21-2011, 11:00 PM
What this mod does
This mod changes the location from "Unknown mobiquo/mobiquo.php" to an ad letting your mobile users know where they can get the app to view your forums on the go (http://www.tapatalk.com/mobile.php)
Features
There are no settable features and it will not show in your vBulletin Options
If you don't have Tapatalk on your forums it's real easy to implement (just upload 1 whole folder and add a line to header include) and for forum owners its free! http://www.tapatalk.com/plugin.php
First screenshot is before, second is after
Please mark as installed if you want any chance of support with this :)
Simon Lloyd
11-22-2011, 06:22 PM
***Reserved***
PPhysX
11-22-2011, 06:54 PM
Reserved
nerowolfe
11-22-2011, 07:36 PM
Ty +1k :)
Gorgias
11-22-2011, 08:06 PM
Install and working on 4.1.5 :)
Thanks!!!
ForceHSS
11-23-2011, 12:58 AM
made something like this myself only it just fixed that unknown location crap
this is the one I done kind of close to yours
<?xml version="1.0" encoding="ISO-8859-1"?>
<product productid="tapatalk_addon" active="1">
<title>Tapatalk</title>
<description>Tapatalk Addon</description>
<version>4.0</version>
<url><![CDATA[https://vborg.vbsupport.ru/showpost.php?p=2253833&postcount=618]]></url>
<versioncheckurl>http://www.vbulletin.org/</versioncheckurl>
<dependencies>
<dependency dependencytype="vbulletin" minversion="4.0" maxversion="" />
</dependencies>
<codes>
</codes>
<templates>
</templates>
<stylevardfns>
</stylevardfns>
<stylevars>
</stylevars>
<plugins>
<plugin active="1" executionorder="5">
<title>Tapatalk Online</title>
<hookname>online_location_process</hookname>
<phpcode><![CDATA[if($filename == 'mobiquo.php') $userinfo['activity'] = 'Tapatalk';]]></phpcode>
</plugin>
<plugin active="1" executionorder="5">
<title>Tapatalk Online Unknown</title>
<hookname>online_location_unknown</hookname>
<phpcode><![CDATA[if($userinfo['activity'] == 'Tapatalk')
{
$userinfo['where'] = '<a href="mobiquo/mobiquo.php?'.$vbulletin->session->vars[sessionurl].'">'.$vbulletin->options[bbtitle].' Tapatalk Browser</a>';
$userinfo['action'] = 'Viewing Location';
$handled = true;
}]]></phpcode>
</plugin>
</plugins>
<phrases>
</phrases>
<options>
</options>
<helptopics>
</helptopics>
<cronentries>
</cronentries>
<faqentries>
</faqentries>
</product>
Simon Lloyd
11-23-2011, 01:19 AM
Well thats all mine does really is just fix unknown location, im looking at creating a WOL for tapatalk so that it shows the actual location, it will have to be integrated with tapatalk files on my server as currently vbulletin IS showing the location as the file that is being viewed i.e mobiquo.php, when i spare moments i'll try to create something, i'll get in touch with Winter at tapatalk and see if they'll release the updated file after testing.....don't hold your breath though as im really busy at the moment.
ForceHSS
11-23-2011, 03:02 AM
For now I am happy with what I have
Rckcrwlr
11-23-2011, 09:57 AM
Looks good. thanks
Robru
11-23-2011, 04:33 PM
Great! thanks ;)
Sforums
11-24-2011, 01:54 AM
Thanks. And if you can fix what actual topics members viewing it would be even better.
Simon Lloyd
11-24-2011, 07:30 AM
Thanks. And if you can fix what actual topics members viewing it would be even better.
That will be some time because it means changing the mobiquo core files, as time allows i will work on that :)
lapiervb
12-19-2011, 09:24 AM
Thanks. And if you can fix what actual topics members viewing it would be even better.
Thats what we really need.
I.G.O.T.A.
01-03-2012, 04:00 PM
Installed, thanks.
Snowhog
06-09-2012, 08:29 PM
Installed. Thank you.
persianpros
06-09-2012, 08:39 PM
nice mod
do we need something similar for forumrunner too ?
ikorolis
01-21-2014, 01:39 PM
search to google and find this to add my vbulletin website and works fine.
ADMINCP >> PLUGIN & PRODUCTS >> ADD NEW PLUGIN
Product - Forum Runner
Hook Location - online_location_process
Title - Forum Runner - WOL Online Location
Execution Order - 5
Plugin PHP Code
PHP Code:
if($filename == 'mobile.php') $userinfo['activity'] = 'Forum Runner';
Plugin Active - YES
------------------------------------------------------------------------------------------------------
ADMINCP >> PLUGIN & PRODUCTS >> ADD NEW PLUGIN
Product - Forum Runner
Hook Location - online_location_unknown
Title - Forum Runner - WOL Online Location Unknown
Execution Order - 5
Plugin PHP Code
PHP Code:
if($userinfo['activity']=='Forum Runner')
{
$userinfo['where'] = '<a href="http://www.forumrunner.net/">Forum Runner</a>';
$userinfo['action'] = 'Forum Runner';
$handled = true;
}
Plugin Active - YES
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.