Whizark
Whizark
I have faced the same issue. Embedding Web fonts as Data URI ([as janmus mentioned](https://github.com/cburgmer/rasterizeHTML.js/issues/166#issuecomment-264897872)) solves the issue on Chrome 78, Firefox 69. Polling with Server-side sleep script also solves...
@Mte90 Some DB queries can be replaced/improved with WP_Site_Query, and WP_Network_Query is useful if we want network-specific query such `network__in`, `network__not_in`, but it is not implemented yet.
That's the same motivation that I have created this plugin although I haven't used it for some time. Any PRs (or Issues if exists) are welcome :)
@vguenichon Hi, doesn't the query work with simple parameters either? `wp_reset_postdata()` should be placed inside `if ( $all_events->have_posts() ) { ... }` because you don't need to reset post data...
@vguenichon Hmmm, is the WP version the latest one (4.8.1)? How about the following code? ```php $output = ''; if ( $all_events->have_posts() ) { $output .= ''; while ( $all_events->have_posts()...
> Well... it's working very well. When I tried on another browser with which I had not previously visited the page, the results are fine. That's good to hear :smile:...
> I'm sorry but I have some problems with a cache plugin yet deactivated on a website (not the main where the query is played). Ah, a cache plugin could...
> These variables will be filled via a shortcode. This code takes place in a shortcode. Are the variables actually filled? The attribute values are filled in `$atts` (`$atts['order']` etc.)...
Thank you for posting the complete function :+1: Although I'm not very familiar with Visual Composer, the problem might be related to Visual Composer or something else. I'll also test...
> The only difference is the filter after to pass the function to another function of Visual Composer (the one which will do the UI). I confirmed that the shortcode...