can’t edit widgets after moving from subfolder to root

If anyone will ever have these issues, here are some solutions: deactivate WP UI plugin – but if you still want to use it, try to modify wp_register_script( ‘wpui-script-before’, site_url( ‘?wpui-script=before’ ), ___something___ ); to wp_register_script( ‘wpui-script-before’, home_url( ‘?wpui-script=before’ ), _____something_____ ); in: /wp-content/plugins/wp-ui/wp-ui.php /wp-content/plugins/wp-ui/admin/wpUI-options.php /wp-content/plugins/wp-ui/inc/widgets.php

Let custom text widget use the same font as the theme

UPDATE: You just have to put this code in your custom-css area in the wordpress customizer: .wpb_wrapper {font-family: playfair display;} But this will affect all items on your site with the CSS-Class “.wpb_wrapper” so maybe you should look for a way to specifice the CSS-Classes and CSS-IDs for single elements of your page if you … Read more