/** * boxcar 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 Boxcar * @since Boxcar 1.1.36 */ define( 'BOXCAR_THEME_VERSION', '1.1.36' ); define( 'BOXCAR_DEMO_MODE', false ); if ( ! isset( $content_width ) ) { $content_width = 660; } if ( ! function_exists( 'boxcar_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 Boxcar 1.0 */ function boxcar_setup() { /* * Make theme available for translation. * Translations can be filed in the /languages/ directory. * If you're building a theme based on boxcar, use a find and replace * to change 'boxcar' to the name of your theme in all the template files */ load_theme_textdomain( 'boxcar', 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. * 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' ); add_theme_support( 'post-thumbnails' ); add_image_size( 'boxcar-listing-list', 680, 640, true ); add_image_size( 'boxcar-listing-list-v1', 640, 640, true ); add_image_size( 'boxcar-listing-grid', 660, 440, true ); // This theme uses wp_nav_menu() in two locations. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'boxcar' ), 'mobile-primary' => esc_html__( 'Primary Mobile Menu', 'boxcar' ), 'user-menu' => esc_html__( 'User Account Menu', 'boxcar' ), ) ); /* * 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( "woocommerce", array('gallery_thumbnail_image_width' => 410) ); add_theme_support( 'wc-product-gallery-lightbox' ); add_theme_support( 'wc-product-gallery-slider' ); /* * 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' ) ); $color_scheme = boxcar_get_color_scheme(); $default_color = trim( $color_scheme[0], '#' ); // Setup the WordPress core custom background feature. add_theme_support( 'custom-background', apply_filters( 'boxcar_custom_background_args', array( 'default-color' => $default_color, 'default-attachment' => 'fixed', ) ) ); // Add theme support for selective refresh for widgets. add_theme_support( 'customize-selective-refresh-widgets' ); // Add support for Block Styles. add_theme_support( 'wp-block-styles' ); // Add support for full and wide align images. add_theme_support( 'align-wide' ); // Add support for editor styles. add_theme_support( 'editor-styles' ); // Add support for responsive embeds. add_theme_support( 'responsive-embeds' ); // Enqueue editor styles. add_editor_style('css/style-editor.css'); } endif; // boxcar_setup add_action( 'after_setup_theme', 'boxcar_setup' ); /** * Load Google Front */ function boxcar_get_fonts_url() { $fonts_url = ''; $main_font = boxcar_get_config('main-font'); $main_font = !empty($main_font) ? json_decode($main_font, true) : array(); if ( !empty($main_font['fontfamily']) ) { $main_font_family = $main_font['fontfamily']; $main_font_weight = !empty($main_font['fontweight']) ? $main_font['fontweight'] : '300,400,500,600,700,800'; $main_font_subsets = !empty($main_font['subsets']) ? $main_font['subsets'] : 'latin,latin-ext'; } else { $main_font_family = 'DM Sans'; $main_font_weight = '300,400,500,600,700,800'; $main_font_subsets = 'latin,latin-ext'; } $heading_font = boxcar_get_config('heading-font'); $heading_font = !empty($heading_font) ? json_decode($heading_font, true) : array(); if ( !empty($heading_font['fontfamily']) ) { $heading_font_family = $heading_font['fontfamily']; $heading_font_weight = !empty($heading_font['fontweight']) ? $heading_font['fontweight'] : '300,400,500,600,700,800'; $heading_font_subsets = !empty($heading_font['subsets']) ? $heading_font['subsets'] : 'latin,latin-ext'; } else { $heading_font_family = 'DM Sans'; $heading_font_weight = '300,400,500,600,700,800'; $heading_font_subsets = 'latin,latin-ext'; } if ( $main_font_family == $heading_font_family ) { $font_weight = $main_font_weight.','.$heading_font_weight; $font_subsets = $main_font_subsets.','.$heading_font_subsets; $fonts = array( $main_font_family => array( 'weight' => $font_weight, 'subsets' => $font_subsets, ), ); } else { $fonts = array( $main_font_family => array( 'weight' => $main_font_weight, 'subsets' => $main_font_subsets, ), $heading_font_family => array( 'weight' => $heading_font_weight, 'subsets' => $heading_font_subsets, ), ); } $font_families = array(); $subset = array(); foreach ($fonts as $key => $opt) { $font_families[] = $key.':'.$opt['weight']; $subset[] = $opt['subsets']; } $query_args = array( 'family' => implode( '|', $font_families ), 'subset' => urlencode( implode( ',', $subset ) ), ); $protocol = is_ssl() ? 'https:' : 'http:'; $fonts_url = add_query_arg( $query_args, $protocol .'//fonts.googleapis.com/css' ); return esc_url( $fonts_url ); } /** * Enqueue styles. * * @since Boxcar 1.0 */ function boxcar_enqueue_styles() { // load font wp_enqueue_style( 'boxcar-theme-fonts', boxcar_get_fonts_url(), array(), null ); //load font awesome wp_enqueue_style( 'all-awesome', get_template_directory_uri() . '/css/all-awesome.css', array(), '5.11.2' ); //load font flaticon wp_enqueue_style( 'flaticon', get_template_directory_uri() . '/css/flaticon.css', array(), '1.0.0' ); // load font themify icon wp_enqueue_style( 'themify-icons', get_template_directory_uri() . '/css/themify-icons.css', array(), '1.0.0' ); // load animate version 3.6.0 wp_enqueue_style( 'animate', get_template_directory_uri() . '/css/animate.css', array(), '3.6.0' ); // load bootstrap style if( is_rtl() ){ wp_enqueue_style( 'bootstrap-rtl', get_template_directory_uri() . '/css/bootstrap.rtl.css', array(), '3.2.0' ); } else { wp_enqueue_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.css', array(), '3.2.0' ); } // slick wp_enqueue_style( 'slick', get_template_directory_uri() . '/css/slick.css', array(), '1.8.0' ); // magnific-popup wp_enqueue_style( 'magnific-popup', get_template_directory_uri() . '/css/magnific-popup.css', array(), '1.1.0' ); // perfect scrollbar wp_enqueue_style( 'perfect-scrollbar', get_template_directory_uri() . '/css/perfect-scrollbar.css', array(), '0.6.12' ); // mobile menu wp_enqueue_style( 'sliding-menu', get_template_directory_uri() . '/css/sliding-menu.min.css', array(), '0.3.0' ); // main style if( is_rtl() ){ wp_enqueue_style( 'boxcar-template-rtl', get_template_directory_uri() . '/css/template.rtl.css', array(), '1.0' ); } else { wp_enqueue_style( 'boxcar-template', get_template_directory_uri() . '/css/template.css', array(), '1.0' ); } $custom_style = boxcar_custom_styles(); if ( !empty($custom_style) ) { if( is_rtl() ){ wp_add_inline_style( 'boxcar-template-rtl', $custom_style ); } else { wp_add_inline_style( 'boxcar-template', $custom_style ); } } wp_enqueue_style( 'boxcar-style', get_template_directory_uri() . '/style.css', array(), '1.0' ); } add_action( 'wp_enqueue_scripts', 'boxcar_enqueue_styles', 100 ); function boxcar_admin_enqueue_styles() { // load font wp_enqueue_style( 'boxcar-theme-fonts', boxcar_get_fonts_url(), array(), null ); //load font awesome wp_enqueue_style( 'all-awesome', get_template_directory_uri() . '/css/all-awesome.css', array(), '5.11.2' ); //load font flaticon wp_enqueue_style( 'flaticon', get_template_directory_uri() . '/css/flaticon.css', array(), '1.0.0' ); // load font themify icon wp_enqueue_style( 'themify-icons', get_template_directory_uri() . '/css/themify-icons.css', array(), '1.0.0' ); } add_action( 'admin_enqueue_scripts', 'boxcar_admin_enqueue_styles', 100 ); function boxcar_login_enqueue_styles() { wp_enqueue_style( 'font-awesome', get_template_directory_uri() . '/css/font-awesome.css', array(), '4.5.0' ); wp_enqueue_style( 'boxcar-login-style', get_template_directory_uri() . '/css/login-style.css', array(), '1.0' ); } add_action( 'login_enqueue_scripts', 'boxcar_login_enqueue_styles', 10 ); /** * Enqueue scripts. * * @since Boxcar 1.0 */ function boxcar_enqueue_scripts() { if ( is_singular() && comments_open() && get_option( 'thread_comments' ) ) { wp_enqueue_script( 'comment-reply' ); } // bootstrap wp_enqueue_script( 'bootstrap-bundle', get_template_directory_uri() . '/js/bootstrap.bundle.min.js', array( 'jquery' ), '5.0.2', true ); // slick wp_enqueue_script( 'slick', get_template_directory_uri() . '/js/slick.min.js', array( 'jquery' ), '1.8.0', true ); // countdown wp_register_script( 'countdown', get_template_directory_uri() . '/js/countdown.js', array( 'jquery' ), '20150315', true ); wp_localize_script( 'countdown', 'boxcar_countdown_opts', array( 'days' => esc_html__('Days', 'boxcar'), 'hours' => esc_html__('Hrs', 'boxcar'), 'mins' => esc_html__('Mins', 'boxcar'), 'secs' => esc_html__('Secs', 'boxcar'), )); // popup wp_enqueue_script( 'jquery-magnific-popup', get_template_directory_uri() . '/js/jquery.magnific-popup.min.js', array( 'jquery' ), '1.1.0', true ); // unviel wp_enqueue_script( 'jquery-unveil', get_template_directory_uri() . '/js/jquery.unveil.js', array( 'jquery' ), '1.1.0', true ); // perfect scrollbar wp_enqueue_script( 'perfect-scrollbar', get_template_directory_uri() . '/js/perfect-scrollbar.min.js', array( 'jquery' ), '1.5.0', true ); if ( boxcar_get_config('keep_header') ) { wp_enqueue_script( 'jquery-waypoint', get_template_directory_uri() . '/js/jquery.waypoints.min.js', array( 'jquery' ), '4.0.1', true ); wp_enqueue_script( 'sticky', get_template_directory_uri() . '/js/sticky.min.js', array( 'jquery', 'jquery-waypoint' ), '4.0.1', true ); } // mobile menu script wp_enqueue_script( 'sliding-menu', get_template_directory_uri() . '/js/sliding-menu.min.js', array( 'jquery' ), '0.3.0', true ); // main script wp_register_script( 'boxcar-functions', get_template_directory_uri() . '/js/functions.js', array( 'jquery' ), '20150330', true ); wp_localize_script( 'boxcar-functions', 'boxcar_opts', array( 'ajaxurl' => esc_url(admin_url( 'admin-ajax.php' )), 'previous' => esc_html__('Previous', 'boxcar'), 'next' => esc_html__('Next', 'boxcar'), 'menu_back_text' => esc_html__('Back', 'boxcar') )); wp_enqueue_script( 'boxcar-functions' ); wp_add_inline_script( 'boxcar-functions', "(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);" ); } add_action( 'wp_enqueue_scripts', 'boxcar_enqueue_scripts', 1 ); /** * Add a `screen-reader-text` class to the search form's submit button. * * @since Boxcar 1.0 * * @param string $html Search form HTML. * @return string Modified search form HTML. */ function boxcar_search_form_modify( $html ) { return str_replace( 'class="search-submit"', 'class="search-submit screen-reader-text"', $html ); } add_filter( 'get_search_form', 'boxcar_search_form_modify' ); function boxcar_get_config($name, $default = '') { global $boxcar_theme_options; if ( empty($boxcar_theme_options) ) { $boxcar_theme_options = get_option('boxcar_theme_options'); } if ( isset($boxcar_theme_options[$name]) ) { return $boxcar_theme_options[$name]; } return $default; } function boxcar_set_exporter_ocdi_settings_option_keys($option_keys) { return array( 'boxcar_theme_options', 'elementor_disable_color_schemes', 'elementor_disable_typography_schemes', 'elementor_allow_tracking', 'elementor_cpt_support', 'wp_cardealer_settings', 'wp_cardealer_fields_data', ); } add_filter( 'apus_exporter_ocdi_settings_option_keys', 'boxcar_set_exporter_ocdi_settings_option_keys' ); function boxcar_disable_one_click_import() { return false; } add_filter('apus_frammework_enable_one_click_import', 'boxcar_disable_one_click_import'); function boxcar_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar Default', 'boxcar' ), 'id' => 'sidebar-default', 'description' => esc_html__( 'Add widgets here to appear in your Sidebar.', 'boxcar' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title">', 'after_title' => '</h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'User Profile sidebar', 'boxcar' ), 'id' => 'user-profile-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'boxcar' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Blog sidebar', 'boxcar' ), 'id' => 'blog-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'boxcar' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); register_sidebar( array( 'name' => esc_html__( 'Shop sidebar', 'boxcar' ), 'id' => 'shop-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar.', 'boxcar' ), 'before_widget' => '<aside class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h2 class="widget-title"><span>', 'after_title' => '</span></h2>', ) ); } add_action( 'widgets_init', 'boxcar_widgets_init' ); function boxcar_get_load_plugins() { $plugins[] = array( 'name' => esc_html__( 'Apus Framework For Themes', 'boxcar' ), 'slug' => 'apus-frame', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/apus-frame.zip' ); $plugins[] = array( 'name' => esc_html__( 'Elementor Page Builder', 'boxcar' ), 'slug' => 'elementor', 'required' => true, ); $plugins[] = array( 'name' => esc_html__( 'Revolution Slider', 'boxcar' ), 'slug' => 'revslider', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/revslider.zip' ); $plugins[] = array( 'name' => esc_html__( 'Cmb2', 'boxcar' ), 'slug' => 'cmb2', 'required' => true, ); $plugins[] = array( 'name' => esc_html__( 'MailChimp for WordPress', 'boxcar' ), 'slug' => 'mailchimp-for-wp', 'required' => true ); $plugins[] = array( 'name' => esc_html__( 'Contact Form 7', 'boxcar' ), 'slug' => 'contact-form-7', 'required' => true, ); // woocommerce plugins $plugins[] = array( 'name' => esc_html__( 'Woocommerce', 'boxcar' ), 'slug' => 'woocommerce', 'required' => true, ); // Listing plugins $plugins[] = array( 'name' => esc_html__( 'WP CarDealer', 'boxcar' ), 'slug' => 'wp-cardealer', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-cardealer.zip' ); $plugins[] = array( 'name' => esc_html__( 'WP CarDealer - WooCommerce Paid Listings', 'boxcar' ), 'slug' => 'wp-cardealer-wc-paid-listings', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-cardealer-wc-paid-listings.zip' ); $plugins[] = array( 'name' => esc_html__( 'WP Private Message', 'boxcar' ), 'slug' => 'wp-private-message', 'required' => true , 'source' => get_template_directory() . '/inc/plugins/wp-private-message.zip' ); $plugins[] = array( 'name' => esc_html__( 'One Click Demo Import', 'boxcar' ), 'slug' => 'one-click-demo-import', 'required' => false, ); $plugins[] = array( 'name' => esc_html__( 'SVG Support', 'boxcar' ), 'slug' => 'easy-svg', 'required' => false, 'force_activation' => false, 'force_deactivation' => false, ); $config = array( 'id' => 'boxcar', 'default_path' => '', 'menu' => 'tgmpa-install-plugins', 'has_notices' => true, 'dismissable' => true, 'dismiss_msg' => '', 'is_automatic' => false, 'message' => '', 'strings' => array( 'bulk_install' => esc_html__( 'Install Selected Plugins', 'boxcar' ), ), ); tgmpa( $plugins, $config ); } add_action( 'tgmpa_register', 'boxcar_get_load_plugins' ); require get_template_directory() . '/inc/plugins/class-tgm-plugin-activation.php'; get_template_part( '/inc/functions-helper' ); get_template_part( '/inc/functions-frontend' ); /** * Implement the Custom Header feature. * */ get_template_part( '/inc/custom-header' ); get_template_part( '/inc/classes/megamenu' ); get_template_part( '/inc/classes/mobilemenu' ); /** * Custom template tags for this theme. * */ get_template_part( '/inc/template-tags' ); /** * Customizer additions. * */ get_template_part( '/inc/customizer/font/custom-controls' ); get_template_part( '/inc/customizer/customizer-custom-control' ); get_template_part( '/inc/customizer/customizer' ); if( boxcar_is_cmb2_activated() ) { get_template_part( '/inc/vendors/cmb2/page' ); define( 'BOXCAR_CMB2_ACTIVED', true ); } if( boxcar_is_woocommerce_activated() ) { get_template_part( '/inc/vendors/woocommerce/functions' ); get_template_part( '/inc/vendors/woocommerce/customizer' ); define( 'BOXCAR_WOOCOMMERCE_ACTIVED', true ); } if( boxcar_is_wp_cardealer_activated() ) { get_template_part( '/inc/vendors/wp-cardealer/customizer' ); get_template_part( '/inc/vendors/wp-cardealer/functions' ); get_template_part( '/inc/vendors/wp-cardealer/functions-listing-display' ); if ( version_compare(WP_CARDEALER_PLUGIN_VERSION, '1.2.0', '>=') ) { get_template_part( '/inc/vendors/wp-cardealer/customizer-dealer' ); get_template_part( '/inc/vendors/wp-cardealer/functions-dealer' ); get_template_part( '/inc/vendors/wp-cardealer/functions-dealer-display' ); } } if ( boxcar_is_wp_cardealer_wc_paid_listings_activated() ) { get_template_part( '/inc/vendors/wp-cardealer-wc-paid-listings/functions' ); } function boxcar_register_load_widget() { get_template_part( '/inc/widgets/custom_menu' ); get_template_part( '/inc/widgets/recent_post' ); get_template_part( '/inc/widgets/search' ); get_template_part( '/inc/widgets/socials' ); if ( did_action( 'elementor/loaded' ) ) { get_template_part( '/inc/widgets/elementor-template' ); } if ( boxcar_is_wp_cardealer_activated() ) { get_template_part( '/inc/widgets/contact-form' ); get_template_part( '/inc/widgets/user-short-profile' ); } } add_action( 'widgets_init', 'boxcar_register_load_widget' ); if ( boxcar_is_wp_private_message() ) { get_template_part( '/inc/vendors/wp-private-message/functions' ); } get_template_part( '/inc/vendors/elementor/functions' ); get_template_part( '/inc/vendors/one-click-demo-import/functions' ); /** * Custom Styles * */ get_template_part( '/inc/custom-styles' );BEGIN:VCALENDAR VERSION:2.0 PRODID:-//Mopar Center - ECPv6.16.3//NONSGML v1.0//EN CALSCALE:GREGORIAN METHOD:PUBLISH X-ORIGINAL-URL:https://moparcenter.com X-WR-CALDESC:Events for Mopar Center REFRESH-INTERVAL;VALUE=DURATION:PT1H X-Robots-Tag:noindex X-PUBLISHED-TTL:PT1H BEGIN:VTIMEZONE TZID:UTC BEGIN:STANDARD TZOFFSETFROM:+0000 TZOFFSETTO:+0000 TZNAME:UTC DTSTART:20250101T000000 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;VALUE=DATE:20261002 DTEND;VALUE=DATE:20261004 DTSTAMP:20260604T100928 CREATED:20251216T062755Z LAST-MODIFIED:20251216T062755Z UID:12299-1790899200-1791071999@moparcenter.com SUMMARY:LSMF (Lone Star Mopar Fest) 2026 DESCRIPTION:Oct 2\, 2026\, 12:00 PM – Oct 3\, 2026\, 2:00 PM\nLone Star Mopar Fest 2026. Laid back Mopar show in Houston\, TX\, hosted by the SCLX modern Mopar club in some form or fashion since 2011\, so it’s one of the longest running Mopar exclusive meets. Expect to be with about 100-200 fellow Mopars. There’s a lot of information\, so if you want to head over to the main Lone Star Mopar Fest website\, feel free to do so at https://www.lsmfwknd.com/. \n16435 Katy Fwy\, Houston\, TX 77094\, USA\nFor more details\, visit the official website or contact us at info@lonestarmoparfest.com URL:https://moparcenter.com/event/lone-star-mopar-fest-2026/ LOCATION:LSMF (Lone Star Mopar Fest)\, 16435 Katy Fwy\, Houston\, TX\, 77094\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/jpeg:https://moparcenter.com/wp-content/uploads/2025/12/lsmf.jpg END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20261002 DTEND;VALUE=DATE:20261005 DTSTAMP:20260604T100928 CREATED:20251211T071341Z LAST-MODIFIED:20251211T071341Z UID:12012-1790899200-1791158399@moparcenter.com SUMMARY:7th Annual Mopar Muscle Dragfest DESCRIPTION:October 2nd\, 3rd & 4th 2026\nLondon Dragway Mopar events! Here you will be kept informed on the Mopar Event\, car show\, vendor information\, event apparel and much more!\nLondon Dragway\n3385 White Oak Road London\, KY 40741\nFor more details\, visit the official website or contact Bob Rogers (606-231-3446) URL:https://moparcenter.com/event/mopar-muscle-dragfest/ LOCATION:Mopar Muscle Dragfest\, 3385 White Oak Road\, London\, KY\, 40741\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/jpeg:https://moparcenter.com/wp-content/uploads/2025/12/indy12.jpeg END:VEVENT BEGIN:VEVENT DTSTART;TZID=UTC:20261002T080000 DTEND;TZID=UTC:20261003T170000 DTSTAMP:20260604T100928 CREATED:20251121T004045Z LAST-MODIFIED:20260128T202002Z UID:11233-1790928000-1791046800@moparcenter.com SUMMARY:2026 Southern Plains Mopaar Fest DESCRIPTION:The Southern Plains Mopaar Fest are absolute Ambassadors to move\, restore\, and preserve this historic piece of absolute Mopar Americana located smack dab in the middle of Bristow\, Oklahoma! You can view this most elegant\, beautiful\, and original 102 ft tall piece of Mopar history on the EAST side of the Mother Road Route 66 in Bristow\, OK! We are excited to have the town of Bristow hosting our All Mopar event! Come out and help preserve this absolute one of a kind piece of Chrysler Americana! \nThe 102-foot-tall Chrysler Plymouth Tower just east of Route 66 that was once part of the Beard Motor Co until the death of the owner in a plane crash and the opening of I-44 between Tulsa and Oklahoma City together forced the business to close. The society wants to relight the sign for the first time in decades.\nPre-Registration is at FOAT.com only. All payments to be made via pre-registration HERE or in person at the day of the event. \nPre-Registration deadline is 14 Sept 2026 \nFor the show registration form\, click HERE for a hand filled version\, or HERE for a fillable form. \nSponsorship opportunities are available! Please email/call Doug @ southerplainsmopaarfest@gmail.com or 405-596-6513 for details \n2026 Southern Plains Mopar Fest URL:https://moparcenter.com/event/2026-southern-plains-mopaar-fest/ LOCATION:Southern Plains Mopaar Fest\, 37661 W Hwy 66\, Bristow\, OK\, 74010\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2025/11/SPMF_IMG002.webp ORGANIZER;CN="Southern Plains Mopaar Fest":MAILTO:Doug@southerplainsmopaarfest@gmail.com END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20261003 DTEND;VALUE=DATE:20261004 DTSTAMP:20260604T100928 CREATED:20251121T004726Z LAST-MODIFIED:20260128T203759Z UID:11235-1790985600-1791071999@moparcenter.com SUMMARY:Mopar Day in the Park 2026 DESCRIPTION:Mopar Day In The Park\nAnnouncing CCM Mopar Day in the Park 2026\nOctober 3\, 2026  •  Hagan Park\, Rancho Cordova\nIMPORTANT: Scammers have hacked our Facebook page.  Ignore them.\nThere are only 2 ways to sign up for our car show…\n1. Use the registration page here on this website.   2. Mail to PO Box 340426\n​\n​Online Pre-Registration is Closed ! \nRegistration is available at day of show. Please download and fill out registration forms below and bring to show\, or pick one up at day of show.\n\nFeaturing  Online Registration and Payments\nComplete Registration AND Payments online. Both steps must be completed.\n\n\nRaffle Prizes\n\n\n\nRaffle Prizes include a HUGE Flat-Screen TV donated by Hoblit Dodge of Woodland\, 49ers Tickets\, Car Wash Kits\, Oil Change Kits\, many Toys\, Household stuff\, Garage finds\, and much more. Stay tuned. \n\n\nMopars in the Park 2026\nOur Car Show Sponsors  \nHoblit Chrysler Dodge Jeep Ram\nFolsom Lake Chrysler Dodge Jeep Ram\nThompson’s Chrysler Dodge Jeep RAM of Placerville\nO’Reilly Auto Parts\nHastie’s Capitol Sand & Gravel\nOverkill Performance\n​Bill Sedgwick\nPlease contact the club if you or your company wants to sponsor the Car Show: Contact us\nAlso By\nDr Injector\nCollector Car Garage\nRiver City Differential\n49er Bail Bonds\nJ & W Auto Wreckers\nRudy Oberhauser Restorations\nPowder Technology\n​Griot’s Garage\nGrand Island Vineyard\n​\n\nOur third year back at\nHagan Community Park\nby Popular Demand URL:https://moparcenter.com/event/mopar-day-in-the-park-2026/ LOCATION:Mopar Day in the Park\, 4008 220th St W\, Farmington\, MN\, 55024\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2025/11/hh.webp ORGANIZER;CN="Capital City Mopars":MAILTO:webmaster@capitalcitymopars.com END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20261017 DTEND;VALUE=DATE:20261018 DTSTAMP:20260604T100928 CREATED:20260127T050914Z LAST-MODIFIED:20260127T051041Z UID:14070-1792195200-1792281599@moparcenter.com SUMMARY:34th Annual Mopar Eastern Classic DESCRIPTION:Maryland International Raceway Drag Racing Action on October 17\, 2026\nDrag racing fans and competitors are gearing up for a full day of motorsports excitement at Maryland International Raceway (MIR) on Saturday\, October 17\, 2026. As part of the fall racing calendar at one of the East Coast’s most popular motorsports destinations\, this event promises competitive eliminations\, time trials\, and plenty of action for both racers and spectators. \nEvent Overview\nMaryland International Raceway is known for hosting a wide variety of drag racing events throughout the year\, welcoming racers from sportsman to ET and Junior Dragster classes. Events typically feature time trials in the morning followed by eliminations in the afternoon\, with racing continuing until completion. \nOn October 17\, 2026\, racers can expect a schedule that includes: \nGates opening early for competitors and fans \nTime runs and qualifying sessions \nSportsman eliminations in the afternoon \nFull spectator access throughout the day \nAdmission & Racer Info\nWhile specific entry fees and class details for this particular date may vary\, standard MIR events usually include a mix of classes such as Top ET\, Modified ET (including motorcycles)\, and Junior Dragster competition. Entry fees for races generally include driver admission\, and spectator tickets are offered at affordable rates\, with kids often admitted free. \nFall Racing Atmosphere\nOctober marks the heart of fall racing at MIR\, and the October 17 date sits right amid a lineup of exciting events that attract both veteran racers and local enthusiast drivers. These events blend competition with community\, offering fans a chance to see everything from door cars and street racers to dedicated drag machines in head-to-head eliminations on the quarter-mile. \nWhat to Expect\nWhile exact purses and class specifics for the October 17 event weren’t available at press time\, racers typically enjoy: \nCompetitive ET eliminations \nA welcoming atmosphere for sportsman and novice racers \nAction from early morning warmups to late afternoon finals \nWhether you’re planning to race or spectate\, October 17\, 2026\, at Maryland International Raceway offers an exciting day of grassroots drag racing as the 2026 season heads toward its close. 34th Annual Mopar Eastern Classic. URL:https://moparcenter.com/event/34th-annual-mopar-eastern-classic/ CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2026/01/ec.webp END:VEVENT BEGIN:VEVENT DTSTART;TZID=UTC:20261017T070000 DTEND;TZID=UTC:20261017T170000 DTSTAMP:20260604T100928 CREATED:20251121T005430Z LAST-MODIFIED:20260128T201209Z UID:11239-1792220400-1792256400@moparcenter.com SUMMARY:FALL FLING 2026 DESCRIPTION:FALL FLING 2026 – October 17\, 2026 \nThe Fall Fling is an all Mopar Car Show and Shine event. Fall Fling is a relaxed non-judged affair that is open to all Mopars and AMCs. \nThere will be about 350 Mopars\, 175 swappers\, and a manufacturers midway area displayed entirely on a shaded tree-adorned grass-covered park. Mopar show cars and spectators from all over the western United States and Canada take the yearly trek to Fall Fling. On the Friday morning before Fall Fling\, there is a Cruise from Woodley Park to Malibu\, for lunch by the Pacific Ocean. The event will be rain or shine. Feel free to bring your daily drivers\, works in progress\, projects\, trailer queens\, modern mopar\, show queens. If it’s Mopar\, it’s welcome whatever condition. \nYou can call or email with any unanswered questions to 818.759.1779 or info@cpwclub.com. \n\nRegister\nFall Fling Flyer\nSchedule of Events\nMap / Directions\nLocal Hotel Information\nFAQs URL:https://moparcenter.com/event/fall-fling-2026/ LOCATION:FALL FLING 2025\, Woodley Park Van Nuys \, CA\, CA\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2025/10/top-picks-from-the-36th-annual-cpw-mopar-spring-fling-show-2024-04-22_01-51-58_256268.webp ORGANIZER;CN="Chrysler Performance West Car Club":MAILTO:info@cpwclub.com END:VEVENT BEGIN:VEVENT DTSTART;TZID=UTC:20261017T080000 DTEND;TZID=UTC:20261018T170000 DTSTAMP:20260604T100928 CREATED:20260128T011653Z LAST-MODIFIED:20260128T011653Z UID:14074-1792224000-1792342800@moparcenter.com SUMMARY:Mopar Blast 2026 DESCRIPTION:St. Louis Mopar Blast: Midwest’s Ultimate Mopar Celebration Returns\nThe St. Louis Mopar Blast has solidified its reputation as one of the Midwest’s premier gatherings for Mopar® enthusiasts\, bringing together classic muscle cars\, parts hunters\, and drag racers for a weekend packed with automotive passion and community spirit. Held annually at World Wide Technology Raceway in Madison\, Illinois\, just east of St. Louis\, Missouri\, the 2025 edition delivered excitement for fans and competitors alike. \nMuscle Car Showcase & Car Show\nAt the heart of the St. Louis Mopar Blast is its car show\, where rows of meticulously restored and modified Plymouth\, Dodge\, and Chrysler vehicles line the grounds. From roaring Challengers and Chargers to legendary classics like the Road Runner\, the show attracts both seasoned collectors and local Mopar lovers who come to admire the craftsmanship and automotive history on display. \nSpectators can engage with owners\, vote for fan favorites\, and enjoy seeing both vintage Mopars and modern performance machines side by side. The atmosphere is as much about camaraderie and shared passion as it is about horsepower and design. \nSwap Meet – A Treasure Hunt for Parts & Memorabilia\nPart of what makes the Mopar Blast truly special is its swap meet\, a bustling marketplace where enthusiasts and collectors gather to buy\, sell\, and trade parts\, accessories\, and automotive memorabilia. Whether you’re in search of rare components for a restoration project or unique collectibles to display\, the swap meet offers something for every level of enthusiast. \nVendors range from longtime parts specialists to passionate collectors\, making it a must-visit destination for those looking to enhance their Mopar builds or complete long-sought restoration projects. \nDrag Racing Action – Mopars on the Strip\nThe weekend isn’t just about showcasing cars — it also features drag racing action that lets Mopar power shine on the quarter-mile. From classic V8 muscle to modern high-performance challengers\, racers compete head-to-head in thrilling eliminations that draw cheers from the crowd. \nRacing classes include options for both seasoned competitors and weekend racers\, with early bird registration available prior to the event. Whether you’re watching or racing\, the Mopar Blast drag races are a highlight for anyone who loves the thrill of straight-line speed. \nTickets & Participation\nTickets and registration for the event are affordable and flexible\, with options for single-day or two-day access. Swap meet spaces\, car show entries\, and drag strip participation can all be pre-booked online\, making it easy for attendees to plan their weekend and get the most out of the Mopar Blast experience. \nCommunity & Tradition\nMore than just a car show or race\, the St. Louis Mopar Blast has become a community gathering point for Mopar enthusiasts across the region. It’s a place where passion for American muscle brings people together — swapping stories\, sharing expertise\, and celebrating a legacy of performance and style that has defined Mopar culture for generations. \nWhether you’re a die-hard Mopar aficionado or simply love classic and modern American cars\, the St. Louis Mopar Blast offers an unforgettable blend of horsepower\, history\, and community spirit — and it continues to grow as a must-attend event on the Mopar calendar. Oct 17 – Oct 18\, 2026. \nContact: \nRon Mergel \nRonMergel@yahoo.com \n314-229-7711 URL:https://moparcenter.com/event/mopar-blast-2026/ LOCATION:World Wide Technology Raceway\, 700 Raceway Blvd\,\, Madison\, IL\, 62060\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2026/01/carshow.webp END:VEVENT BEGIN:VEVENT DTSTART;TZID=UTC:20261021T080000 DTEND;TZID=UTC:20261024T170000 DTSTAMP:20260604T100928 CREATED:20260128T015704Z LAST-MODIFIED:20260128T015704Z UID:14083-1792569600-1792861200@moparcenter.com SUMMARY:Mopar Fever 2026 DESCRIPTION:Mopar Fever Returns — A Celebration of Classic Dodge\, Plymouth & Chrysler Muscle\nThe roar of big-block engines\, gleaming chrome\, and the unmistakable presence of classic Mopar® muscle cars are all on the calendar again as Mopar Fever revs up for another unforgettable gathering of performance enthusiasts. Hosted at Wagon Wheel Raceway & Expo Center in Columbus\, Ohio\, this annual event brings together fans of iconic American muscle for a full weekend of cars\, camaraderie\, and high-octane fun. \nWhat Is Mopar Fever?\nMopar Fever is more than a typical car show — it’s a full-blown Mopar celebration. From vintage classics to modern performance machines\, the event draws Dodge\, Plymouth\, Chrysler\, and related marques under one roof for friendly competition\, display\, and shared passion. \nWhether you’re restoring a classic B-body Barracuda or cruising in a late-model Challenger\, Mopar Fever offers something for every level of enthusiast. \n\nHighlights of the Event\n🏁 Car Show & Cruise-In\nParticipants display their beloved Mopars in a relaxed\, family-friendly car show setting where attendees can stroll the rows\, admire beautiful builds\, and swap stories with fellow enthusiasts. Expect to see: \n\n\nDodge Chargers \n\n\nPlymouth Road Runners \n\n\nClassic A\, B\, and E-bodies \n\n\nModern Hellcats and Demons \n\n\nEnthusiasts can enjoy the sights\, vote on fan favorites\, and soak in the rich heritage of Mopar performance. \n\n🛠️ Swap Meet and Vendor Area\nNo Mopar event would be complete without a bustling swap meet — and Mopar Fever delivers. The vendor area features parts\, accessories\, collectibles\, and restoration gear from a wide range of sellers. Whether you’re hunting for rare trim pieces or performance upgrades\, the swap meet is a treasure trove for builders and collectors alike. \n\n🏆 Awards and Recognition\nShowgoers can compete for awards in multiple categories. From Best of Show and Best Restoration to Best Modern Mopar\, awards highlight standout cars and their owners’ dedication. It’s a great way to celebrate craftsmanship\, originality\, and the passion that fuels the Mopar community. \n\n🌟 Community Atmosphere\nMopar Fever is as much about community as it is about cars. Whether you’re a long-time Mopar fanatic or a new enthusiast just discovering the brand’s legacy\, the event offers a welcoming atmosphere where people share tips\, laughs\, and lifelong friendships. \n\nWhen & Where\n📍 Wagon Wheel Raceway & Expo CenterColumbus\, Ohio📅 Event Dates: Oct. 21 – 24th 2026 \nThis central location and fan-friendly venue make it easy for regional and national Mopar fans to converge and celebrate together. \n\nPlan Your Visit\nEntry details\, registration\, and schedule updates are all available on the official event listing. Attendees are encouraged to register early for car show spots and swap meet spaces to secure the best placement and ensure full participation. \nWhether you’re prepping your ride for display or simply looking to enjoy a weekend filled with horsepower and history\, Mopar Fever continues to be a must-attend event on the muscle car calendar. \nEvent Website: Event Website \nContact Info: Phone: (843) – 742 – 0892\nEmail: info@8fo3mopars.com URL:https://moparcenter.com/event/mopar-fever-2026/ LOCATION:Conway sports plex\, 1515 mill pond rd.\, Conway\, SC\, 29526\, United States CATEGORIES:Cruises,Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2026/01/mm.webp END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20261031 DTEND;VALUE=DATE:20261101 DTSTAMP:20260604T100928 CREATED:20260112T020718Z LAST-MODIFIED:20260112T020718Z UID:13369-1793404800-1793491199@moparcenter.com SUMMARY:Mopars at The Rock Fall 2026 DESCRIPTION:Mopars at The Rock returns in 2026\n\n\nFor the 4th straight season\, we’re bringing you both a Spring AND Fall edition — doubling down on pure Mopar muscle and Pentastar-powered performance.\n\n\nGet those Mopar rides tuned\, shined\, and ready\, because we’re delivering two full weekends of all-out Mopar action at Rockingham Dragway.\n\n\n2026 Event Dates\n\n\nMopars at The Rock – Spring\nMay 16\, 2026\n\n\nMopars at The Rock – Fall\nOctober 31\, 2026\n\n\nWeekend Format for BOTH Events\n• Friday: Test & Tune\n• Saturday: Mopars at The Rock main event\n– Jet Car\n– Swap Meet\n– Car Show\n• Saturday & Sunday: Modern Street HEMI Shootout racing\n\n\nWhether you’re chasing ETs\, points\, or bragging rights\, The Rock is the place to be for Mopar racers and fans in 2026.\n\n\nMopar Or No Car URL:https://moparcenter.com/event/mopars-at-the-rock-fall-2026/ LOCATION:Rockingham Dragway\, 2153 N US Hwy 1\, Rockingham\, NC\, 28379\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2026/01/CARS.webp END:VEVENT BEGIN:VEVENT DTSTART;VALUE=DATE:20261121 DTEND;VALUE=DATE:20261123 DTSTAMP:20260604T100928 CREATED:20251210T080404Z LAST-MODIFIED:20260128T200905Z UID:11930-1795219200-1795391999@moparcenter.com SUMMARY:Muscle Car and Corvette Nationals DESCRIPTION:November 21st and 22nd\, 2026\nDonald E. Stephens Convention Center\n5555 N River Rd\, Rosemont\, IL 60018\nFor more details\, visit the official website or contact Bob Ashton at Bashton426@gmail.com or (586-549-5291) \nMuscle Car and Corvette Nationals MCACN URL:https://moparcenter.com/event/muscle-car-and-corvette-nationals-2026/ LOCATION:Muscle Car and Corvette Nationals\, 5555 N River Rd\, Rosemont\, 60018\, United States CATEGORIES:Upcoming Events ATTACH;FMTTYPE=image/webp:https://moparcenter.com/wp-content/uploads/2025/12/mmmmm.webp END:VEVENT END:VCALENDAR