3PL Companies in Wichita 2022 | GoodFirms (2023)

"; } head = 'Companies (' + content.total_records + ')View all'; $('.company-result-section .search-result-label').html(head); $('.company-result-section').removeClass('hide'); $('.company-result-section .result-container').html(html); } } function s_Result(content, query) { var html = ''; if (content.data.length == 0) { $('.software-result-section .result-container').html(''); $('.software-result-section').addClass('hide'); } else { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); $('.search-list').removeClass('hide'); for (var i = 0; i < content.data.length; ++i) { var hit = content.data[i]; var url = 'href="/software/' + $.trim(hit.slug) + '"'; var visit_website = 'detail_page'; var image = '//assets.goodfirms.co/software/small/'+hit.logo; var highlightResult = hit['_highlightResult']; html += "

"; } head = 'Software (' + content.total_records + ')View all'; $('.software-result-section .search-result-label').html(head); $('.software-result-section').removeClass('hide'); $('.software-result-section .result-container').html(html); } } function m_Result(content, query) { var html = ''; if (content.data.length == 0) { $('.menu-result-section .result-container').html(''); $('.menu-result-section').addClass('hide'); } else { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); $('.search-list').removeClass('hide'); for (var i = 0; i < content.data.length; ++i) { var hit = content.data[i]; var url = 'href="' + $.trim(hit.url) + '"'; var highlightResult = hit['_highlightResult']; html += "

"; } head = 'Categories (' + content.total_records + ')View all'; $('.menu-result-section .search-result-label').html(head); $('.menu-result-section').removeClass('hide'); $('.menu-result-section .result-container').html(html); } } function b_Result(content, query) { var html = ''; if (content.data.length == 0) { $('.blog-result-section .result-container').html(''); $('.blog-result-section').addClass('hide'); if ($(".company-result-section").hasClass("hide") && $(".software-result-section").hasClass("hide") && $(".menu-result-section").hasClass("hide") && $(".blog-result-section").hasClass("hide")) { setTimeout(function () { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); }, 2500); } } else { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); $('.search-list').removeClass('hide'); for (var i = 0; i < content.data.length; ++i) { var hit = content.data[i]; if(hit.software_category_id) var url = 'href="/' + $.trim(hit.software_category_slug) + '/blog/' + $.trim(hit.slug) + '"'; else var url = 'href="/blog/' + $.trim(hit.slug) + '"'; var highlightResult = hit['_highlightResult']; html += "

"; } head = 'Blog (' + content.total_records + ')View all'; $('.blog-result-section .search-result-label').html(head); $('.blog-result-section').removeClass('hide'); $('.blog-result-section .result-container').html(html); } } function r_Result(content, query) { var html = ''; if (content.data.length == 0) { $('.research-result-section .result-container').html(''); $('.research-result-section').addClass('hide'); if ($(".company-result-section").hasClass("hide") && $(".software-result-section").hasClass("hide") && $(".menu-result-section").hasClass("hide") && $(".research-result-section").hasClass("hide")) { setTimeout(function () { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); }, 2500); } } else { $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); $('.search-list').removeClass('hide'); for (var i = 0; i < content.data.length; ++i) { var hit = content.data[i]; var url = 'href="/resources/' + $.trim(hit.slug) + '"'; var highlightResult = hit['_highlightResult']; html += "

