main
side
curve
  1. In Memory of LAJ_FETT: Please share your remembrances and condolences HERE

7NS Issue: Can we somehow block "latest post" on the main page?

Discussion in 'Communications' started by Garth Maul, Aug 15, 2013.

  1. LAJ_FETT

    LAJ_FETT Tech Admin (2007-2023) - She Held Us Together star 10 VIP - Former Mod/RSA

    Registered:
    May 25, 2002
    Short answer is I don't know what Grimby did to shut latest post off in the first place. He didn't say and I can't find any options to do that. The 'What's New' display option is already shut off for the forum. I can't find anything on the Xenforo boards either. Unfortunately I don't have a login for the support boards - I think Grimby has that.
     
  2. jcgoble3

    jcgoble3 Chosen One star 6

    Registered:
    Nov 7, 2010
    It appears to be done with simple CSS, namely these lines at the very end of http://boards.theforce.net/css.php?css=xenforo,form,public

    Code:
    /* Hide "last thread" info for 7SA */
    li.node.forum.level_2.node_10864>div>div.nodeLastPost.secondaryContent>a {
    display:none;
    }
    The first portion of the selector is overly specific, which is why the issue still exists on the category view. Changing it to simply

    Code:
    /* Hide "last thread" info for 7SA */
    li.node_10864>div>div.nodeLastPost.secondaryContent>a {
    display:none;
    }
    should fix the issue completely.