• Resolved lixkamto

    (@lixkamto)


    Try to fix to change the path also in the admin dashboard, and all 404 wp-plugins rewrite gone. dashboard look normal with add this line in wp-config.php

    define('HMW_ALWAYS_CHANGE_PATHS', true);

    but this trouble come again when i was edit page using Beaver builder, url wp-plugins come again without rewrite.

    *My Custom plugins Path already on set with custome name, and in frontend work normal.

    My question is, how to fix all 404 wp-plugins non rewrite in dashboard?

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support Peter

    (@petersquirrly)

    Hi @lixkamto ,

    Hide My WP Ghosts changes the paths only on the frontend of your website, we don’t have the option to do it for the WP backend and neither recommend it as it can cause issues.

    Let us know if you have any other questions.

    Thread Starter lixkamto

    (@lixkamto)

    @petersquirrly remove version css/js already fix 404 problem on my dashboard

    // remove wp version number from scripts and styles
    function remove_css_js_version( $src ) {
        if( strpos( $src, '?ver=' ) )
            $src = remove_query_arg( 'ver', $src );
        return $src;
    }
    add_filter( 'style_loader_src', 'remove_css_js_version', 9999 );
    add_filter( 'script_loader_src', 'remove_css_js_version', 9999 );

    thanks all.

    Plugin Support Peter

    (@petersquirrly)

    Glad to hear that you figured it out!

    If anything else comes up, don’t hesitate to reach out.

    • This reply was modified 1 year, 10 months ago by Peter.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Dir wp-plugins load as 404, when log as admin’ is closed to new replies.