tablelands regional council

Forum Replies Created

Viewing 13 posts - 1 through 13 (of 13 total)
in reply to: Exporting/Importing from one site to another #158007

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?

in reply to: Did WP 4.2.3 Break Shortcodes? #32439

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.

in reply to: Did WP 4.2.3 Break Shortcodes? #32412
This reply has been marked as private.
in reply to: Did WP 4.2.3 Break Shortcodes? #32392

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.

in reply to: Did WP 4.2.3 Break Shortcodes? #32374

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?

in reply to: Did WP 4.2.3 Break Shortcodes? #32327
This reply has been marked as private.
in reply to: Did WP 4.2.3 Break Shortcodes? #32272
This reply has been marked as private.
in reply to: Did WP 4.2.3 Break Shortcodes? #32108

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.

in reply to: Download Manager issue with Events Manager Pro #24273

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?

in reply to: 4.1.8 Security Fixes #23722

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:

  • Include details of the exploits in the change log. This helps greatly when identifying attack vectors.
  • Don’t use 2 different version numbering systems. I read the above security bulletin and ignored it because it didn’t correspond with the ‘Pro’ version numbering.
in reply to: Data Table Sort Column #22472

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>
Viewing 13 posts - 1 through 13 (of 13 total)