"; } head = 'Research (' + content.total_records + ')View all'; $('.research-result-section .search-result-label').html(head); $('.research-result-section').removeClass('hide'); $('.research-result-section .result-container').html(html); } } function addDefaultSrc(type, target) { if (type == 'topic') target.src = 'https://assets.goodfirms.co/react-app-icons/no-topic.png'; if (type == 'profile') target.src = 'https://assets.goodfirms.co/react-app-icons/default.png'; if (type == 'company') target.src = 'https://assets.goodfirms.co/react-app-icons/default-company.jpg'; if (type == 'software') target.src = 'https://assets.goodfirms.co/react-app-icons/default-software.jpg'; } function getProfileImageColor(slug) { var alphabetColor = {'A': '#1B5289', 'B': '#598FC5', 'C': '#776759', 'D': '#6490A2', 'E': '#FF9191', 'F': '#8BD9E1', 'G': '#A292E9', 'H': '#DABABA', 'I': '#DAA854', 'J': '#478267', 'K': '#AAB783', 'L': '#5EC0EF', 'M': '#A7ACB0', 'N': '#E3A490', 'O': '#7387A9', 'P': '#374F83', 'Q': '#8B6767', 'R': '#F15D97', 'S': '#B58D69', 'T': '#AFE4DC', 'U': '#7580FC', 'V': '#BF7CD8', 'W': '#9CC975', 'X': '#F4833D', 'Y': '#F04A3C', 'Z': '#47D3C5', 1: '#E9C0A1', 2: '#305774', 3: '#82C999', 4: '#FE957C', 5: '#F7D36C', 6: '#46AEB4', 7: '#545857', 8: '#052147', 9: '#4F2147', 0: '#902147', }; return (alphabetColor[slug.charAt(0).toUpperCase()]); } // company callback called on each query function cCallback(err, content) { if (err) { return; } if (content.query != $('.right-heder-search-input').val()) { return; } var html = c_Result(content); } // software callback called on each query function sCallback(err, content) { if (err) { return; } if (content.query != $('.right-heder-search-input').val()) { return; } var html = s_Result(content); } // menu callback called on each query function mCallback(err, content) { if (err) { return; } if (content.query != $('.right-heder-search-input').val()) { return; } var html = m_Result(content); } // blog callback called on each query function bCallback(err, content) { if (err) { return; } if (content.query != $('.right-heder-search-input').val()) { return; } var html = b_Result(content); } function checkResults(results) { // let body = document.body; // if (results) { // // if ($(window).width() > 480) // // body.style.width = 'calc(100% - 17px)'; // // else // // body.style.width = '100%'; // // body.style.position = 'fixed'; // // body.style.top = '0px'; // // body.style.overflow = 'hidden'; // } else { // // body.style.width = 'unset'; // //body.style.position = 'unset'; // // body.style.top = 'unset'; // // body.style.overflow = 'unset'; // } } function removeSheet() { $('.backgroundSheetContainer').fadeTo(500, 0, function () { $('.global.sheetContainer').remove(); }); $('.bottomSheetList').addClass('clsh'); $('body').removeClass('ohidden'); } function removefilterSheet() { $('.backgroundSheetContainer').fadeTo(500, 0, function () { $('.global.sheetContainer').remove(); }); $('.bottomSheetList').addClass('clsh'); $('.software-features-filter').removeClass('ohidden'); } function hidesheet() { $('.backgroundSheetContainer').fadeTo(500, 0); $('.bottomSheetList').addClass('clsh'); $('body').removeClass('ohidden'); $('.sheetContainer').css({visibility: "hidden"}); } function showsheet(opendiv = '') { $('.backgroundSheetContainer').fadeTo(500, 1); $('body').addClass('ohidden'); $('.bottomSheetList').removeClass('clsh'); if(opendiv) $('.sheetContainer.'+opendiv).css({visibility: "visible"}); else $('.sheetContainer').css({visibility: "visible"}); } $(document).ready(function () { $(document).mouseup(function (e) { var container = $("#header li.navbar-nav-li"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { if(!$('.header-right').hasClass('open')) { $('.backdrop-transparent').addClass('hide'); } $("ul li.navbar-nav-li").removeClass('active'); $('#site_header').removeClass('homedrop'); } }); $(document).on("click", ".navbar-nav-li-a", function (k) { $('.option-bg').removeAttr("style"); //debugger; var browserwidth = 1279; if(Math.round(window.devicePixelRatio * 100)>100) browserwidth = 1260 if ($(window).width() <= browserwidth) { $(".navbar-nav-li-a").removeClass('open'); k.preventDefault(); $div = $("ul.left-submenu",$(this).parents("li")); if( $div.length <= 0 ) { $div = $("ul.extra-sub-menu-ul", $(this).parents("li")); } else { $("#header ul.extra-sub-menu-ul").hide(); } $div.toggle(); if ($div.is(":visible")) { $(this).addClass('open'); $(this).parents('.navbar-nav-li').find('.menu-browse-all').show(); } else { $('#header ul li.vcategory-menu').removeClass('open'); $('#header li.vcategory-menu li.section-entity-li').removeClass('open'); $('#header li.vcategory-menu').show(); $("#header ul .mega-sub-menu").hide(); $(this).parents('.navbar-nav-li').find('.menu-browse-all').hide(); } $("ul.left-submenu").not($div).hide(); return false } else { k.preventDefault(); $div = $(this).parents("li"); $("ul li.navbar-nav-li").not($div).removeClass('active'); $(this).parents("li").toggleClass('active'); if($(this).parents("li").hasClass('active')) { $('.backdrop-transparent').removeClass('hide'); $('#site_header').addClass('homedrop'); } else { $('.backdrop-transparent').addClass('hide'); $('#site_header').removeClass('homedrop'); } } }); $(document).on("click", ".vcategory-inner-arrow", function (k) { if ($(window).width() <= 1279) { k.preventDefault(); if($(this).parents("ul#category-menu").length > 0) { $('ul#category-menu li.vcategory-menu').removeClass('open'); $div = $(this).parents("li.vcategory-menu").find(".mega-sub-menu"); $div.toggle(); if ($div.is(":hidden")) { $('ul#category-menu li.vcategory-menu').show(); } else { $(this).parents("li.vcategory-menu").addClass('open'); $('ul#category-menu li.vcategory-menu').not($(this).parents("li.vcategory-menu")).hide(); } $("ul#category-menu .mega-sub-menu").not($div).hide(); $("ul#category-menu .mega-sub-menu").find('ul li').hide(); $("ul#category-menu .mega-sub-menu").find('ul li.section-entity-li').show(); } else { $('.course-menu-section ul.left-submenu li.vcategory-menu').removeClass('open'); $div = $(this).parents("li.vcategory-menu").find(".mega-sub-menu"); $div.toggle(); if ($div.is(":hidden")) { $('.course-menu-section ul.left-submenu li.vcategory-menu').show(); } else { $(this).parents("li.vcategory-menu").addClass('open'); $('.course-menu-section ul.left-submenu li.vcategory-menu').not($(this).parents("li.vcategory-menu")).hide(); } $(".course-menu-section ul.left-submenu .mega-sub-menu").not($div).hide(); //$(".course-menu-section ul.left-submenu .mega-sub-menu").find('ul li').hide(); $(".course-menu-section ul.left-submenu .mega-sub-menu").find('ul li.vcategory-sub-menu').show(); } return false } }); $(document).on("click", ".vcategory-sub-sub-arrow", function (k) { if ($(window).width() <= 1279) { k.preventDefault(); $div = $(this).parents("li.vcategory-sub-menu").find(".mega-sub-sub-menu"); $div.toggle(); if ($div.is(":hidden")) { $(this).parents("li.vcategory-sub-menu").removeClass('open'); $('.course-menu-section ul.left-submenu li.vcategory-sub-menu').show(); } else { $(this).parents("li.vcategory-sub-menu").addClass('open'); $('.course-menu-section ul.left-submenu li.vcategory-sub-menu').not($(this).parents("li.vcategory-sub-menu")).hide(); } return false } }); $(document).on("click", ".tab-content-list-title", function (k) { if ($(window).width() <= 1279) { k.preventDefault(); if($(this).parents("ul#category-menu").length > 0) { /* Hide all other section entity */ $('ul#category-menu li.vcategory-menu li.section-entity-li').removeClass('open'); $(this).parents('.mega-sub-menu').find('ul li').not($(this).closest('ul').find('li')).hide(); $(this).parents('.mega-sub-menu').find('ul li.section-entity-li').not($(this).closest('ul').find('li')).show(); $otherli = $(this).closest('ul').find('li'); $li = $(this).parent(); $otherli.not($li).toggle(); if ($otherli.not($li).is(":visible")) { $(this).parent("li").addClass('open'); } } return false } }); $(document).on("click", ".company-result-section a.detail_page", function () { gtag("event", "Detail View - Compnay Title", { event_category: "Search List - Detail", event_label: $(this).attr('title') }) }) $(document).on("click", ".software-result-section a.detail_page", function () { gtag("event", "Detail View - Software Title", { event_category: "Search List - Detail", event_label: $(this).attr('title') }) }) $(".global-search-input input").on("click", function (k) { setSearch(); k.stopPropagation(); return false }); $(".search-btn-light").on("click", function (k) { setSearch(); $(".right-heder-search-input").focus(); k.stopPropagation(); return false }); $(".right-heder-search-input").on("focus", function () { setSearch(); if ($('.navbar-toggle.slide-active').length) $("#slide-nav .navbar-toggle").trigger("click"); }); $(".right-heder-search-input").on("blur", function (k) { fireclosesearch() }); $(".search-cross-dark").on("click", function (k) { $("input.right-heder-search-input").val(""); hideSearch() }); $(document).keyup(function (k) { if (k.keyCode === 27) { $(".right-heder-search-input").blur() } }); var $inputfield = $('.right-heder-search-input'); var chosenp = ''; var ajaxRevReq = 'ToCanajaxRevReq'; $(document).on('keyup', '.right-heder-search-input', function (e) { var term = $(this).val().trim(); if (e.keyCode == 40) { // 38-up, 40-down if (chosenp === "") chosenp = 0; else if ((chosenp + 1) < $('.search-list .result-entity').length) chosenp++; $('.search-list .result-entity').removeClass('active'); $('.search-list .result-entity:eq(' + chosenp + ')').addClass('active'); $('.right-heder-search-input').val($('.search-list .result-entity:eq(' + chosenp + ') .enity-tilte').text()); return false; } else if (e.keyCode == 38) { if (chosenp === "") chosenp = 0; else if (chosenp > 0) chosenp--; $('.search-list .result-entity').removeClass('active'); $('.search-list .result-entity:eq(' + chosenp + ')').addClass('active'); $('.right-heder-search-input').val($('.search-list .result-entity:eq(' + chosenp + ') .enity-tilte').text()); return false; } else if (e.keyCode == 27) { h_searchListing(); $(this).val(''); return false; } else if (e.keyCode == 13) { if ($('.search-list .result-entity').length > 0) { if (chosenp.length == 0) $("form.global-search-input").unbind().submit(); else $('.search-list .result-entity:eq(' + chosenp + ') a')[0].click(); } else $("form.global-search-input").unbind().submit(); return false; } else { chosenp = ''; if (term != '') { //$('.search-cross-dark').addClass('hide'); $('.search_spin').removeClass('hide'); $('.right-heder-search-input').addClass('searching'); ajaxRevReq = $.ajax({ url: '/searches/search_all', type: "POST", data: {query: $inputfield.val()}, beforeSend: function () { if (ajaxRevReq != 'ToCancelPrevReq' && ajaxRevReq.readyState < 3) ajaxRevReq.abort(); }, error: function (xhr, ajaxOptions, thrownError) { if (thrownError == 'abort' || thrownError == 'undefined') return; ajaxRevReq.abort(); }, success: function (response) { if (term != $('.right-heder-search-input').val().trim()) return; if (response != 'null' && response != null) { var data = JSON.parse(response); if ((data.companies.total_records == 0) && (data.softwares.total_records == 0) && (data.blog.total_records == 0) && (data.menu.total_records == 0) && (data.research.total_records == 0)) { $('.empty-result-section').removeClass('hide'); $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); $('.search-list').removeClass('hide'); $('.company-result-section').addClass('hide'); $('.software-result-section').addClass('hide'); $('.menu-result-section').addClass('hide'); $('.blog-result-section').addClass('hide'); $('.research-result-section').addClass('hide'); } else { $('.empty-result-section').addClass('hide'); c_Result(data.companies, $inputfield.val()); s_Result(data.softwares, $inputfield.val()); b_Result(data.blog, $inputfield.val()); r_Result(data.research, $inputfield.val()); m_Result(data.menu, $inputfield.val()); } checkResults(data); } else { checkResults(null); $('.search-cross-dark').removeClass('hide'); $('.search_spin').addClass('hide'); $('.right-heder-search-input').removeClass('searching'); } } }); } else { h_searchListing(); checkResults(null); } } }); $(document).on('click', '.filtersheetClose', function () { removefilterSheet(); }); $(document).on('click', '.global .sheetClose', function () { removeSheet(); }); $(document).on('click', '.sheetClose', function () { hidesheet(); }); $(document).mouseup(function (e) { var container = $(".global .bottomSheetList"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { var parentcontainer = $(".global .backgroundSheetContainer"); if (parentcontainer.is(e.target)) { removeSheet(); removefilterSheet(); } } }); $(window).resize(function () { if ($(window).width() > 480) { $('body').removeClass('ohidden'); hidesheet(); $('.global.sheetContainer').remove(); } }); });

  • Home >
  • supply chain logistics companies >
  • 3pl >
  • Wichita
  • 6 Companies|Last updated: Jul 27, 2022

