/** * Theme functions and definitions. */ /* Set up the content width value based on the theme's design. */ if ( !function_exists('chromium_content_width') ) { function chromium_content_width() { $GLOBALS['content_width'] = apply_filters( 'chromium_content_width', 1200 ); } add_action( 'after_setup_theme', 'chromium_content_width', 0 ); } /* Adding additional image sizes. */ if ( function_exists( 'add_image_size' ) ) { add_image_size( 'chromium-recent-posts-thumb-s', 160, 190, true); add_image_size( 'chromium-recent-posts-thumb-m', 225, 267, true); add_image_size( 'chromium-recent-posts-thumb-top', 384, 216, true); add_image_size( 'chromium-gallery-s', 384, 216, true); add_image_size( 'chromium-gallery-m', 640, 360, true); add_image_size( 'chromium-gallery-l', 1024, 576, true); add_image_size( 'chromium-grid-blog', 350, 350, true); add_image_size( 'chromium-grid-blog-m', 600, 600, true); } /* Sets up theme defaults and registers support for various WordPress features. */ if ( ! function_exists( 'chromium_setup' ) ) : function chromium_setup() { // Translation availability load_theme_textdomain( 'chromium', get_template_directory() . '/languages' ); // Add default posts and comments RSS feed links to head. add_theme_support( 'automatic-feed-links' ); // Let WordPress manage the document title. add_theme_support( 'title-tag' ); // Enable support for Post Thumbnails on posts and pages. add_theme_support( 'post-thumbnails' ); add_image_size( 'post-thumbnail', 870, 350, true); // Custom Logo $logo_defaults = apply_filters( 'chromium-custom-logo-defaults', array( 'height' => 40, 'width' => 235, 'flex-height' => true, 'flex-width' => true, ) ); add_theme_support( 'custom-logo', $logo_defaults ); // Nav menus register_nav_menus( array( 'primary-nav' => esc_html__( 'Primary Menu (Under Logo Group)', 'chromium' ), 'logo-group-nav' => esc_html__( 'Logo Group Menu', 'chromium' ), ) ); // Enable support for Post Formats. add_theme_support( 'post-formats', array( 'aside', 'image', 'video', 'audio', 'quote', 'link', 'gallery', ) ); // 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' ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Enable woocommerce support add_theme_support( 'woocommerce' ); // Enable layouts support $chromium_default_layouts = array( array('value' => 'one-col', 'label' => esc_html__('1 Column (no sidebars)', 'chromium'), 'icon' => get_template_directory_uri().'/assets/img/one-col.png'), array('value' => 'two-col-left', 'label' => esc_html__('2 Columns, sidebar on left', 'chromium'), 'icon' => get_template_directory_uri().'/assets/img/two-col-left.png'), array('value' => 'two-col-right', 'label' => esc_html__('2 Columns, sidebar on right', 'chromium'), 'icon' => get_template_directory_uri().'/assets/img/two-col-right.png'), ); add_theme_support( 'chromium-layouts', apply_filters('chromium_default_layouts', $chromium_default_layouts) ); } endif; /* end of if (!function_exists('chromium_setup')) */ add_action( 'after_setup_theme', 'chromium_setup' ); /** * Enqueue scripts and styles for the front end. */ if ( ! function_exists( 'chromium_inline_styles' ) ) : function chromium_inline_styles(){ $styles = ''; $thumb_width = get_theme_mod( 'product_thumb_width', '85' ); $styles = '@media screen and (min-width: 1024px){ .product-images-wrapper .flex-control-thumbs { width: '.$thumb_width.'px !important; } }'; return $styles; } endif; if ( !function_exists('chromium_scripts') ) : function chromium_scripts() { //---- CSS Styles wp_enqueue_style( 'chromium-style', get_stylesheet_uri() ); wp_enqueue_style( 'chromium-fonts', get_template_directory_uri().'/assets/css/fonts.css' ); wp_enqueue_style( 'fontawesome', get_template_directory_uri().'/assets/css/font-awesome.min.css' ); wp_add_inline_style( 'chromium-style', chromium_inline_styles() ); if ( class_exists('WooCommerce') ) { wp_enqueue_style( 'chromium-woo-styles', get_template_directory_uri().'/assets/css/woo-styles.css' ); } //---- JS libraries wp_enqueue_script( 'chromium-navigation', get_template_directory_uri() . '/assets/js/navigation.js', array(), '20151215', true ); wp_enqueue_script( 'hoverIntent', array('jquery') ); wp_enqueue_script( 'chromium-theme-helper', get_template_directory_uri() . '/assets/js/theme-helper.js', array('jquery'), '1.0', true ); wp_enqueue_script( 'magnific-popup', get_template_directory_uri() . '/assets/js/magnific-popup.js', array('jquery'), '1.1.0', true ); // 3rd party script if ( is_page_template( 'page-templates/gallery-page.php' ) ) { wp_enqueue_script( 'filterizr', get_template_directory_uri() . '/assets/js/filterizr.js', array('jquery'), '1.2.3', true ); // 3rd party script } //---- Comments script if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } } endif; /* end of if (!function_exists('chromium_scripts')) */ add_action( 'wp_enqueue_scripts', 'chromium_scripts' ); /** * Init Sidebars. */ if ( !function_exists('chromium_sidebars_init') ) : function chromium_sidebars_init() { // Default Sidebars register_sidebar( array( 'name' => esc_html__( 'Blog Sidebar', 'chromium' ), 'id' => 'sidebar-blog', 'description' => esc_html__( 'Appears on singular blog posts and on Blog Page', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Front Page Sidebar', 'chromium' ), 'id' => 'sidebar-front', 'description' => esc_html__( 'Appears when using the optional Front Page template with a page set as Static Front Page', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Pages Sidebar', 'chromium' ), 'id' => 'sidebar-pages', 'description' => esc_html__( 'Appears on Pages', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Header (Logo group) sidebar', 'chromium' ), 'id' => 'hgroup-sidebar', 'description' => esc_html__( 'Located in header section', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', ) ); // Store Sidebars if ( class_exists('WooCommerce') ) { register_sidebar( array( 'name' => esc_html__( 'Shop Page Sidebar', 'chromium' ), 'id' => 'sidebar-shop', 'description' => esc_html__( 'Appears on Products page', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Single Product Page Sidebar', 'chromium' ), 'id' => 'sidebar-product', 'description' => esc_html__( 'Appears on Single Products page', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Special Filters Sidebar', 'chromium' ), 'id' => 'filters-sidebar', 'description' => esc_html__( 'Located at the top of the products page', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', ) ); if ( true == get_theme_mod( 'add_cart_sidebar', true ) ) { register_sidebar( array( 'name' => esc_html__( 'Cart Page Sidebar', 'chromium' ), 'id' => 'sidebar-cart', 'description' => esc_html__( 'Appears on Cart page under main table', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } } /* Footer Sidebars */ register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar (1 Col)', 'chromium' ), 'id' => 'footer-sidebar-1', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar (2 Col)', 'chromium' ), 'id' => 'footer-sidebar-2', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar (3 Col)', 'chromium' ), 'id' => 'footer-sidebar-3', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Sidebar (4 Col)', 'chromium' ), 'id' => 'footer-sidebar-4', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); /* Top top_panel_text_color Sidebars */ if ( true == get_theme_mod( 'header_top_panel', true ) ) { register_sidebar( array( 'name' => esc_html__( 'Header Top Panel Left Sidebar', 'chromium' ), 'id' => 'top-sidebar-left', 'description' => esc_html__( 'Located at the top left corner of the site', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); register_sidebar( array( 'name' => esc_html__( 'Header Top Panel Right Sidebar', 'chromium' ), 'id' => 'top-sidebar-right', 'description' => esc_html__( 'Located at the top right corner of the site', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } /* Primary Nav Sidebar */ if ( true == get_theme_mod('primary_nav_widgets', true) ) { register_sidebar( array( 'name' => esc_html__( 'Primary navigation widgets', 'chromium' ), 'id' => 'primary-nav-widgets', 'description' => esc_html__( 'Located in the same row as primary navigation', 'chromium' ), 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '', ) ); } register_sidebar( array( 'name' => esc_html__( 'Home Page Sidebar', 'chromium' ), 'id' => 'home-page', 'before_widget' => '
', 'after_widget' => '
', 'before_title' => '

', 'after_title' => '

', ) ); } endif; /* end of if (!function_exists('chromium_sidebars_init')) */ add_action( 'widgets_init', 'chromium_sidebars_init' ); /** * Adding Theme features */ require_once( get_template_directory() . '/inc/theme-fonts.php'); require_once( get_template_directory() . '/inc/theme-kirki.php'); require_once( get_template_directory() . '/inc/theme-options.php'); require_once( get_template_directory() . '/inc/theme-layouts.php'); require_once( get_template_directory() . '/inc/theme-functions.php'); if ( class_exists('WooCommerce') ) { require_once( get_template_directory() . '/inc/theme-woo-modification.php'); } require_once( get_template_directory() . '/inc/theme-demo-install.php');{"id":1177,"date":"2020-03-28T20:15:00","date_gmt":"2020-03-28T17:15:00","guid":{"rendered":"http:\/\/wptest.io\/demo\/?p=903"},"modified":"2020-04-21T19:28:23","modified_gmt":"2020-04-21T16:28:23","slug":"aftermarket-auto-parts-supply-chain","status":"publish","type":"post","link":"https:\/\/lexot.net\/aftermarket-auto-parts-supply-chain\/","title":{"rendered":"Aftermarket Auto Parts Supply Chain: No Time To Spare"},"content":{"rendered":"\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t
\n\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\t\t
\n\t\t\t\t
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t

To compete in this fast-shifting sector, aftermarket auto parts companies have to speed into e-commerce and get their supply chains in high gear.<\/p>

Americans’ cars are going gray right alongside their drivers. Along with an aging population, the average age of the cars on the road in the United States has inched up to 11.8 years. Moreover, the number of vehicles between six and 11 years old will jump 27% between 2018 and 2023, according to IHS Markit.<\/p>

This is good news for the aftermarket auto parts sector. Vehicles between roughly five and eight years old are in the repair “sweet spot,” says John Giangrande, director of sales with Fortna, a consulting firm focused on distribution operations. Most of these cars are out of warranty, so their owners are less likely to head to dealers for repair. Yet many are still in decent shape and worth an investment in parts and repairs.<\/p>

At the same time, aftermarket auto parts businesses are facing significant challenges and changes. E-commerce is upending sales and delivery channels, while other advances in technology are changing the makeup of vehicles themselves. The businesses that succeed will learn how to leverage these changes to both retain and capture market share and reduce costs.<\/p>

\"Vehicel<\/a><\/p>

DIFFERENT LANES<\/h4>

The aftermarket auto parts supply chain can be broken roughly into two channels, says Chris Gardner, senior vice president with the Automotive Aftermarket Suppliers Association (AASA). One encompasses independent repair shops and service chains, such as Firestone and Jiffy Lube, as well as retailers like AutoZone and O’Reilly Automotive. These companies typically buy aftermarket parts from a range of third-party suppliers.<\/p><\/div>

The other channel consists of the original equipment supplier companies (OES). These are the companies that made the original factory parts for a vehicle.<\/p>

To be sure, some overlap between the channels occurs. For instance, ACDelco is a General Motors brand. It’s also “the brand we go to market with, with independent retailers,” says Vince Faletti, general director, global customer care and aftersales, supply chain and logistics with General Motors. Many aftermarket retailers, as well as online marketplaces, stock ACDelco products.<\/p>

E-COMMERCE OVERDRIVE<\/h4>

As in many other sectors, e-commerce is putting significant pressure on the distribution practices of aftermarket players. E-commerce, and especially Amazon, has been a “game changer” in the aftermarket, says Dennis Hamann, director, logistics, North and South America, with HELLA GmbH & Co. KGaA, a developer and manufacturer of lighting technology and electronic products for the automotive industry.<\/p>

The reason? It combines requirements traditionally associated with original equipment customers, such as on-time delivery performance, with those typical of retailers, such as a large variety of products. Add fluctuating demand, and these shifts are “increasing the importance of proper demand planning and inventory forecasting,” Hamann says.<\/p>

Changing cu\"\"<\/a>stomer expectations for convenience, speed, selection, and value should prompt players in the aftermarket supply chain to develop their O2O, or online to offline capabilities. That’s according to a recent report, “Digital Transformation: The ‘New Retail’ Future of the Aftermarket (and How to Win),” by AASA and strategy consulting firm Roland Berger. “A new retail aftermarket is emerging, characterized by a strong integration between the online and the offline worlds, differentiated customer experience, and lower cost-to-serve and working capital requirements,” states the report.<\/p><\/div>

NAVIGATING INTERSECTIONS<\/h4>

This shift will create both winners and losers in the supply chain. The companies that develop a strong omnichannel strategy and capabilities will be best positioned for success, with a flexible supply chain that aligns with evolving consumer expectations, targeted marketing, and consistent pricing across channels.<\/p>

Another key criterion is cost-effective management of the last mile, the movement of parts from distribution hubs to consumers\u2014a widespread industry challenge. “Whoever can get to market first with the quickest way to handle the last mile will benefit,” says Karl Borgman, principal with Tompkins International, a supply chain consulting firm.<\/p>

To compete, manufacturers need to apply the “Amazon model of logistics,” says Gigi Ho, data co-op director of operations with the Specialty Equipment Market Association (SEMA). That is, they may need to stock parts across multiple locations so they can quickly fill orders.<\/p>

Partnerships also can be a way to move toward an omnichannel world. In late 2018, Advance Auto Parts and Walmart announced plans for an automotive specialty store on walmart.com. “At Advance, we are absolutely committed to building a best-in-class omnichannel experience,” Tom Greco, president and chief executive officer with Advance Auto Parts, said in an official statement.<\/p>

The two companies are also partnering on fulfillment options, including home delivery and parts installation.<\/p>

ONSITE ASSISTANCE<\/h4>

Brick-and-mortar service providers will still have a role to play, especially for more complicated services. “This isn’t like buying shoes or clothes,” Giangrande notes. When it comes to some services, such as installing new parts, only a small segment of consumers can reasonably do it themselves.<\/p>

To address the many consumers that need assistance, some online marketplaces, including Amazon, allow customers to select a service option when purchasing some car parts. Their purchases are delivered to service providers near them, who then handle installation. “It’s a major business model change,” with small garages now getting referrals from major internet providers, says Mike Rayne, managing director in the corporate finance segment with business advisory firm FTI Consulting.<\/p>

Along with changing sales channels, technology is altering cars themselves. “Today, you open the hood, and you have to work for NASA in order to do something,” Giangrande notes.<\/p>

That’s impacting supply chains by driving growth in the “do-it-for-me,” or DIFM, market. In turn, that’s prompting some retailers to carry more parts geared to this market.<\/p>

AUTOMOTIVE UPGRADE<\/h4>

Repair shops also need to boost their tooling and employee training so they can effectively work on increasingly technical cars. And that costs money.<\/p>

To meet this challenge, many independent garages in Europe have joined together to share parts distribution, training, marketing, and other services. GROUPAUTO International, a spare parts distribution and services network for passenger cars and commercial vehicles, spans 60 countries, encompasses more than 1,300 distributors, and provides a cost-effective alternative to vehicle manufacturers, according to its website.<\/p>

Advancing technology is just one driver behind parts proliferation, along with the ever-increasing number of brands and models. Faletti’s division at GM works with nearly 500,000 parts. “It adds complexity,” he says.<\/p>

The sheer volume of aftermarket parts can complicate inventory planning and management. Not only does it create more products to track, but some of the parts also lack decent historical information that could be used to estimate future sales.<\/p>

While the difference between high- and low-tech products has always existed, it has become more pronounced as cars get more computerized. “Before, anyone could change a shock absorber,” Rayne says. That’s less true today.<\/p>

Both the low- and high-tech sub-sectors face challenges. Lower-tech, commodity parts are vulnerable to pricing pressure, especially now that consumers can check prices with the click of a mouse.<\/p>

This pressure is especially challenging for some historical players with established large infrastructures, like lengthy distribution networks. “It makes it difficult to reduce prices,” Rayne says.<\/p>\t\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t","protected":false},"excerpt":{"rendered":"

One more thing that could help you to start to live green is to begin walking a bit more. Lots of people routinely drive short distances merely to buy one thing at their local corner market. If you just walk to the store, it can take less time, because you won’t have to locate a parking spot, but you will be saving money on gas and helping to save … <\/p>\n","protected":false},"author":1,"featured_media":4984,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[1039],"tags":[],"yoast_head":"\n\n\n\n\n\n\n\n\n\n\n\n\n\t\n\t\n\n