• Congrats, you have made may be the only plugin what works in front, and include all needed functions what there have to be. I see that plugin has not been updated lately, but as in common, if it works, do not change it.
    Plugin works fine with my site in common, but i noticed 2-issues, what i put to wish list:
    When there is huge amount of files in folder. For delete some of them. Like 250 of 2000 files, there comes a problem. Like to click 250 times delete? No. Second choise is delete all in bulk actions.
    ->How about. Bulk action gets items to delete from current page, what has been setted up to show like 20-rows per page. So selecting all from top checkbox, selects all from current page only?
    For mobile usage. Lightbox did not work in my android device with chrome. It can open image to new page, but only once. Behaviour of this is unstabile. But cannot say this as common issue without testing more.

    br,

    -matti

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

    (@thomstark)

    Hi. In Bulk Action Mode you can select multiple specific files by clicking on the desired table rows, if you weren’t aware.

    Thread Starter Matti Eronen

    (@masimies)

    Yes, but if there is like 250 removable.
    I’m using this for security cam, and it uploads those empty images quite a lot 😀
    Common view is great, but removing is hard job.
    Isn’t common “select all” work like so, that when you have query result, it selects only those items, what are queried?
    This plugin selects all in folder?

    Plugin Author thomstark

    (@thomstark)

    The table is generated by a third party plugin called FooTable. It is purely JavaScript, which means all the files are there, but all but 20 (or 10 or 15 or whatever your setting) are hidden from view.

    You had said you have to click delete 250 times and I was pointing out that there is an easier way than deleting 250 files individually.

    Thread Starter Matti Eronen

    (@masimies)

    Ok, the rest of rows are hidden.
    Yes, i ment that with bulk delete you have to click rows so many times that you have to delete.
    Yep. May be this is not suitable for security cams sending hundreds of images with windy day.

    Plugin Author thomstark

    (@thomstark)

    Here’s a hacky fix for your needs.

    Open up wp-content/plugins/file-away/lib/js/management.js

    Go to approximately line 967 and change this line:

    $('table.mngr-table tr[id^=ssfa-file-'+$uid+']').addClass('ssfa-selected');

    to this line:

    $('table.mngr-table tr[id^=ssfa-file-'+$uid+']:visible').addClass('ssfa-selected');

    Save the file. Then be sure to open that file up in your browser (view the page source, search for the text “management.js” and click on the link). Once it’s open in your browser, reload the file to clear your cache of that file. Then reload your file away page.

    Now it will only select the files currently visible in the table, so you’ll be able to do 20 at a time, or whatever your pagesize setting is.

    • This reply was modified 8 years, 10 months ago by thomstark.
    Thread Starter Matti Eronen

    (@masimies)

    Wow thanks,
    I test this later on.

    have a nice weekend,

    -matti

    Thread Starter Matti Eronen

    (@masimies)

    Oh yes, it’s working now as wanted!
    clever invention use that visible syntax in line!

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

The topic ‘Great file plugin, but one thing needed’ is closed to new replies.