Sort By

Sponsored

  • Sponsored
  • Most Reviews

Hourly Rate

Select

(Video) Worldcraft Logistics USA Lunar New Year Wish 2022

Advanced Filter

Sort By

Sponsored

  • Sponsored
  • Most Reviews

Hourly Rate

Select

Employees

Select

Industry

(Video) Local truck driver expose his paychecks!

Select

Client Focus

Select

No. of Reviews

All Companies

Overall Ratings

All Companies

Company Certification

Select

    '+allli+'

'; $(this).parents('.service-features-filter').append(sheet); $(this).parents('.service-features-filter').find('ul.bottomSheetListUL input[type="checkbox"]').removeAttr('id'); $(this).parents('.service-features-filter').find('ul.bottomSheetListUL label').removeAttr('for'); showsheet('global'); $(this).parents('.service-features-filter').removeClass('ohidden'); } else { $div.toggleClass('open'); $(".filter-section").not($div).removeClass('open'); $(this).parents('.service-features-filter').removeClass('ohidden'); if($('.f-country-s.open').length ==1) { $('.location-filter').val(''); $('.f-country-s ul li').css('display', ''); $('.location-filter').focus(); } }});$(document).on('click','.advanced_filter',function(){ if($('.advance-service-filter').is(":visible")) $('.advance-service-filter, .advance-filter-overlay').hide(); else $('.advance-service-filter, .advance-filter-overlay').show();}); $(document).mouseup(function(e) { var container = $(".filter-selection"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { if( $(e.target).attr('class') != 'location-filter' && $(e.target).attr('class') != 'cate-filter' ) $(".filter-section").removeClass('open'); } //if($(window).width()>991) //{ var container = $(".advance-service-filter"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { if( $(e.target).attr('class') != 'advanced_filter' ) $(".advance-service-filter, .advance-filter-overlay").hide(); } //}}); $(document).on('change','.service-filter ul.bottomSheetListUL input[type="checkbox"]',function(){ if($(this).parents(".sheetContainer").length > 0) { if($(this).is(':checked')) { $(this).parents('label').addClass('checked'); $(".advance-service-filter .service-features-filter").find(".filter-section input[name='"+$(this).attr('name')+"']").parents('label').addClass('checked'); } else { $(this).parents('label').removeClass('checked'); $(".advance-service-filter .service-features-filter").find(".filter-section input[name='"+$(this).attr('name')+"']").parents('label').removeClass('checked'); } $(".advance-service-filter .service-features-filter").find(".filter-section input[name='"+$(this).attr('name')+"']").prop('checked', $(this).is(':checked')); } var parentdiv = $(".advance-service-filter .service-features-filter").find(".filter-section input[name='"+$(this).attr('name')+"']").parents(".filter-section"); checkcont = parentdiv.find("input[type='checkbox']:checked").length; if(checkcont == 1) { parentdiv.find(".filter-selection").html(parentdiv.find("input[type='checkbox']:checked").attr('data_name')); parentdiv.find(".filter-selection").addClass('selected'); } else if(checkcont == 0) { parentdiv.find(".filter-selection").html('Select'); parentdiv.find(".filter-selection").removeClass('selected'); } else { parentdiv.find(".filter-selection").html(checkcont+' Selections'); parentdiv.find(".filter-selection").addClass('selected'); }}); $(window).on("resize", function () { mxheight = $(window).height()-250; $('.service-features-filter').css("max-height",mxheight); $('.advance-service-filter .service-features-filter').removeAttr( 'style' ); if($(window).width()<992) { $('.service-features-filter').removeAttr( 'style' ); if($('.advance-service-filter').is(":visible")) { console.log('herer'); $('.advance-service-filter .service-filter').addClass('open'); // $('body').addClass('ohidden'); // $('.overlay-filter').show(); } } if($(window).width()>991) { $('.service-filter').remove('open'); $('.overlay-filter').hide(); $('body').removeClass('ohidden'); $('body').removeAttr('style'); } if($(window).width()<670) { function hidemobilesort() { removefilterSheet(); $('.sheetContainer').css({visibility: "hidden"}); $('.service-features-filter .mobile-sort').removeClass('open'); } $(document).on('click','.mobile-lo1-features',function(){ $('.service-entity').find('.sheetContainer').remove(); var allli = $(this).parents('.mobile-lo1-options').find('ul').html(); if($(this).parents('.free-tag').find('.follow-option').length > 0) { //software is following var newfollowli = $(this).parents('.free-tag').find('.follow-option li').html(); } else { var newfollowli = $(this).parents('.free-tag').find('.follow-organisation-list').html(); } allli = allli+'

  • '+newfollowli+'
  • '; var sheet = '

      '+allli+'

    '; $(this).parents('.mobile-lo1-options').append(sheet); showsheet('global'); }); $(document).mouseup(function(e) { var container = $(".bottomSheetList"); // if the target of the click isn't the container nor a descendant of the container if (!container.is(e.target) && container.has(e.target).length === 0) { var parentcontainer = $(".backgroundSheetContainer"); if (parentcontainer.is(e.target)) { hidemobilesort(); } } }); } if($(window).width()<481) { //$('body').addClass('ohidden'); $(document).on('click','.service-filter-section .sheetClose',function(){ hidemobilesort(); }); } $(document).on('click','.sheetItem a.mob_sort',function(){ if($(this).hasClass('active')) { return false } else { $(this).parents('.sort-by-so').find('.filter-selection').text($(this).text()); $('.sheetItem a.mob_sort').removeClass('active'); $(this).addClass('active'); makeurl(); } });}).resize();$(document).on('change', '.filter-section input[type=checkbox]', function () { var filter_ele = $(this).parents('.filter-section').attr('filter-param'); var ele_id = $(this).attr('lab-index'); /* other same div */ var filter_section = $('.filter-section[filter-param="'+filter_ele+'"]'); var filter_section_label = $('.filter-section[filter-param="'+filter_ele+'"] label[data-label="'+ele_id+'"'); if($(this).is(":checked")) { $(this).parents('label').addClass('checked'); if($('.advance-service-filter').is(":visible")) $('.advance-service-filter .filter-section[filter-param="'+filter_ele+'"]').addClass('open'); else $(this).parents('.filter-section').addClass('open'); filter_section_label.addClass('checked'); filter_section_label.find('input[type=checkbox]').prop('checked', true); } else { $(this).parents('label').removeClass('checked'); filter_section_label.removeClass('checked'); if($('.advance-service-filter').is(":visible")) $('.advance-service-filter .filter-section[filter-param="'+filter_ele+'"]').addClass('open'); else $(this).parents('.filter-section').addClass('open'); filter_section_label.find('input[type=checkbox]').prop('checked', false); } parentdiv = $(this).parents(".filter-section"); checkcont = parentdiv.find("input[type='checkbox']:checked").length; if(checkcont == 1) { parentdiv.find(".filter-selection").html(parentdiv.find("input[type='checkbox']:checked").attr('data_name')); parentdiv.find(".filter-selection").addClass('selected'); filter_section.find(".filter-selection").html(parentdiv.find("input[type='checkbox']:checked").attr('data_name')); filter_section.find(".filter-selection").addClass('selected'); } else if(checkcont == 0) { parentdiv.find(".filter-selection").html('Select'); parentdiv.find(".filter-selection").removeClass('selected'); filter_section.find(".filter-selection").html('Select'); filter_section.find(".filter-selection").removeClass('selected'); } else { parentdiv.find(".filter-selection").html(checkcont+' Selections'); parentdiv.find(".filter-selection").addClass('selected'); filter_section.find(".filter-selection").html(checkcont+' Selections'); filter_section.find(".filter-selection").addClass('selected'); }});$(document).on('change', '.filter-section input[type=radio]', function () { var filter_ele = $(this).parents('.filter-section').attr('filter-param'); var ele_id = $(this).attr('lab-index'); /* other same div */ var filter_section = $('.filter-section[filter-param="'+filter_ele+'"]'); var filter_section_label = $('.filter-section[filter-param="'+filter_ele+'"] label[data-label="'+ele_id+'"'); if($(this).is(":checked")) { filter_section.find('label').removeClass('checked'); $(this).parents('label').addClass('checked'); if($('.advance-service-filter').is(":visible")) $('.advance-service-filter .filter-section[filter-param="'+filter_ele+'"]').addClass('open'); else $(this).parents('.filter-section').addClass('open'); } parentdiv = $(this).parents(".filter-section"); checkcont = parentdiv.find("input[type='radio']:checked").length; if(checkcont == 1) { parentdiv.find(".filter-selection").html(parentdiv.find("input[type='radio']:checked").attr('data_name')); parentdiv.find(".filter-selection").addClass('selected'); filter_section.find(".filter-selection").html(parentdiv.find("input[type='radio']:checked").attr('data_name')); filter_section.find(".filter-selection").addClass('selected'); }});$(document).on('change','.service-filter ul.bottomSheetListUL input[type="radio"]',function(){ var parentdiv = $(".advance-service-filter .service-features-filter").find(".filter-section input[lab-index='"+$(this).attr('lab-index')+"']").parents(".filter-section"); if($(this).parents(".sheetContainer").length > 0) { if($(this).is(':checked')) { $(this).parents('.bottomSheetListUL').find('label').removeClass('checked'); parentdiv.find('label').removeClass('checked'); $(this).parents('label').addClass('checked'); $(".advance-service-filter .service-features-filter").find(".filter-section input[lab-index='"+$(this).attr('lab-index')+"']").parents('label').addClass('checked'); } $(".advance-service-filter .service-features-filter").find(".filter-section input[lab-index='"+$(this).attr('lab-index')+"']").prop('checked', $(this).is(':checked')); } checkcont = parentdiv.find("input[type='radio']:checked").length; if(checkcont == 1) { parentdiv.find(".filter-selection").html(parentdiv.find("input[type='radio']:checked").attr('data_name')); parentdiv.find(".filter-selection").addClass('selected'); }});$(document).on('click', '.show-mo-filter', function () { //$('.service-filter').toggleClass('open'); if($('.advance-service-filter').is(":visible")) { $('.advance-service-filter .service-filter').removeClass('open'); } else { $('.advance-service-filter, .advance-filter-overlay').show(); $('.advance-service-filter .service-filter').addClass('open'); }});$(document).on('click', '.back-filter', function () { if($('.advance-service-filter').is(":visible")) { $('.advance-service-filter, .advance-filter-overlay').hide(); if($(window).width()<992) { $('.advance-service-filter .service-filter').toggleClass('open'); } } else { $('.service-filter').toggleClass('open'); } $('.overlay-filter').hide(); $('body').removeClass('ohidden'); $('body').removeAttr('style');});

    Best 3PL Companies in Wichita | List of 3PL Companies in Wichita

    • Logistics Park Kansas City (LPKC) is a 1,700-acre master-planned distribution and warehouse development in Edgerton, Kansas — just southwest of downtown Kansas City.Served by global intermodal transportation leader,BNSF Railway, LPKC is a world-class inland port with capacity for 17 million square feet ... learn more about Logistics Park

      Visit website

      < $25/hr

      2 - 9

      Wichita, Kansas

      (Video) Cardinal Health manufacture company
    • In 1936, V.A. Baum founded OK Transfer & Storage in downtown Wichita. He focused his business on local moving in Wichita to accommodate the needs of the growing city. Over the years the Baum family has grown OK Transfer & Storage into a nationwide mover of choice. Now, as we enter the 21st Century, the fourth g ... learn more about Ok Transfer

      Visit website

      < $25/hr

      2 - 9

      1936

      Wichita, Kansas

    • HENRY INDUSTRIES INCORPORATED IS A FULL-SERVICE NATIONWIDE SOLUTIONS PROVIDER OF DISTRIBUTION CENTER, WAREHOUSE AND LOGISTIC NEEDS.Since 1991, HII has provided the high quality resources that successful businesses need to prosper. “For over twenty years, we have believed in doing things only one way – t ... learn more about Henry Industries

    • NorthPoint Development captured the phrase to embody the concept that no contract can ever be written to reflect everything that will occur in a complex business relationship.

      Visit website

      < $25/hr

      2 - 9

      Wichita, Kansas

      (Video) Beyond the Silos: The Benefits of Taking a Logistics Management Perspective
    • The United Warehouse Company has been in business since 1915 providing customers with secure warehousing, transportation and distribution services, 3PL and contract packaging services in Kansas and Oklahoma.We operate well over a million square feet of ultra-modern warehousing and distribution facilities in multipl ... learn more about United Warehouse Company

      Visit website

      $100 - $149/hr

      50 - 249

      1915

      Wichita, Kansas

    • At Hayes Company, we offer the complete solution to your supply chain. This includes full service vendor and inventory management. With our operations strategically positioned in Dallas, Texas, we have the ability to support your largest projects.

      Visit website

      $25 - $49/hr

      2 - 9

      Wichita, Kansas

    Got A Question? Ask Away!

    Contact Us

    (Video) Tackling the Top Three Challenges in Industrial Real Estate: Supply Chain Real Estate Series

    FAQs

    What is the best 3PL company? ›

    Largest U.S. Based 3PLs Ranked by 2021 Gross Logistics Revenue/Turnover
    A&A RankThird-Party Logistics Provider (3PL)Gross Logistics Revenue (US$ Millions)*
    1C.H. Robinson22,355
    2Expeditors16,524
    3UPS Supply Chain Solutions14,639
    4Kuehne + Nagel (Americas)12,980
    46 more rows

    How do I choose a 3PL provider? ›

    Choosing a Third-Party Logistics Provider
    1. Do your research. ...
    2. Establish a partnership. ...
    3. Look for a range of offerings. ...
    4. Ensure your 3PL has robust technology. ...
    5. Aim for scalability. ...
    6. Determine customization capabilities. ...
    7. Find a provider that commits to continuous improvement. ...
    8. Find a provider that offers omnichannel expertise.
    10 Mar 2018

    Is Walmart a 3PL? ›

    Walmart fulfillment services are provided in-house by Walmart, as well as by third-party logistics service providers. Note: ShipBob is an official 3PL partner of Walmart and is listed as a shipping and fulfillment solution for Walmart's marketplace sellers.

    Which company is 3PL? ›

    Armstrong & Associates Top 50 U.S. 3PLs
    2018 RankThird-party Logistics Provider (3PL)2018 Gross Logistics Revenue (USD Millions)*
    1C.H. Robinson16,631
    2XPO Logistics10,850
    3UPS Supply Chain Solutions9,814
    4J.B. Hunt (JBI, DCS & ICS)8,214
    46 more rows
    5 Jun 2019

    Is Amazon a 3PL? ›

    This third-party logistics provider (3PL)service allows other businesses to utilize Amazon's massive infrastructure to provide ecommerce fulfillment for their own customers. Amazon is the largest third-party logistics providers (3PL) company in the world.

    Is FedEx a 3PL? ›

    FedEx Supply Chain, is a 3PL provider in the US and Canada. Industries it serves include: technology and electronics, retail and e-commerce, consumer and industrial goods, and healthcare industries.

    What makes a good 3PL? ›

    An effective 3PL will reach out to you with questions and comments to help improve operations and provide better service for your customers. They're also adept at troubleshooting and coming up with creative solutions. They may re-engineer processes or apply best practices to ensure optimal performance.

    How does a 3PL work? ›

    A third-party logistics (3PL) company works with businesses to outsource operational logistics that span the gamut from warehousing, picking, packaging, inventory, order fulfillment, forwarding and delivery. Allowing a 3PL company to oversee the logistics lets you focus on your core business needs.

    How do I choose a good logistics company? ›

    Mentioned below are some of the factors that you should consider when you set out to choose a logistics company.
    1. Capacity and Coverage. Different companies have different needs and requirements when it comes to capacity and coverage. ...
    2. Customer Service. ...
    3. Experience and Stability. ...
    4. Speed and Reliability. ...
    5. Price.
    26 Jul 2019

    What does FSS mean at Walmart? ›

    Features Something Something. 11. Longtermass • 5 yr. ago. Additional comment actions.

    How do you become a Walmart partner? ›

    How to Sell on Walmart Marketplace
    1. Step 1: Apply to Be a Marketplace Seller. To become a Walmart Marketplace seller, visit marketplace.walmart.com, click “Request to Sell”, and fill in all the required fields. ...
    2. Step 2: Complete Your Registration. ...
    3. Step 3: Complete Partner Profile. ...
    4. Step 5: Test Items and Orders.
    1 Nov 2020

    What is WFS Walmart? ›

    Walmart Fulfillment Services (WFS) offers end-to-end fulfillment services for Walmart Marketplace sellers. With one of the world's largest supply chains, we're uniquely positioned to provide the scale, quality, cost, and efficiency you need to grow a successful business on Walmart.com.

    How does a 3PL make money? ›

    Depending on the complexity and frequency of your needs, 3PL procurement companies charge either per-project fees or account retainer fees. If you're looking for a one-time manufacturing run for a product, procurement 3PLs may charge a service or consultancy fee.

    How many 3PLs are there in the US? ›

    There are 20,406 Third-Party Logistics businesses in the US as of 2022, an increase of 2.1% from 2021.

    What is the difference between a 3PL and a broker? ›

    A 3PL and a freight broker connect the shipper and the carrier but have different roles. A freight broker tends to be a part of one specific event in the logistics process- moving goods between shippers and carriers. A 3PL provides a much wider variety of services than just managing a particular shipment.

    What does 3PL mean in logistics? ›

    A 3PL (third-party logistics) provider offers outsourced logistics services, which encompass anything that involves management of one or more facets of procurement and fulfillment activities. In business, 3PL has a broad meaning that applies to any service contract that involves storing or shipping items.

    Is 3PL cheaper than FBA? ›

    Higher Fees

    Amazon's storage fees are generally higher compared with 3PLs and usually rise during holidays. Plus they offer less fluidity in your inventory cycles, so it might be harder to negotiate your inventory based on spikes and dips.

    What software is used in logistics? ›

    Soloplan CarLo. CarLo is a logistics software that can cover all forwarding processes and everything needed for efficient transport management. This includes order entry, planning, tour planning, freight invoicing, fleet management, and business intelligence to analyze…

    What does 2 PL mean? ›

    2PL or Second Party Logistics is often the first step in outsourcing logistics tasks including transport. Companies that offer 2PL services can be considered a logistics operator since, in addition to transport, they are also responsible for the storage of goods.

    What is the difference between 2PL and 3PL? ›

    One of those is known as 2PL, or second-party logistics. 3PL is when a company outsources elements of their supply chain, including distribution, warehousing, and fulfillment to third parties, while a 2PL is the actual carrier, such as shipping lines, airlines, freight forwarders, etc.

    What does FedEx stand for? ›

    History and Etymology for FedEx

    after FedEx, trademark of the FedEx Corporation (earlier Federal Express), a courier delivery service.

    What services are typically offered by a 3PL? ›

    A 3PL provider is a specialist company that provides a range of distribution, storage, transport and fulfillment services to customers. These customers outsource these types of operations to the 3PL business and rely on the 3PL provider to offer end-to-end management of specific services.

    What are the biggest challenges for using 3pls and 4pls? ›

    6 Major Challenges in 3rd Party Logistics and Distribution
    • Finding New Talent. ...
    • Lack of Good Reporting Systems. ...
    • Increased Emphasis on Rules and Regulations. ...
    • Lack of Collaboration. ...
    • Meeting the Shippers' Specific Requirements. ...
    • Lack of Infrastructure.

    What is 3PL fulfillment? ›

    What is 3PL fulfillment? 3PL (third-party logistics) fulfillment refers to outsourcing the retail order fulfillment process to a team of experts. This includes receiving orders, picking and packing, inventory management, shipping, and warehousing.

    Why do companies use 3PL? ›

    When a company uses a 3PL, they can scale space, labor, and transportation according to current inventory. Additionally, they are often able to ease the transition between seasonal periods and industry fluctuation. When expanding into new markets, businesses can rely on a 3PL to aid growth in new regions.

    Is DHL a 3PL? ›

    DHL for Business

    Our Supply Chain division creates custom solutions for enterprise-sized organizations. Discover what makes DHL Supply Chain the perfect fit as your outsourced logistics provider (3PL).

    What questions should I ask a logistics company? ›

    Eight Important Questions to Ask When Picking a Logistics Provider
    • How long have you been in operation? ...
    • What custom services do you recommend for my business? ...
    • What is your core business philosophy? ...
    • What storage, packaging and assembly options do you offer? ...
    • Who are your trusted suppliers?
    8 May 2021

    How can I partner with logistics company? ›

    1. UPLOAD FILLED FORM. ...
    2. PASSPORT SIZE PHOTOGRAPH. ...
    3. ID PROOF OF PROPRIETOR/ DIRECTOR/ PARTNER - AADHAR CARD/ PAN CARD/ VOTER ID/ DRIVING LICENSE/ PASSPORT. ...
    4. ADDRESS PROOF – UTILITY BILLS/ RENT AGREEMENT. ...
    5. COMPANY PAN CARD/ PROPRIETOR PAN CARD. ...
    6. GSTIN NUMBER COPY. ...
    7. BANK DETAILS – CANCELLED CHEQUE. ...
    8. COVERING LETTER ON LETTERHEAD.

    What do you expect from logistics company? ›

    Logistics companies plan, implement, and control the movement and storage of goods, services, or information within a supply chain and between the points of origin and consumption. Various logistics companies handle some or all of these supply chain functions, depending on a client's logistical needs.

    What does PI mean at Walmart? ›

    Packaging Identifier

    What does Swas mean at Walmart? ›

    Store Within a Store (SWAS) refers to a brick-and-mortar retailer renting space in their store(s) so another company can set up a separate, independent shop. These independent shops vary widely in size and product or service offerings. Examples include Starbucks in Target and hair salons in Walmart stores.

    What does AMP mean at Walmart? ›

    Associates' Medical Plan (AMP) An overall name for the medical plans offered by Walmart.

    Is it hard to get approved by Walmart Marketplace? ›

    The Walmart.com marketplace has been historically cautious about who they allow to sell on their platform. Their difficult application process and strict requirements have been a roadblock for many e-commerce sellers trying to learn how to sell on Walmart.

    Can you dropship from Walmart? ›

    Dropshipping on Walmart's Platform

    Using dropshipping suppliers, you can sell dropshipped products directly to Walmart customers. Although dropshipping products from Walmart direct to your customers isn't allowed, dropshipping on the Walmart marketplace is totally fine and permitted.

    How long does it take to get approved for Walmart Marketplace? ›

    How long does Walmart take for the approval process? Once you send in your application you have to wait for their team to review it and approve and only then will you hear back from Walmart. This could take anywhere between 2 to 4 weeks.

    How many sellers are on WFS? ›

    124,755

    Does Walmart use Amazon to fulfill orders? ›

    WALMART INC. AMAZON.COM INC. The new fulfillment centers will provide 75% of the U.S. with next- and two-day shipping on millions of items, including marketplace items shipped by Walmart Fulfillment Services.

    Can I use FBA for Walmart? ›

    Using Amazon FBA (MCF) to fulfill Walmart orders

    Sellers should not use FBA or any system that will deliver items purchased through Walmart in competitors' packaging, as this implicitly advertises another marketplace and causes customer confusion.

    Is DHL a 3PL? ›

    DHL for Business

    Our Supply Chain division creates custom solutions for enterprise-sized organizations. Discover what makes DHL Supply Chain the perfect fit as your outsourced logistics provider (3PL).

    What does a 3PL company do? ›

    At the most basic level, 3PLs offer logistics services to support certain aspects—sometimes all aspects—of shipping operations. Typically, 3PL providers are integrated into a company's warehousing and transportation procedures. By scaling and customizing services, 3PLs can best meet your specific needs.

    Who are some highly recommended warehouses 3rd party logistics companies for small businesses? ›

    10 Best 3PL For Small Business in India
    • Stockarea.
    • Ekart Logistics.
    • India Post.
    • Blue Dart Express.
    • DTDC Express.
    • Ecom Express.
    • Shadowfax.
    • TCI Express.
    28 May 2022

    What companies are 4PL? ›

    Companies in Lead Logistics/Supply Chain Service Providers (4PLs)
    • 4R. AI + Human Intell = Intelligent Inventory Optimization. ...
    • Ryder Supply Chain Solutions. ...
    • 4flow.
    • Atria Logistics, Inc.
    • Logistics Plus Inc.
    • LynnCo Supply Chain Solutions, Inc.
    • Penske Logistics.
    • Transervice Logistics, Inc.

    Is UPS a 3PL or 4PL? ›

    So we have to ask the question: Is UPS a 4th party logistics provider? Well clearly, UPS have assets, which by definition would make them a 3PL and not a 4th party logistics provider.

    What does 3PL mean in logistics? ›

    A 3PL (third-party logistics) provider offers outsourced logistics services, which encompass anything that involves management of one or more facets of procurement and fulfillment activities. In business, 3PL has a broad meaning that applies to any service contract that involves storing or shipping items.

    What is difference between 3PL and 4PL? ›

    A 3PL provider focuses on the day-to-day operations of your supply chain logistics while a 4PL focuses on optimizing your entire supply chain. Consequently, a 4PL takes over the entire operation and allows you time to grow and expand your business.

    How does a 3PL make money? ›

    Depending on the complexity and frequency of your needs, 3PL procurement companies charge either per-project fees or account retainer fees. If you're looking for a one-time manufacturing run for a product, procurement 3PLs may charge a service or consultancy fee.

    What are the disadvantages of 3PL? ›

    Disadvantages of Outsourcing Logistics to a 3PL provider

    Lose skills and infrastructure you may want to develop. Have a hard time finding find a trustworthy 3PL. Sacrifice some control of your image and customer service. Send out your inventory to a relatively unknown third party.

    What makes a good 3PL? ›

    An effective 3PL will reach out to you with questions and comments to help improve operations and provide better service for your customers. They're also adept at troubleshooting and coming up with creative solutions. They may re-engineer processes or apply best practices to ensure optimal performance.

    What is 4PL warehouse? ›

    A fourth-party logistics provider, or 4PL, represents a higher level of supply chain management for the customer. The 4PL gives its clients a “control tower” view of their supply chains, overseeing the mix of warehouses, shipping companies, freight forwarders and agents.

    How does ShipBob make money? ›

    But how does ShipBob make money? ShipBob makes money by charging the following fees for its order fulfillment services: a one-time implementation fee, receiving fees, warehousing fees, and shipping fees. Their pricing is based on a full-service cost of direct-to-consumer order fulfillment.

    What is 3PL eCommerce? ›

    What is a 3PL? A 3PL (Third-Party Logistics) is a partner or service that helps ecommerce merchants manage their supply chain. Common 3PL services include warehouse and inventory management, order fulfillment, shipping coordination, retail distribution, exchanges, and returns.

    What are the 7 R's of logistics? ›

    In this step, we look at the 7 Rs of logistics. So, what are the 7 Rs? The Chartered Institute of Logistics & Transport UK (2019) defines them as: Getting the Right product, in the Right quantity, in the Right condition, at the Right place, at the Right time, to the Right customer, at the Right price.

    Is DHL a 4PL? ›

    Although lesser known, DHL is also very active and adept as a Lead Logistics Partner – or an LLP – for many of our clients. An LLP is also frequently referred to in the industry as a 4PL – or a Fourth Party Logistics provider.

    What is 1PL 2PL 3PL 4PL? ›

    1PL - First-Party Logistics. 2PL - Second-Party Logistics. 3PL - Third-Party Logistics. 4PL - Fourth-Party Logistics. 5PL - Fifth-Party Logistics.

    Videos

    1. The Supply Chain Buzz for November 29th Featuring Constantine Limberakis with riskmethods
    (Supply Chain Now)
    2. How Can Canadian Brands Sell to China via WeChat?
    (WalktheChat)
    3. Polymer Outlook 2021
    (GreaterAkronChamber)
    4. Английский язык: "INBOUND AND OUTBOUND LOGISTICS"
    (Администратор СДО КСТ)
    5. MSP INITIATIVE LIVE WITH JAY MCBAIN FROM FORRESTER
    (The MSP Initiative)
    6. Infor Webinar: รู้จักกับการใช้ Cloud-Based Warehouse Management และข้อดีต่อธุรกิจองค์กร
    (TechTalk Thai)
    Top Articles
    Latest Posts
    Article information

    Author: Sen. Emmett Berge

    Last Updated: 11/03/2022

    Views: 6545

    Rating: 5 / 5 (60 voted)

    Reviews: 83% of readers found this page helpful

    Author information

    Name: Sen. Emmett Berge

    Birthday: 1993-06-17

    Address: 787 Elvis Divide, Port Brice, OH 24507-6802

    Phone: +9779049645255

    Job: Senior Healthcare Specialist

    Hobby: Cycling, Model building, Kitesurfing, Origami, Lapidary, Dance, Basketball

    Introduction: My name is Sen. Emmett Berge, I am a funny, vast, charming, courageous, enthusiastic, jolly, famous person who loves writing and wants to share my knowledge and understanding with you.