/*
Theme Name: Customify Child
Author: Wayne's Web World
Description: Child Theme for Customify by Wayne's Web World
Version: 1.0
Template: customify

This is the child theme for Customify theme, generated with Generate Child Theme plugin by catchthemes.

(optional values you can add: Theme URI, Author URI, License, License URI, Tags, Text Domain)
*/
add_action( 'init', function () {
	/**
	 * Fix 'Exit to Dashboard' button in Elementor.
	 */
	add_filter( 'elementor/document/urls/exit_to_dashboard', function ( $url, $doc ) {
		return get_admin_url();
	}, 10, 2 );
} );