Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Simran Koushal

    (@simrankoushal)

    To show only the top-level parent category above the post title on your archive page, you’ll need to retrieve the post’s assigned categories, then trace back to the root parent and display only that. This ensures you’re not listing all categories or subcategories—just the main one. It’s great for clarity and keeping your archive layout clean.

    Simran Koushal

    (@simrankoushal)

    I recommend checking for any must-use plugins wp-content/mu-plugins/or scheduled cron jobs using a plugin like WP Crontrol, as these can force updates. You can also add a small custom plugin to block updates fully:

    add_filter( 'automatic_updater_disabled', '__return_true' ); add_filter( 'auto_update_core', '__return_false' ); add_filter( 'auto_update_plugin', '__return_false' ); add_filter( 'auto_update_theme', '__return_false' );

    Let me know if you’d like help implementing this.

    Forum: Fixing WordPress
    In reply to: White page
    Simran Koushal

    (@simrankoushal)

    The white screen after clicking “Publish” is likely caused by a plugin or theme that’s not fully compatible with PHP 8.2.

    To fix this, turn on WordPress debug mode to find the specific error.

    Make sure to update all your plugins, themes, and WordPress to the latest versions.

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