window.dataLayerPYS = window.dataLayerPYS || [];
console.log('PixelYourSite PRO version 12.5.1');
var breeze_prefetch = {"local_url":"https://www.canadiansavers.ca","ignore_remote_prefetch":"1","ignore_list":["/how-to-earn-points/","/login/","/profile/","/forgot-password/","/profile/my-brands/","/profile/my-categories/","/profile/my-stores/","/sign-up/","wp-admin","wp-login.php"]};
//# sourceURL=breeze-prefetch-js-extra
https://www.canadiansavers.ca/wp-content/plugins/breeze/assets/js/js-front-end/breeze-prefetch-links.min.js
var pysTikTokRest = {"restApiUrl":"https://www.canadiansavers.ca/wp-json/pys-tiktok/v1/event","debug":""};
var pysFacebookRest = {"restApiUrl":"https://www.canadiansavers.ca/wp-json/pys-facebook/v1/event","debug":""};
//# sourceURL=jquery-core-js-extra
(function(w,d,e,u,f,l,n){w[f]=w[f]||function(){(w[f].q=w[f].q||[])
.push(arguments);},l=d.createElement(e),l.async=1,l.src=u,
n=d.getElementsByTagName(e)[0],n.parentNode.insertBefore(l,n);})
(window,document,'script','https://assets.mailerlite.com/js/universal.js','ml');
ml('account', '230245');
ml('enablePopups', true);
jQuery(document).ready(function($) {
// Notification function
function showNotification(message) {
const container = $('.tfs-notification-container');
const notification = $(`
<div class="tfs-notification">
<span class="tfs-notification-icon">
<svg viewBox="0 0 24 24" width="16" height="16">
<polyline points="20 6 9 17 4 12" fill="none" stroke="white" stroke-width="2"/>
</svg>
</span>
<span class="tfs-notification-message">${message}</span>
</div>
`);
container.append(notification);
notification[0].offsetHeight;
setTimeout(() => {
notification.addClass('show');
}, 10);
setTimeout(() => {
notification.removeClass('show');
setTimeout(() => {
notification.remove();
}, 300);
}, 3000);
}
// Handle Select All button
$('.select-all-button').on('click', function() {
const $form = $(this).closest('form');
$form.find('input[type="checkbox"]').prop('checked', true);
});
// Handle Select None button
$('.select-none-button').on('click', function() {
const $form = $(this).closest('form');
$form.find('input[type="checkbox"]').prop('checked', false);
});
// Handle search functionality
let searchTimeout;
$('.taxonomy-search-input').on('input', function() {
const $input = $(this);
const $container = $input.closest('.taxonomy-follow-list');
clearTimeout(searchTimeout);
searchTimeout = setTimeout(function() {
const searchTerm = $input.val().toLowerCase();
const $items = $container.find('.taxonomy-item');
const $noTerms = $container.find('.no-terms-message');
let visibleItems = 0;
$items.each(function() {
const termName = $(this).data('term-name');
if (termName.includes(searchTerm)) {
$(this).show();
visibleItems++;
} else {
$(this).hide();
}
});
if (visibleItems === 0) {
$noTerms.show();
} else {
$noTerms.hide();
}
}, 300);
});
// Handle accordion toggles
$('.accordion-toggle').on('click', function(e) {
e.preventDefault();
const $button = $(this);
const $content = $button.closest('.followed-item-header').next('.accordion-content');
const isExpanded = $button.attr('aria-expanded') === 'true';
$button.attr('aria-expanded', !isExpanded);
if (!isExpanded) {
$content.prop('hidden', false);
const $item = $button.closest('.followed-item');
const termId = $item.data('term-id');
const taxonomy = $item.data('taxonomy');
$.ajax({
url: 'https://www.canadiansavers.ca/wp-admin/admin-ajax.php',
type: 'POST',
data: {
action: 'update_last_visit',
term_id: termId,
taxonomy: taxonomy,
nonce: '59c47b550b'
}
});
} else {
$content.prop('hidden', true);
}
});
// Form submission handler: regular POST submit, no AJAX
$('.taxonomy-follow-form').off('submit').on('submit', function() {
const $form = $(this);
const $button = $form.find('.follow-taxonomy-button');
$button.prop('disabled', true).text('Updating...');
});
const $stickyCta = $('.tfs-sticky-cta');
let activeStickyButton = null;
function isMobileTfs() {
return window.matchMedia('(max-width: 767px)').matches;
}
function getActiveLauncher() {
const $launchers = $('.tfs-add-button-wrapper:visible');
if (!$launchers.length) {
return null;
}
let best = null;
let bestTop = Number.POSITIVE_INFINITY;
const scrollTop = window.pageYOffset || document.documentElement.scrollTop || 0;
$launchers.each(function() {
const rect = this.getBoundingClientRect();
const absoluteTop = rect.top + scrollTop;
if (absoluteTop < bestTop) {
bestTop = absoluteTop;
best = this;
}
});
return best;
}
function setStickyButtonFromLauncher(launcher) {
if (!launcher || !$stickyCta.length) {
return;
}
const button = launcher.querySelector('.tfs-open-modal-button');
if (!button) {
return;
}
const modalTarget = button.getAttribute('data-tfs-modal-target') || '';
if (activeStickyButton === modalTarget && $stickyCta.children().length) {
return;
}
activeStickyButton = modalTarget;
const clone = button.cloneNode(true);
clone.classList.add('tfs-sticky-open-modal-button');
$stickyCta.empty().append(clone);
}
function updateStickyCta() {
if (!$stickyCta.length) {
return;
}
if (!isMobileTfs()) {
$stickyCta.removeClass('is-visible').attr('aria-hidden', 'true').empty();
$('body').removeClass('has-tfs-sticky-cta');
activeStickyButton = null;
return;
}
if ($('.tfs-modal-overlay.is-open').length) {
$stickyCta.removeClass('is-visible').attr('aria-hidden', 'true');
$('body').removeClass('has-tfs-sticky-cta');
return;
}
const launcher = getActiveLauncher();
if (!launcher) {
$stickyCta.removeClass('is-visible').attr('aria-hidden', 'true').empty();
$('body').removeClass('has-tfs-sticky-cta');
activeStickyButton = null;
return;
}
setStickyButtonFromLauncher(launcher);
const rect = launcher.getBoundingClientRect();
const shouldShow = rect.bottom < 0 || rect.top > (window.innerHeight - 80);
$stickyCta.toggleClass('is-visible', shouldShow)
.attr('aria-hidden', shouldShow ? 'false' : 'true');
$('body').toggleClass('has-tfs-sticky-cta', shouldShow);
}
$(window).on('scroll resize orientationchange load', updateStickyCta);
$(document).on('click', '.tfs-sticky-cta .tfs-open-modal-button', function() {
setTimeout(updateStickyCta, 20);
});
setTimeout(updateStickyCta, 50);
// Individual follow button handler
$('.tfs-follow-button').on('click', function(e) {
if (!$(this).hasClass('follow-taxonomy-button')) {
e.preventDefault();
var $button = $(this);
var termId = $button.data('term-id');
var taxonomy = $button.data('taxonomy');
var action = $button.data('action');
$.ajax({
url: 'https://www.canadiansavers.ca/wp-admin/admin-ajax.php',
type: 'POST',
data: {
action: action,
term_id: termId,
taxonomy: taxonomy,
nonce: '59c47b550b'
},
beforeSend: function() {
$button.prop('disabled', true).addClass('loading');
},
success: function(response) {
if (response.success) {
if (response.data.is_following) {
$button.addClass('is-following')
.data('action', 'unfollow_term');
showNotification('Successfully followed!');
} else {
$button.removeClass('is-following')
.data('action', 'follow_term');
showNotification('Successfully unfollowed');
}
// Reload page after a short delay
setTimeout(function() {
window.location.reload();
}, 1500);
} else {
alert('Action failed. Please try again.');
}
},
error: function() {
alert('An error occurred. Please try again.');
},
complete: function() {
$button.prop('disabled', false).removeClass('loading');
}
});
}
});
});
document.documentElement.className += " js";
(function(g,o){g[o]=g[o]||function(){(g[o]['q']=g[o]['q']||[]).push(
arguments)},g[o]['t']=1*new Date})(window,'_googCsa');
window.pushMST_config={"vapidPK":"BPXoRQolBdaYgbUv5xasrzRIkdVBsxyQ5qCGGAJgqiEAYVeWlVWos21eT1pHT1Ve4H0LoT2UlGbN5N78rDeHAz4","enableOverlay":true,"swPath":"/sw.js","i18n":{}};
var pushmasterTag = document.createElement('script');
pushmasterTag.src = "https://cdn.pushmaster-cdn.xyz/scripts/publishers/648adb4fc6ef390008e58b83/SDK.js";
pushmasterTag.setAttribute('defer','');
var firstScriptTag = document.getElementsByTagName('script')[0];
firstScriptTag.parentNode.insertBefore(pushmasterTag, firstScriptTag);
(function(){
var loc = window.location.href;
var dd = document.createElement('script');
dd.type = 'text/javascript'; dd.src = '//static.digidip.net/canadiansavers.js?loc=' + loc;
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(dd, s);
})();
Home > Canadian Coupons
Latest KFC Canada Coupons, Deals & Specials – May 2026
Last updated: May 7, 2026
Looking for the best KFC coupons in Canada this May 2026 ? We’ve gathered all the printable coupons, online-exclusive offers, app deals, and limited-time specials to help you save big at KFC.
Whether you’re craving buckets, sandwiches, or sides, these KFC deals Canada are valid nationwide (availability may vary by province). For more fast-food savings, check out our updated pages for McDonald’s coupons , Burger King coupons , and Tim Hortons deals .
1. Printable KFC Coupons Canada (Valid until May 24, 2026 )
These limited-time KFC printable coupons can be redeemed in-store across Canada. Hurry—It will be valid until May 24, 2026 !
👉 Print them now on KFC Canada coupons .
2. KFC Online & App-Only Deals
Order via KFC.ca or the KFC App to unlock these exclusive online specials :
2PC. CHICKEN & FRIES – $5.59 :
2pc. Chicken (dark) & Ind. Fries
Code: DM212
SANDWICH COMBO – $9.99 :
Big Crunch, Twister, or Zinger Sandwich, Ind. Fries, & Reg. Drink
Code: DM632
4PC. CHICKEN BOX MEAL – $13.49 :
4pc. Chicken, Ind. Fries, Ind. Side, & Reg. Drink
Code: DM212
TENDERS & POPCORN BOX – $8.99 :
Ind. Popcorn Chicken, Ind. Fries, Ind. Side, & 1 Dip
Or: 2pc. Chicken or Original Recipe Tenders, Ind. Popcorn Chicken, Ind. Fries, Ind. Side, & 1 Dip
Code: DM012
POPCORN MEAL DEAL – $12.99 :
Lg. Popcorn Chicken, 2 Ind. Fries, 2 Ind. Sides, & 2 Dips
Code: DM632
GO BUCKETS – $4.99 :
Choice of Popcorn Chicken or Drumstick plus Ind. Fries
ULTIMATE POPCORN BUCKET FOR TWO – $19.99 :
4 Original Recipe Tenders, 2 Ind. Fries, 2 Ind. Sides, 4pc. Chicken (dark), & 2 Dips
INDIVIDUAL Popcorn – $2.00 :
Ind. Popcorn Chicken & 1 Dip
POUTINE & POP – $6.99 :
POPCORN MEAL DEAL – $12.99 :
Lg. Popcorn Chicken, 2 Ind. Fries, 2 Ind. Sides, & 2 Dips
Code: DM085
4PC. CHICKEN BOX MEAL – $13.49 :
4pc. Chicken, Ind. Fries, Ind. Side, & Reg. Drink
Code: DM642 / DM84
SANDWICH COMBO – $9.99 :
Big Crunch, Twister, or Zinger Sandwich, Ind. Fries, & Reg. Drink
(No code visible in this page)
2 CAN DINE SANDWICH COMBO – $18.99 :
2 Big Crunch, Twister, or Zinger Sandwiches, 2 Ind. Fries, & 2 Reg. Drinks
Code: DM?? (cut off, shows Code 15)
9PC. FRIES & GRAVY BUCKET – $28.99 :
9pc. Chicken, Lg. Fries, & 2 Ind. Gravy
Code: DM545 (Code 8)
12PC. FRIES & GRAVY BUCKET – $34.99 :
12pc. Chicken, Lg. Fries, & 2 Ind. Gravy
Code: DM377 (Code 6)
All offers will expire on May 24, 2026 . One coupon per customer unless stated otherwise. Not valid with any other offers
💡 Pro Tip: Use the KFC app for faster checkout and exclusive deals. Don’t miss the latest Subway coupons for fresh sandwich savings.
3. KFC Rewards & Digital Coupons
Join KFC Rewards Canada to unlock app-exclusive discounts:
Free 8-Pc Tenders or Chicken Bucket with $15+ digital order
$7 Fill Up Meals (4 varieties to choose from)
35% Off 12-Pc Tenders Meal (Rewards members only)
$1 Large Side with $10 minimum order
👉 Join KFC Rewards
4. KFC Canada Sandwich of the Day – Only $5
Every weekday, enjoy a different KFC sandwich for just $5 :
Monday – Big Crunch
Tuesday – 2 Original Recipe Sliders
Wednesday – Zinger
Thursday – Twister
Friday – Famous Chicken Sandwich
This deal is perfect for a quick lunch without breaking the bank.
Final Tips to Save More at KFC Canada
Always print coupons before heading in-store (valid until Nov 16).
Use the KFC app for extra online-only discounts.
Stack your savings by joining KFC Rewards .
Plan your meals around the Sandwich of the Day to grab lunch for $5.
KFC Coupons Canada – FAQs
1. How do I get KFC coupons in Canada?
You can print them online or use app-exclusive offers. The latest deals are listed above and refreshed monthly.
2. Does KFC Canada still have $5 Fill Ups?
Yes! May 2026 promos include $4.95–$5 Fill Ups and Sandwich of the Day for $5.
3. Can I use multiple KFC coupons at once?
Generally, only one coupon per order is accepted. Some online deals can be stacked with Rewards discounts.
4. When do the current KFC coupons expire?
Printable coupons are valid until May 5, 2026 . Digital deals may vary.
(adsbygoogle = window.adsbygoogle || []).push({});
(function() {
function getUTM(param) {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get(param) || '';
}
// Hook global gtag
if (typeof gtag !== 'undefined') {
const originalGtag = gtag;
window.gtag = function() {
// arguments = ['event', 'AdSense', {...}]
if (arguments[0] === 'event' && arguments[1] === 'AdSense') {
let params = arguments[2] || {};
// Override avec les vraies valeurs URL
params.utm_campaign = getUTM('utm_campaign');
params.utm_source = getUTM('utm_source');
params.utm_medium = getUTM('utm_medium');
params.utm_content = getUTM('utm_content');
arguments[2] = params;
}
return originalGtag.apply(this, arguments);
};
}
})();
(function() {
if (window.innerWidth > 767) return;
let shown = false;
window.addEventListener('scroll', function() {
if (shown) return;
document.querySelectorAll('.sidebar-widget-mobile-delay').forEach(el => {
el.style.display = '';
});
shown = true;
}, { passive: true });
})();
https://www.canadiansavers.ca/wp-content/plugins/pixelyoursite-pro/dist/scripts/js.cookie-2.1.3.min.js
https://www.canadiansavers.ca/wp-content/plugins/pixelyoursite-pro/dist/scripts/sha256.js
https://www.canadiansavers.ca/wp-content/plugins/pixelyoursite-pro/dist/scripts/tld.min.js
https://www.canadiansavers.ca/wp-content/plugins/pixelyoursite-pro/dist/scripts/public.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/inview.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/pgwmodal.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/unveil.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/hoverintent.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/countdown.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/custom.js
jQuery(document).ready(function($) {
var retina = window.devicePixelRatio > 1 ? true : false;
if(retina) {
jQuery(".logo_image img").attr("src", "https://www.canadiansavers.ca/wp-content/uploads/2025/08/canadian-savers-logo.webp");
}
});
//# sourceURL=rehub-js-after
https://www.canadiansavers.ca/wp-includes/js/comment-reply.js
var kadence_blocks_toc = {"headings":"[{\"anchor\":\"1-how-do-i-get-kfc-coupons-in-canada\",\"content\":\"1. How do I get KFC coupons in Canada?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"2-does-kfc-canada-still-have-5-fill-ups\",\"content\":\"2. Does KFC Canada still have $5 Fill Ups?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"3-can-i-use-multiple-kfc-coupons-at-once\",\"content\":\"3. Can I use multiple KFC coupons at once?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"4-when-do-the-current-kfc-coupons-expire\",\"content\":\"4. When do the current KFC coupons expire?\",\"level\":3,\"include\":\"\",\"page\":1}]","expandText":"Expand Table of Contents","collapseText":"Collapse Table of Contents"};
var kadence_blocks_toc = {"headings":"[{\"anchor\":\"1-how-do-i-get-kfc-coupons-in-canada\",\"content\":\"1. How do I get KFC coupons in Canada?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"2-does-kfc-canada-still-have-5-fill-ups\",\"content\":\"2. Does KFC Canada still have $5 Fill Ups?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"3-can-i-use-multiple-kfc-coupons-at-once\",\"content\":\"3. Can I use multiple KFC coupons at once?\",\"level\":3,\"include\":\"\",\"page\":1},{\"anchor\":\"4-when-do-the-current-kfc-coupons-expire\",\"content\":\"4. When do the current KFC coupons expire?\",\"level\":3,\"include\":\"\",\"page\":1}]","expandText":"Expand Table of Contents","collapseText":"Collapse Table of Contents"};
//# sourceURL=kadence-blocks-tableofcontents-js-extra
https://www.canadiansavers.ca/wp-content/plugins/kadence-blocks/includes/assets/js/kb-table-of-contents.min.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/userlogin.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/custom_floatpanel.js
https://www.canadiansavers.ca/wp-content/plugins/kadence-blocks/includes/assets/js/gumshoe.min.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/hotcount.js
https://www.canadiansavers.ca/wp-content/themes/rehub-theme/js/bettercategory.js