Hi
Thanks for the link to the KB. I have followed that article however the importer is stuck at 1% and the browse files doesn’t show anything?
Can you please assist?
Thanks
Leigh
Thank you very much!
Do you mean edit the mini-plugin’s code? If so, that’s not to great as we’ll have to keep track of the mods and refactor them in every time the plugin is updated on your side?
Can you add a setting to disable that output so it’s configurable via the dashboard / data rather than code modification?
It is the autoptimize plugin; the only diff between the dev mirror and production is that w3tc and autoptimize are disabled (and no cloudfront). Turning off CSS and HTML optimisation in autoptimize on production cleared the issues.
Hi Shaon,
Accordion is used in that same page http://www.trc.qld.gov.au/document-library/ ; however, as it breaks we have disabled it. Basically, the page should use the following markup:
<h2>Latest Documents by Category:</h2>
[wpdm-accordion]
<h2>Search All Documents:</h2>
[wpdm-all-packages items_per_page="25" jstable=1]
<script type="text/javascript">// <![CDATA[
jQuery(function($){
$('#wpdmmydls').DataTable().order( [ 2, 'desc' ] ).draw();
});
//
></script>
However, we have it just as :
<h2>Search All Documents:</h2>
[wpdm-all-packages items_per_page="25" jstable=1]
<script type="text/javascript">// <![CDATA[
jQuery(function($){
$('#wpdmmydls').DataTable().order( [ 2, 'desc' ] ).draw();
});
//
></script>
Right now because the accordion short code breaks the entire page.
Cheers for that Shaon,
Note, we’re not having trouble with the data table / all package display (we actually do a simple jquery inline to sort which does what you posted, but I’ll update per you post).
However, accordion display is NOT working. If we add the following before:
<h2>Latest Documents by Category:</h2>
[wpdm-accordion]
the
<h2>Search All Documents:</h2>
block all that displays on the page is the heading Latest Documents by Category:
Page rendering stops after that, including nothing from all packages shortcode.
Can you please take a look at that?
Confirmed, something is broken with accordion on our site since last update.
[wpdm-all-packages items_per_page="25" jstable=1 order_by="create_date" order="DESC"] is working fine; however, if we add [wpdm-accordion] first neither accordion nor all package render. With accordion left out all packages show.
Hello,
We are experiencing the same problem. I notice on Tribe’s forum Roberta has posted and they’ve advised to contact you per WPDM Pro. Any news on this and how we may get around it?
Never mind, details about the exploit were found here: http://blog.sucuri.net/2014/12/security-advisory-high-severity-wordpress-download-manager.html
It is good to know exactly what the attackers did & we can now stop guessing now.
Constructive feedback:
Thank you,
We’ve solved it for now via a script inject after the short code:
<script type='text/javascript'>
jQuery(function($){
$('#wpdmmydls').DataTable().order( [ 2, 'desc' ] ).draw();
});
</script>