• Resolved jkerksick

    (@jkerksick)


    Is there a way to customize my File Away table to just display the folders and files, without having the “type” column that displays the icon and document description? I tried adding type=”no” to the shortcode but it didn’t work. Please advise!

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author thomstark

    (@thomstark)

    Add this to your Custom Styles on the File Away settings page:

    th.ssfa-sorttype,
    td.ssfa-sorttype
    {
        display:none!important;
    }
    • This reply was modified 9 years, 5 months ago by thomstark.
    Thread Starter jkerksick

    (@jkerksick)

    Thank you, that worked. Is there a way to isolate it to one table or one page? I use File Away on most pages on my website but only want the changes applied to one table.

    Plugin Author thomstark

    (@thomstark)

    Yes, absolutely.

    To your fileaway shortcode, add: name="MyClassThatINamedThis"
    e.g.:

    [fileaway type="table" name="MyClassThatINamedThis"]

    Then change your custom css to this:

    div#MyClassThatINamedThis th.ssfa-sorttype,
    div#MyClassThatINamedThis td.ssfa-sorttype
    {
        display:none!important;
    }

    Obviously you can use whatever name you want, doesn’t have to be “MyClassThatINamedThis”. Just all one word, no spaces.

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Remove document “type” column’ is closed to new replies.