diff --git wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php
index 70026b76e..e5368300d 100644
--- wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php
+++ wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/includes/source-site-id-setting.php
@@ -110,9 +110,26 @@ class Source_Site_ID_Setting extends \WP_Customize_Setting {
 	 *
 	 * @param int $source_site_id
 	 *
-	 * @return null
+	 * @return void
 	 */
 	protected function update( $source_site_id ) {
+
+		// Import css from source site to current site.
+		$this->import_css( $source_site_id );
+
+		// Import menus from source site to current site.
+		$this->import_menus( $source_site_id );
+
+	}
+
+	/**
+	 * Import CSS from source site to current site.
+	 *
+	 * @param int $source_site_id ID of source site.
+	 *
+	 * @return void
+	 */
+	protected function import_css( $source_site_id ) {
 		switch_to_blog( $source_site_id );
 
 		$source_site_theme_mods = get_theme_mod( 'jetpack_custom_css' );
@@ -164,4 +181,134 @@ class Source_Site_ID_Setting extends \WP_Customize_Setting {
 		set_theme_mod( 'jetpack_custom_css', $source_site_theme_mods );
 		wp_update_custom_css_post( $source_site_css );
 	}
+
+	/**
+	 * Import menus from source site to current site.
+	 *
+	 * @param int $source_site_id ID of source site.
+	 *
+	 * @return void
+	 */
+	protected function import_menus( $source_site_id ) {
+		switch_to_blog( $source_site_id );
+
+		// Get all menus from source site.
+		$menus = wp_get_nav_menus();
+
+		if ( empty( $menus ) || is_wp_error( $menus ) ) {
+			restore_current_blog();
+			return;
+		}
+
+		$menu_items = array();
+
+		// Get page post type menu items of all menus.
+		foreach ( $menus as $menu ) {
+			$items = wp_get_nav_menu_items( $menu->term_id );
+
+			if ( empty( $items ) ) {
+				continue;
+			}
+
+			foreach ( $items as $item ) {
+				if ( 'post_type' !== $item->type || 'page' !== $item->object ) {
+					continue;
+				}
+				// Get page slug to get same page from current site.
+				$item->object_slug = get_post_field( 'post_name', $item->object_id, 'db' );
+
+				$menu_items[ $menu->term_id ][] = $item;
+			}
+		}
+
+		// Get menu locations from source site.
+		$menu_locations = get_nav_menu_locations();
+
+		restore_current_blog();
+
+		$this->create_menus( $menus, $menu_items, $menu_locations );
+	}
+
+	/**
+	 * Create menus and add menu items
+	 * Also set menu locations as per source site.
+	 *
+	 * @param array $menus          Menus of source site.
+	 * @param array $menu_items     Menus items of source site.
+	 * @param array $menu_locations Menu locations of source site.
+	 *
+	 * @return void
+	 */
+	protected function create_menus( $menus, $menu_items, $menu_locations ) {
+		$ref = array();
+
+		// Create menu and add it's menu items which exists in destination site.
+		foreach ( $menus as $menu ) {
+			$new_menu_id = wp_create_nav_menu( $menu->name );
+
+			if ( is_wp_error( $new_menu_id ) ) {
+				continue;
+			}
+
+			// Save new menu id reference for old menu id. Use to set menu location.
+			$ref[ $menu->term_id ] = $new_menu_id;
+
+			$menu_position = 1;
+
+			$args = array(
+				'menu-item-position'   => $menu_position,
+				'menu-item-type'       => 'custom',
+				'menu-item-title'      => __( 'Home', 'wordcamporg' ),
+				'menu-item-attr-title' => __( 'Home', 'wordcamporg' ),
+				'menu-item-url'        => home_url( '/' ),
+				'menu-item-status'     => 'publish',
+			);
+			wp_update_nav_menu_item( $new_menu_id, 0, $args );
+
+			if ( empty( $menu_items[ $menu->term_id ] ) ) {
+				continue;
+			}
+
+			foreach ( $menu_items[ $menu->term_id ] as $menu_item ) {
+
+				// Check whether source site page exist in current site.
+				$page = get_page_by_path( $menu_item->object_slug );
+
+				if ( empty( $page ) ) {
+					continue;
+				}
+
+				$menu_item_title = ( ! empty( $menu_item->post_title ) ) ? $menu_item->post_title : $page->post_title;
+
+				$menu_position++;
+
+				$args = array(
+					'menu-item-position'    => $menu_position,
+					'menu-item-type'        => 'post_type',
+					'menu-item-object'      => 'page',
+					'menu-item-object-id'   => $page->ID,
+					'menu-item-title'       => $menu_item_title,
+					'menu-item-attr-title'  => $menu_item_title,
+					'menu-item-url'         => get_page_link( $page->ID ),
+					'menu-item-status'      => 'publish',
+					'menu-item-description' => $menu_item->description,
+					'menu-item-target'      => $menu_item->target,
+					'menu-item-classes'     => $menu_item->classes,
+					'menu-item-xfn'         => $menu_item->xfn,
+				);
+				wp_update_nav_menu_item( $new_menu_id, 0, $args );
+
+			}
+		}
+
+		// Set menu to same menu location as source site.
+		if ( ! empty( $menu_locations ) ) {
+			foreach ( $menu_locations as $menu_location => $menu_id ) {
+				$menu_locations[ $menu_location ] = $ref[ $menu_id ];
+			}
+			set_theme_mod( 'nav_menu_locations', $menu_locations );
+		}
+
+	}
+
 }
diff --git wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/wordcamp-site-cloner.php wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/wordcamp-site-cloner.php
index 61aa23047..7e85a0252 100755
--- wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/wordcamp-site-cloner.php
+++ wordcamp.org/public_html/wp-content/plugins/wordcamp-site-cloner/wordcamp-site-cloner.php
@@ -26,7 +26,7 @@ function initialize() {
 
 	add_action( 'admin_enqueue_scripts', __NAMESPACE__ . '\register_scripts'               );
 	add_action( 'admin_menu',            __NAMESPACE__ . '\add_submenu_page'               );
-	add_action( 'customize_register',    __NAMESPACE__ . '\register_customizer_components' );
+	add_action( 'customize_register',    __NAMESPACE__ . '\register_customizer_components', 12 );
 	add_action( 'rest_api_init',         __NAMESPACE__ . '\register_api_endpoints'         );
 	add_action( PRIME_SITES_CRON_ACTION, __NAMESPACE__ . '\prime_wordcamp_sites'           );
 
