[DEV] jQ Who is where v.0.0.3
Posted: 21 Feb 2013, 18:59
EDIT: never mind
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
Come to think of it..I have this issue as wellBlackwolf wrote:Thanks for the update....appreciate it......still cant get the users off only showing on index though.
Guests show fine but not logged in users.
http://postimage.org/image/nlyuci24r/full/
NXB02 (TESTER) showed on correct forum for 15 seconds then just went to index.
http://postimage.org/image/re5cl8ftz/full/
I test the mod on multiple boards and different environments till it comes me out of my ears: zero defects or malfunction.4seven wrote:A clean java environment without any mix of java librarys (moo, JQ, whatever) is an ideality and self-evident. I never use a mix. I can build all things with one lib and the best is jQuery. Also, if i can build a script in classic JS, i never use any library. Not each function needs jQ. Anyway. User would be thankfull, if you can share your solution. The false of inserting double, triple instances of jQ must be clear. If any way, the jQ addition should also work with latest_min and not for a designated version. Find a code or update for this ones and all live in peace.
Code: Select all
//--- CONFIG AREA --
# show guests
//set false or true
$show_guests = true;
# show topic name
//set false or true
$show_topics = true;
# show forum name
# additional to topic name
# works only with $show_topics = false;
//set false or true
$show_forums = false;
# show post name
# cant be mixed with $show_forums = true; (check results)
# you can mix it with $show_topics = true;*
#*(results are in "first come, first serve" mode)
//set false or true
$show_posts = true;
# Anonymize some citys (leave array emtpty, if you dont need it)
# Otherwise use it this way: $ano_citys = array('Paris', 'Hamburg', 'Köln')
# The town will be overwritten with 'City' (language dependent)
$ano_citys = array('Paris', 'Hamburg');
$ano_repla = $user->lang['CITY'];
# you can mix it with $show_topics = true;*
# reminder
//think about sense and server load on all modes
//--- CONFIG AREA --
edit
, quote
, post
(means > new topic). reply
dont work (unknown reason). Working on it Code: Select all
// switch the on page thing
switch ($on_page[1])
{
Code: Select all
// new prevent
$active_post_mode = true;
Code: Select all
switch ($posting_mode)
{
Code: Select all
// new prevent
$active_post_mode = false;
Code: Select all
case 'ucp':
Code: Select all
// new prevent
$active_post_mode = false;
Code: Select all
# New Topic/Post Engine / 2012
// Show Topics
if($show_topics && !$show_forums)
Code: Select all
# New Topic/Post Engine / 2012
// Show Topics
if($show_topics && !$show_forums && $active_post_mode) //new prevent
Code: Select all
// Show Forums with Topics
if(!$show_topics && $show_forums && !$show_posts)
Code: Select all
// Show Forums with Topics
if(!$show_topics && $show_forums && !$show_posts && $active_post_mode) //new prevent
Code: Select all
// Show Post Names on Post Links
if($show_posts && !$show_forums)
Code: Select all
// Show Post Names on Post Links
if($show_posts && !$show_forums && $active_post_mode) //new prevent