Pawel Grzelkowski
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Ajax Post Loader] How to exclude some categoriesThis issue has been marked as resolved. Thank you!
- This reply was modified 11 months, 4 weeks ago by Pawel Grzelkowski.
Forum: Plugins
In reply to: [Quick Ajax Post Loader] How to exclude some categoriesHi, I’ll go ahead and mark this as resolved. I hope the issue is sorted and that you’re happy with it!
- This reply was modified 11 months, 4 weeks ago by Pawel Grzelkowski.
Forum: Plugins
In reply to: [Quick Ajax Post Loader] How to exclude some categoriesHi! I’ve just released version 1.7.0, which lets you choose exactly which categories or terms should be shown. Take a look at the shortcode settings – there should be a new option called “Select Specific Terms”
Let me know if this is what you needed and feel free to tell me if anything doesn’t work as expected!
Forum: Plugins
In reply to: [Quick Ajax Post Loader] Blurry imagesHey, you can also do this without duplicating the template file 🙂
If you drop this into your
functions.php, it’ll force the post image to use the full size:function customize_post_image( $output, $template, $quick_ajax_id ) {
if ( $template === 'post-item' ) {
if ( has_post_thumbnail() ) {
$output = '<div class="qapl-post-image">' . get_the_post_thumbnail( get_the_ID(), 'full' ) . '</div>';
}
}
return $output;
}
add_filter( 'qapl_template_post_item_image', 'customize_post_image', 10, 3 );Forum: Plugins
In reply to: [Quick Ajax Post Loader] How to exclude some categoriesHi, thanks for your message. Excluding selected categories is not possible yet, but I think it’s a great idea and I’ll try to add it in a future update. A “show selected categories” option, or something similar, could help with that by letting you choose which categories appear in the filter and in the results.