Jump to content

Display tweaks for new forum software!


Isaac

Recommended Posts

The new forum software rocks!  that being said, i found I was missing some old links i commonly use.  i also didnt really like the wasted space w/ redundant timeline... So I made a user-install-able tweak.  If you know how to use tampermonkey/greasemoneky, heres the script.  If you dont, google it :) 

This script DOES NOT do anything to the data on the server, just changes how it looks on your browser only.  

// ==UserScript==
// @name        ARC Display Tweaks
// @namespace   http://www.austinreefclub.com
// @include     http://www.austinreefclub.com/*
// @version     1
// @grant       none
// ==/UserScript==
//
// add my content & new since last visit
//
$("ul.ipsList_inline.ipsPos_right").prepend('<li><a data-action="defaultStream" class="ipsType_light " href="http://www.austinreefclub.com/discover/6/"><i class="icon-newspaper"></i> <span>My Content</span></a></li>');
$("ul.ipsList_inline.ipsPos_right").prepend('<li><a data-action="defaultStream" class="ipsType_light " href="http://www.austinreefclub.com/discover/7/"><i class="icon-newspaper"></i> <span>New/unread since last visit</span></a></li>');
//
// remove streamtime
//
$(".ipsStreamItem_time").css("display","none");

There are a few things you need to do, before this works for you.  You need to create 2 custom streams that look like the 2 screen captures below (dont set either as default):

mycontent.png

sincelast.png

When you are in each stream, notice the URL bar: urlbar.png   This is your personal link to your custom stream.  You will need to update the link in the userscript code above accordingly.  find the "href" part of the line, and update the "discover" url w/ your new personal number!

So this now provides 2 new links:

newlinks.png

 

The last tweak depends on how you want to SEE the post lists.  here is the default "expanded" view:

expanded-time.png

and the "condensed" view:

condensed-time.png

 

See those "relative" times on the left?  they annoy me.  Their time is already listed in each listing, blah!  the last line in the script above removes those:

"expanded" w/ no relative times:

expanded-notime.png

"condensed" with no relative times:

condensed-notime.png

 

I use condensed w/ no time.   If you DONT like these, just prepend that line with // and it wont take effect! if you have ideas for other tweaks, shoot em over, I can try, but no promises :)

Again,  this script DOES NOT do anything to the data on the server, just changes how it looks on your browser only.  

Link to comment
Share on other sites

I PM'd Mike about this as well. But, I'm unable to change the Email notification setting on content that I follow. The option is grayed out in my notification settings. So basically I was getting an email update any time someone commented on any thread that I am subscribed to which is like 2,000 threads, so was getting obliterated by emails. I did unsubscribe from a few, but is there any way to turn off email notifications for updates on content we're subscribed to?

emails.PNG

Link to comment
Share on other sites

1 hour ago, jestep said:

I PM'd Mike about this as well. But, I'm unable to change the Email notification setting on content that I follow. The option is grayed out in my notification settings. So basically I was getting an email update any time someone commented on any thread that I am subscribed to which is like 2,000 threads, so was getting obliterated by emails. I did unsubscribe from a few, but is there any way to turn off email notifications for updates on content we're subscribed to?

emails.PNG

looks like a server config issue, mike/brian should be able to fix that if they find it.  its new to them too :)

2017-01-19_17-31-07.png

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...