KingWebsites

Results 5 comments of KingWebsites

To solve this issue I now add the following to my configuration ``` $.colorbox({ ... fixed: true, onOpen: function() { var ycoord = $(window).scrollTop(); $('#colorbox').data('ycoord',ycoord); ycoord = ycoord * -1;...

Just a quick additional note. The "post__not_in" works when applying the query to Timber::get_posts() in my archive-events.php ```php $context['events'] = Timber::get_posts([ 'post_type' => 'events', 'post_status' => 'publish', 'posts_per_page' => 2,...

Hi @Levdbas, thanks for responding. I think your comment raises a few things. 1. Thanks for letting me know I can change the default query arguments as I'm calling the...

Hi @Levdbas, using the merge_default method you mentioned above I have now got the 'post__not_in' argument to work, even if it doesn't work in 'pre_get_posts'. So if I remove my...

Thanks for looking into this @Levdbas, I do appreciate it. I don't think I'm running an additional query. If I see this behaviour again on a new site I'll make...