• Resolved manOmedia

    (@manomedia)


    Gotta say… Fileaway is quite cool…

    A site I am working on has several csv files being displayed. At the top left of the table is a link for downloading which I would like to remove or, in the worst case, edit.

    I can of course see it and change or delete it when I inspect the element but quite honestly, I don’t have a clue how to edit my custom fileaway theme to remove the link or change its formatting.

    Can someone help?

    Thanks, DP

    https://wordpress.org/plugins/file-away/

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter manOmedia

    (@manomedia)

    Been a few weeks with no thoughts on this question so I hope a bump will help…

    Plugin Author thomstark

    (@thomstark)

    Tried hiding it with css?

    Thread Starter manOmedia

    (@manomedia)

    Have to say that although I could easily hide it when investigating with the various source inspection tools, I was not knowledgeable enough to hide it using css.
    But a colleague assisted and came up with the following which does the trick. It is file specific so a line is needed for each csv source file:

    /*----- Hide specific Filewawy generated csv download links -----*/
    a[download="csvFileName#1.csv"],
    a[download="csvFileName#2.csv"] {
    display: none;
    }

    DP

    Plugin Author thomstark

    (@thomstark)

    Actually, you can just do this:

    div.ssfa-fileaway-values h3.ssfa-heading{
    	display:none!important;
    }
Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Remove csv downolad link or perhaps edit link’ is closed to new replies.