Title: Webcomic and Tags Problem
Last modified: May 26, 2020

---

# Webcomic and Tags Problem

 *  [Greenlaw](https://wordpress.org/support/users/greenlaw/)
 * (@greenlaw)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/webcomic-and-tags-problem/)
 * Hi Michael!
 * I hope you’re well. I’m glad to see Webcomic is still being developed and updated.
 * I have a question about using Tags for displaying comics with Webcomic. If you
   visit the Brudders page and click on any of the tags in the Tags Cloud, the page
   reports ‘Nothing Found. Sorry, but we can’t seem to find what you’re looking 
   for. Perhaps searching will help.’ It’s been a long time since I last checked
   this feature but I’m pretty sure it used to work as expected. Did this break 
   recently? Or is this user error on my part?
 * It’s possible that it’s the latter. I’ve neglected the website for a while and
   recently rebooted everything (main site and comics subsites) with a new look.
   If you any idea what’s going on, please let me know.
 * I also have a site design question but I’ll post that under a new topic later.
 * Thanks in advance for your help!
 * Greenlaw
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fwebcomic-and-tags-problem%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 2 replies - 1 through 2 (of 2 total)

 *  Thread Starter [Greenlaw](https://wordpress.org/support/users/greenlaw/)
 * (@greenlaw)
 * [5 years, 11 months ago](https://wordpress.org/support/topic/webcomic-and-tags-problem/#post-12916724)
 * For now, I’m just going to disable the feature. Let me know if you’d like me 
   to re-enable it for you to look at. Thanks!
 *  [threeboy](https://wordpress.org/support/users/threeboy/)
 * (@threeboy)
 * [5 years, 10 months ago](https://wordpress.org/support/topic/webcomic-and-tags-problem/#post-13096493)
 * I think I had a similar issue and used this code that was provided:
 *     ```
       // forces tags to work until webcomic plugin updated
       function hook_webcomic_force_taxonomy_archives( WP_Query $query ) : WP_Query {
           if ( $query->is_admin() || ! $query->is_main_query() || ! ( $query->is_tag() || $query->is_category() ) || $query->get( 'post_type' ) ) {
               return $query;
           }
   
           $query->set( 'post_type', array_merge( [ 'post' ], webcomic( 'option.collections' ) ) );
   
           return $query;
       }
   
       add_filter( 'pre_get_posts', 'hook_webcomic_force_taxonomy_archives' );
       ```
   
    -  This reply was modified 5 years, 10 months ago by [threeboy](https://wordpress.org/support/users/threeboy/).

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Webcomic and Tags Problem’ is closed to new replies.

 * ![](https://ps.w.org/webcomic/assets/icon.svg?rev=1810569)
 * [Webcomic](https://wordpress.org/plugins/webcomic/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/webcomic/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/webcomic/)
 * [Active Topics](https://wordpress.org/support/plugin/webcomic/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/webcomic/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/webcomic/reviews/)

## Tags

 * [tags](https://wordpress.org/support/topic-tag/tags/)

 * 2 replies
 * 2 participants
 * Last reply from: [threeboy](https://wordpress.org/support/users/threeboy/)
 * Last activity: [5 years, 10 months ago](https://wordpress.org/support/topic/webcomic-and-tags-problem/#post-13096493)
 * Status: not resolved