MyBB Community Forums

Full Version: online location on own new subpage
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi

I have no idea how simple do this

i have new subpage

cards.php

<?php
define('IN_MYBB', 1); 
require "./global.php"; 
 
add_breadcrumb("Cards", "cards.php");
 
eval("\$podstr = \"".$templates->get("podstrona")."\";"); /
output_page($podstr); 
?>

if user action is "cards.php" in online.php I can see unknown location. How to change this "unknown location" to own text?
i must use fetch_wol_activity() but how?
I greet
You'll use two hooks in a plugin file: fetch_wol_activity_end and build_friendly_wol_location_end.

For an example of how to do this check out my Social Groups Plugin Repository.
thanks it helped