• Hi,
    It seems to me that since WordPress 6.6.2 I cannot use the Quick Edit link in the Articles section anymore, there’s no link on it, and that’s a little annoying.
    Any idea of what’s going wrong?
    Thanks a lot!!

    • This topic was modified 4 weeks, 1 day ago by eoik.
Viewing 6 replies - 1 through 6 (of 6 total)
  • Works for me without any problems. I would guess that a plugin you are using is interfering here. Deactivate all plugins as a test. If it then works, you can activate them one by one until you have found the culprit.

    Alternatively, it could also be the theme. You could switch to a standard theme.

    Thread Starter eoik

    (@eoik)

    Ok. I’ll try that. I tried to deeactivate some of the plugins (as ACF /SCF and Classic Editor for instance) but it did not work with no result, but I’ll try all of them. I’ll let you know.

    Thanks for answer.

    Hello @eoik ,

    Here’s a step-by-step solution for restoring the missing “Quick Edit” link in WordPress:

    Check for Plugin Conflicts: Temporarily deactivate all plugins, then check if the “Quick Edit” option appears. Reactivate plugins one by one to find the conflict.

    Switch to Default Theme: Temporarily switch to a default theme like Twenty Twenty-Three. If the “Quick Edit” appears, the issue lies within your custom theme.

    Clear Cache: Clear any caching plugins and CDN (like Cloudflare) caches to see if it resolves the issue.

    Check JavaScript Console: Open your browser’s developer console (F12) to check for JavaScript errors that might affect the “Quick Edit” link.

    Add Custom Code: Add the following code to your theme’s functions.php file to restore “Quick Edit”:

    Check for Role Restrictions: Ensure user roles haven’t disabled the “Quick Edit” feature if using a role management plugin.

    function ensure_quick_edit_support($actions, $post) {
    if ($post->post_type == ‘post’) {
    $actions[‘inline hide-if-no-js’] = ‘‘ . __(‘Quick Edit’) . ‘‘;
    }
    return $actions;
    }
    add_filter(‘post_row_actions’, ‘ensure_quick_edit_support’, 10, 2);

    Thread Starter eoik

    (@eoik)

    Hi,

    I deactivates all of the plugins, none seemed to be the culprit.

    Si II switched the theme : no change.

    Came back to my theme (20-21): it was back ! incredible !

    So I don’t really know what happened, but…. problem seems solved.

    Many thanks to you all for your help !

    threadi

    (@threadi)

    Sounds strange, yes, but I suspect some kind of cache as the reason. Nice if it works. You are welcome to set the topic to solved.

    ok, @eoik great your issue is resolved now.
    thank you @threadi.

Viewing 6 replies - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.