Sponsored Content
The Lounge What is on Your Mind? Emergency Support Forum usage Post 303026972 by Neo on Thursday 6th of December 2018 12:49:38 AM
Old 12-06-2018
Here is the current jQuery Javascript code regarding the forum home page collaspeing menus:

Code:
$("#neo_forum_home_icons").hide();
  if (vbuserId > 0) {
    $("#collapseobj_forumbit_18,#collapseobj_forumbit_78").hide();
    $("#collapseobj_forumbit_32,#collapseobj_forumbit_53").hide();
    $("#collapseobj_forumbit_42,#collapseobj_forumbit_149").hide();
    $("#collapseobj_forumbit_37").hide();
  } else {
    $("#collapseobj_forumbit_32,#collapseobj_forumbit_53").hide();
    $("#collapseobj_forumbit_42,#collapseobj_forumbit_149").hide();
    $("#collapseobj_forumbit_37").hide();
    $("#neo_forum_home_icons").hide();
  }

Quick reference:
  • 18: Contact Us
  • 32: Speciality Forums
  • 37: Standards
  • 42: Operating Systems
  • 53: Lounge
  • 78: HQ
  • 149: Homework and Emergencies

I will change this to see if we get more posters in the Emergency forum:

Code:
$("#neo_forum_home_icons").hide();
  if (vbuserId > 0) {
    $("#collapseobj_forumbit_18,#collapseobj_forumbit_37").hide();
    $("#collapseobj_forumbit_32,#collapseobj_forumbit_53").hide();
    $("#collapseobj_forumbit_42,#collapseobj_forumbit_149").hide();
  } else {
    $("#collapseobj_forumbit_53, #collapseobj_forumbit_37").hide();
    $("#collapseobj_forumbit_18, #neo_forum_home_icons").hide();
  }

Most members look at the new posts from the stats on the home page or the today's post links so there is no reason to show all of these forums by default to registered users. However, if anyone wants to show these forums by default, let me know and I will set up a localStorage() boolean which you can set from "somewhere" TBD.

REF:

Code:
https://www.unix.com/clientscript/jquery/neo_forumhome_min.js

 

4 More Discussions You Might Find Interesting

1. Filesystems, Disks and Memory

Computek Support Forum

Do Floppy disks require drivers. I forgot, and one of my customers wants to know.:confused: :( :confused: :confused: (3 Replies)
Discussion started by: computek
3 Replies

2. Emergency UNIX and Linux Support

User Guide: Posting in the Emergency Forum

Emergency UNIX and Linux Support !! Help Me! Forum (Request Urgent Help) README FIRST: How to Request Emergency or Urgent Help: You may post emergency work-related questions in the emergency forum. To post in this forum you will need to use your Bits. All questions answered on a "best... (0 Replies)
Discussion started by: Neo
0 Replies

3. Post Here to Contact Site Administrators and Moderators

Emergency Forum Posting Problem

Regarding this thread: it's not possible for me to reply to it. According to the guide, the only official restriction is placed on posting new threads, not replies. Bug or undocumented "feature"? (4 Replies)
Discussion started by: pludi
4 Replies

4. UNIX for Dummies Questions & Answers

forum for ncurses support?

Hi, all - New to ncurses, rusty as hell with UNIX, I"m sure I'm going to have lots of questions. What forum is best for ncurses questions? Currently I'm experiencing configuration issues (I believe). I'm running Mac 10.6, and using the Terminal utility. Thanks! (3 Replies)
Discussion started by: mzimmers
3 Replies
oggz-diff(1)						      General Commands Manual						      oggz-diff(1)

NAME
oggz-diff -- Hexdump the packets of two Ogg files and output differences SYNOPSIS
oggz-diff [options] [OGGZDUMP_OPTIONS] [DIFF_OPTIONS] file1.ogg file2.ogg options: [--verbose ] [-v | --version ] [-h | --help ] OGGZDUMP_OPTIONS: [-b | --binary ] [-x | --hexadecimal ] [-c content-type | --content-type content-type ] [-s serialno | --serialno serialno ] [-O | --hide-offset ] [-S | --hide-serialno ] [-G | --hide-granulepos ] [-P | --hide-packetno ] DIFF_OPTIONS: [-q | --brief ] [-C NUM | --context[=NUM] ] [-u | -U NUM | --unified[=NUM] ] [-e | --ed ] [--normal ] [--rcs ] [-y | --side-by-side ] [-l | --paginate ] Description oggz-diff is a sh script which uses oggz-dump to generate hexadecimal packet dumps of each input file, then outputs the difference between these dumps using diff. Options oggz-diff forwards a subset of options accepted by oggz-dump and diff. See oggz-dump(1) and diff(1) for more detail. oggz-dump format options -b, --binary Generate a binary dump of each packet -x, --hexadeciaml Generate a hexadecimal dump of each packet oggz-dump filtering options -c content-type, --content-type content-type Dump only the logical bitstreams for a specific content-type. Run oggz-known-codecs(1) for a full list of codecs known by the installed version of oggz. -s serialno, --serialno serialno Dump only the logical bitstream with specified serialno. -O, --hide-offset Hide the byte offset field of the preamble for each packet dumped. This is particularly useful when comparing Ogg bitstreams that differ only in page structure. -S, --hide-serialno Hide the serialno field of the preamble for each packet dumped. This is particularly useful when comparing Ogg bitstreams that differ only in serialno assignment. -G, --hide-granulepos Hide the granulepos field of the preamble for each packet dumped. -P, --hide-packetno Hide the packetno field of the preamble for each packet dumped. diff options The -w (--ignore-all-space) option to diff is always implied. -q, --brief Output only whether files differ. -C NUM, --context[=NUM] Output NUM lines of copied context. -u, -U NUM, --unified[=NUM] Output NUM (default 3) lines of unified context. -e, --ed Output an ed script. --normal Output a normal diff. --rcs Output an RCS format diff. -y, --side-by-side Output in two columns. -l, --paginate Pass the output through pr to paginate it. Miscellaneous options --verbose Display verbose messages. -v, --version Display version information and exit. -h, --help Display usage information and exit. AUTHOR
Conrad Parker COPYRIGHT
Copyright (C) 2003 CSIRO Australia SEE ALSO
oggz-dump(1), diff(1), patch(1) oggz-diff(1)
All times are GMT -4. The time now is 07:46 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy