• Good day.

    New FSE themes have new customize page (site-editor.php). But for some tasks (setting custom logo, for example) the old page (customize.php) seems to be more familiar and comfortable.

    Is there way to have both links on Appearance/Themes page on the themes’ screenshots? “Customize” and “Properties”, for example? With links to site-editor.php and customize.php correspondly?

    Thank you in advance for any suggestions,
    Serge

    • This topic was modified 2 years, 8 months ago by Jan Dembowski. Reason: Moved to Fixing WordPress, this is not an Developing with WordPress topic
Viewing 2 replies - 1 through 2 (of 2 total)
  • No, there is currently no way to do that and I’m also unsure if there will ever be something like that for block themes. Just the basic things like the page logo you can also set via the new editor. If you want to use the customizer again, use a non-block theme in your project.

    Thread Starter Serge Gusev

    (@serge-gusev)

    Re: Just the basic things like the page logo you can also set via the new editor

    Unfortunately it doesn’t work for me – https://github.com/WordPress/gutenberg/issues/39913 . I’m sure the problem will be fixed, in the meantime this solution does work for me:

    function add_theme_settings_page() {
        add_theme_page( __('Theme settings', 'dental'), __('Theme settings', 'dental'), 'edit_theme_options', 'customize', 'theme_settings_page' );
    }
    add_action( 'admin_menu', 'add_theme_settings_page' );
    
    function theme_settings_page()
    {
        echo "<script>window.location.href='/wp-admin/customize.php'</script>";
    }
    • This reply was modified 2 years, 8 months ago by Serge Gusev.
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Old customize page for block theme’ is closed to new replies.