Search
Generic filters
Exact matches only
Search in title
Search in content
Filter by Categories
PHP Script
Plugin
Codecanyon
Crocoblock
Easy Digital Downloads
Elegantthemes
Gravityperks
MainWP WordPress Manager
Thrive
Ultimate Member
WeDevs
Woocommerce
Yithemes
Yoast
Themes
Themeforest
Elegantthemes
Studiopress
Themify Themes

Finale v2.18.0 – WooCommerce Sales Countdown Timer & Discount Plugin

Finale WooCommerce allows you to create one-time or recurring planned campaigns. Use visual elements like countdown timer and counter to motivate users to place an order.

Demo:  https://xlplugins.com/finale-woocommerce-sales-countdown-timer-discount-plugin/

Countdown timer 2

Features: WooCommerce Sales Countdown Timer & Discount Plugin

  • Book seasonal or holiday deals in your store. Select start date, end date and time with discount amount
  • Create Recurring Campaigns That Repeat After A Set Period
  • Give Shoppers A Clear Deadline To Get The Deal
  • Use An Attractive Access Bar To Show Declining Stock Sizes
  • Setting Notification Header / Footer (notication)
  • Create Buzz For Coming Products
  • Show Coupon Expiration Time On Cart Pages
  • Birds Early Bird Offer For Quick Rewards
  • Customize Your Campaigns With 15 Different Rules

Changelog: Finale

= v2.18.0 =
* Compatible up to WordPress 5.7.1
* Compatible up to WooCommerce 5.3.0
* Added: Compatibility added with WooMulticurrency BY TIVNETIC. (fix/129)
* Added: Compatibility added with 'Product CSV import export for WC' plugin. (fix/123)
* Added: Compatibility added with 'Widgets-Context and Nav-Menus' plugin. (fix/117)
* Added: Enable searching of campaigns on campaigns listing screen. (fix/145)
* Improved: Lottery product type allowed for finale discounting.
* Fixed: 'wp_make_content_images_responsive' function is deprecated since version 5.5.0, fixed. (fix/119)
* Fixed: Getting js error on Finale Campaign EDIT Screen with WP HR manager plugin, fixed.
* Fixed: Countdown Timer and Counter Bar wasn't running when WC One Page Shop is installed and activated, fixed.
* Fixed: Sale price was overriding even the local sale hasn't started yet i.e. scheduled, fixed.
* Fixed: Countdown timer merge tag: Exclude options fixed.
* Fixed: When category added after campaign started then product category rule not working now fixed.
* Fixed: Product Tag or Category rule is not working in a case where products taxonomies are updating via rest api.
* Fixed: 'Product price is equal to or greater' Rule wasn't working, fixed.
* Fixed: Getting js error on Finale Campaign EDIT Screen with 'Content tooltip' plugin, fixed.
* Fixed: JQuery migrated so getting deprecation error - jQuery.fn.load() is deprecated now fixed. (fix/141)
* Fixed: An issue found with wrong stock qty on counter bar when multiple campaigns running with different priority. (fix/121)
* Fixed: Updated CMB2 version as getting conflict wiht Rank Math Seo Plugin now fixed. (fix/139)

January 29, 2020 - Version 2.17.1
Added: Compatible with WooCommerce 3.9
Fixed: Product selection in rules is not validating with WPML language, fixed.
Fixed: Handling to avoid PHP warning in a rare case of cart loading on page load.
Fixed: Admin JS error with 'ThePlus Elementor addon' plugin, resolved.

January 13, 2020 - Version 2.17.0
Added: AeroCheckout page rule is added to show sticky header and footer element on the checkout page.
Added: Compatibility added with plugin 'WP WebinarSystem Pro', added support of product type 'webinar'.
Fixed: The campaign wasn't indexing for Finale deal pages addon when 'user is guest' rule is set. Fixed.
Fixed: Compatibility issues with 'Breeze' plugin, caching not allowing countdown timer to change, fixed.

November 14, 2019 - Version 2.16.1
Added: Compatible with WordPress 5.3
Added: Compatible with WooCommerce 3.8
Fixed: Expired Finale campaign meta keys in products are removing properly now.

⭐See also: List of free premium WooCommerce Plugins at FreeWP

Download Finale – WooCommerce Sales Countdown Timer & Discount Plugin v2.18.0 NULLED: 

⚠️Instructions to fix activate Finale

Add the following code to the functions.php in the theme (note that it should be added to the functions.php file in the child theme)

//plugin - finale__woocommerce_sales_countdown_timer__discount_plugin_license_active - null - freewp START
add_filter('pre_option_finale__woocommerce_sales_countdown_timer__discount_plugin_license_active','custom_null_finale__woocommerce_sales_countdown_timer__discount_plugin_license_active');
function custom_null_finale__woocommerce_sales_countdown_timer__discount_plugin_license_active(){
    return 'valid';
}

add_filter('pre_option_finale__woocommerce_sales_countdown_timer__discount_pluginlicense_data','custom_null_finale__woocommerce_sales_countdown_timer__discount_pluginlicense_data');
function custom_null_finale__woocommerce_sales_countdown_timer__discount_pluginlicense_data(){
    $licenseObject = new stdClass();
    $licenseObject->expires = 'January 31, 2099';
    $licenseObject->license = 'valid';
    return $licenseObject;
}

add_filter('pre_option_xl_licenses_finale__woocommerce_sales_countdown_timer__discount_plugin','custom_null_xl_licenses_finale__woocommerce_sales_countdown_timer__discount_plugin');
function custom_null_xl_licenses_finale__woocommerce_sales_countdown_timer__discount_plugin(){
    return 'abcde12345';
}
//plugin - finale__woocommerce_sales_countdown_timer__discount_plugin_license_active - null - freewp END