PDA

View Full Version : restrict tapatalk to certain forums


yjeanrenaud
01-23-2013, 04:39 PM
Hi,
I like the tapatalk plugin and the clients use my forum very well, but I would like to restrict them from accessing the areas that are containing lots of with attached images. so, certain subforums basically. and I would like to stop sending them the forum icons to save some load and bandwith, too. is this possible?

Simon Lloyd
01-23-2013, 06:52 PM
Maybe create a plugin with global_complete as the hook and use something like$notapatalkforums = array(23,24,46,45);

if (in_array($foruminfo['forumid'], $notapatalkforums) AND THIS_SCRIPT == 'mobiquo')
{
die("This particular forum cannot be accessed using Tapatalk");
}

yjeanrenaud
01-23-2013, 07:10 PM
great, thanks, will try this

Simon Lloyd
01-23-2013, 09:02 PM
Edited post above to include a message, although i doubt the tapatalk users will see it, worth a try though :)