• 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 to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter Greenlaw

    (@greenlaw)

    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!

    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 4 years, 7 months ago by threeboy.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Webcomic and Tags Problem’ is closed to new replies.