Emergency Support Forum usage


 
Thread Tools Search this Thread
The Lounge What is on Your Mind? Emergency Support Forum usage
# 8  
Old 12-05-2018
I note that I was able to successfully create a thread and that 20000 bits was removed from my checking account. But, that 20000 bit charge does not show up in the Transaction Log on my Bank Accounts page.

Shouldn't that purchase show up in the Transaction Log?
# 9  
Old 12-05-2018
Probably should but I have more important features to code and I don't think anyone else is going to code the fix.

The point of testing was to see if it was working. Since it is working the same has it always has worked since day one, obviously it is not the technology which is causing less people to use it.

I am pretty sure the reason is that that forum is not easily visible with the forum view collapsed, since I made those jQuery changes; and frankly, I am OK with that.
# 10  
Old 12-05-2018
I may change (open up) a few collasped forums on the home page so see if increasing the visibility has any effect on this.
# 11  
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

Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. 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

2. 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

3. 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

4. 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
Login or Register to Ask a Question