Framework – Updated LESS compiler for compatibility with PHP 8.2 onwards
2.2.3 – 2024/07/13
This release has various tweaks for compatibility with WordPress 6.6 and WooCommerce 8.9.3.
Tweak – Tested for compatibility with WordPress 6.6
Tweak – Tested for compatibility with WooCommerce 8.9.3
2.2.2 – 2023/11/22
This maintenance release has plugin framework updates for compatibility with PHP 8.1 onwards, a WPML compatibility fix plus update backward compatibility to WooCommerce 6.0.
Tweak – Remove backward compatibility for WooCommerce versions less than 6.0
Framework – Set parameter number of preg_match function from null to 0 for compatibility with PHP 8.1 onwards
Framework – Validate empty before call trim for option value
Fix – Do not registry wpml string text for text that does not exist from settings
2.2.1 – 2023/10/30
This maintenance release has a Code Tweak for compatibility with WordPress 6.4 and WooCommerce 8.2
Tweak – Tested for compatibility with WordPress 6.4
Tweak – Tested for compatibility with WooCommerce 8.2
Tweak – Call add action to ‘enqueue_block_assets’ instead of ‘enqueue_block_editor_assets’ for enqueue style inside iframe of Gutenberg.
2.2.0 – 2023/09/07
This feature release adds a “Products Slider” Block for use with Gutenberg templates. Also compatibility with WooCommerce 8.0.3 and WordPress 6.3
Feature – Define new “Products Slider” block to show product slider on Gutenberg Block templates pages.
Tweak – Test for compatibility with WooCommerce 8.0.3
Tweak – Test for compatibility with WordPress 6.3.0
Fix – New Product Slider Block resolves issues that the product slider shortcode has with Gutenberg templates.
2.1.0 – 2023/04/25
This release has compatibility with WordPress 6.2.0, WooCommerce 7.6.0 plus declared compatibility with WooCommerce HPOS.
Tweak – Test for compatibility with WordPress 6.2
Tweak – Test for compatibility with WooCommerce 7.6.0
Tweak – Test and declare plugin compatibility with WooCommerce HPOS Custom Tables.
2.0.0 – 2023/01/03
This feature release removes the fontawesome lib and replaces icons with SVGs plus adds Default Topography option to font controls and has compatibility with WooCommerce 7.2
Feature – Convert icon from font awesome to SVG
Feature – Update styling for new SVG icons
Tweak – Test for compatibility with WooCommerce 7.2
Plugin Framework – Update typography control from plugin framework to add support for Default value
Plugin Framework – Default value will get fonts set in the theme.
Plugin Framework – Change generate typography style for change on typography control
Plugin Framework – Remove fontawesome lib
1.9.2 – 2022/11/01
This maintenance release has a security vulnerability patch, plus compatibility with WordPress major version 6.1.0 and WooCommerce version 7.0
Tweak – Test for compatibility with WordPress 6.1
Tweak – Test for compatibility with WooCommerce 7.0
Security – This release has a patch for a security vulnerability
1.9.1 – 2022/05/25
This release fixes a bug with the just released version 1.9.0
Fix – Do not call update_google_map_api_key from construct of Admin UI
1.9.0 – 2022/05/24
This release is for compatibility with WordPress major version 6.0 and WooCommerce version 6.5.1. It and includes various code tweaks and tweaks to harden security.
Tweak – Test for compatibility with WordPress 6.0
Tweak – Add filter on generate_border_style_css
Tweak – Add filter on generate_border_corner_css
Tweak – Test for compatibility with WooCommerce 6.5
Framework – Upgrade Plugin Framework to version 2.6.0
Security – Various code hardening tweaks.
Security – Escape all $-variable
Security – Sanitize all $_REQUEST, $_GET, $_POST
Security – Apply wp_unslash before sanitize
1.8.0 – 2022/01/22
This release has a new Google Fonts API Validation feature plus compatibility with WordPress 5.9 and WooCommerce 6.1.1
Feature – Add Ajax Validate button for Google Fonts API, for quick and easy Validation of API key.
Dev – Add dynamic help text to Google Font API field
Tweak – Test for compatibility with WooCommerce 6.1
Tweak – Test for compatibility with WordPress 5.9
Framework – Update a3rev Plugin Framework to version 2.5.0
1.7.10 – 2021/11/20
This maintenance release has check for compatibility with PHP version 8.x and WooCommerce 5.9
Tweak – Test for compatibility with PHP 8.x
Tweak – Test for compatibility with WooCommerce 5.9
1.7.9 – 2021/07/20
This maintenance release has code tweaks for compatibility with WordPress Major version 5.8, WooCommerce version 5.5.1 and some Security Hardening.
Tweak – Test for compatibility with WordPress 5.8
Tweak – Test for compatibility with WooCommerce 5.5.1
Security – Add more variable, options and html escaping
1.7.8 – 2021/03/19
This maintenance release updates 23 deprecated jQuery functions for compatibility with the latest version of jQuery in WordPress 5.7
Tweak – Update JavaScript on plugin framework for compatibility with latest version of jQuery and resolve PHP warning event shorthand is deprecated.
Tweak – Replace deprecated .attr(‘disabled’, ‘disabled’) with .prop(‘disabled’, true)
Tweak – Replace deprecated .removeAttr(‘disabled’) with .prop(‘disabled’, false)
Tweak – Replace deprecated .attr(‘selected’, ‘selected’) with .prop(‘selected’, true)
Tweak – Replace deprecated .removeAttr(‘selected’) with .prop(‘selected’, false)
Tweak – Replace deprecated .attr(‘checked’, ‘checked’) with .prop(‘checked’, true)
Tweak – Replace deprecated .removeAttr(‘checked’) with .prop(‘checked’, false)
1.7.7 – 2021/03/09
This maintenance release is for compatibility with WordPress 5.7 and WooCommerce 5.1
Tweak – Test for compatibility with WordPress 5.7
Tweak – Test for compatibility with WooCommerce 5.1.0
Tweak – Use new function wp_getimagesize of WP instead of getimagesize
1.7.6 – 2021/01/13
This maintenance release is for compatibility with WooCommerce major version 4.9.0.
Tweak – Test for compatibility with WooCommerce 4.9.0
1.7.5 – 2020/12/30
This is an important maintenance release that updates our scripts for compatibility with the latest version of jQuery released in WordPress 5.6
Tweak – Update JavaScript on plugin framework for work compatibility with latest version of jQuery
Fix – Replace .bind( event, handler ) by .on( event, handler ) for compatibility with latest version of jQuery
Fix – Replace :eq() Selector by .eq() for compatibility with latest version of jQuery
Fix – Replace .error() by .on( “error” ) for compatibility with latest version of jQuery
Fix – Replace :first Selector by .first() for compatibility with latest version of jQuery
Fix – Replace :gt(0) Selector by .slice(1) for compatibility with latest version of jQuery
Fix – Remove jQuery.browser for compatibility with latest version of jQuery
Fix – Replace jQuery.isArray() by Array.isArray() for compatibility with latest version of jQuery
Fix – Replace jQuery.isFunction(x) by typeof x === “function” for compatibility with latest version of jQuery
Fix – Replace jQuery.isNumeric(x) by typeof x === “number” for compatibility with latest version of jQuery
Fix – Replace jQuery.now() by Date.now() for compatibility with latest version of jQuery
Fix – Replace jQuery.parseJSON() by JSON.parse() for compatibility with latest version of jQuery
Fix – Remove jQuery.support for compatibility with latest version of jQuery
Fix – Replace jQuery.trim(x) by x.trim() for compatibility with latest version of jQuery
Fix – Replace jQuery.type(x) by typeof x for compatibility with latest version of jQuery
Fix – Replace .load( handler ) by .on( “load”, handler ) for compatibility with latest version of jQuery
Fix – Replace .size() by .length for compatibility with latest version of jQuery
Fix – Replace .unbind( event ) by .off( event ) for compatibility with latest version of jQuery
Fix – Replace .unload( handler ) by .on( “unload”, handler ) for compatibility with latest version of jQuery
1.7.4 – 2020/12/10
Tweak – Test for compatibility with WooCommerce 4.8.0
1.7.3 – 2020/12/08
This maintenance release has tweaks and a fix for compatibility with WordPress major version 5.6, WooCommerce 4.7.1 and PHP 7.4.8
Tweak – Test for compatibility with PHP 7.4.8
Tweak – Test for compatibility with WooCommerce 4.7.1
Tweak – Test for compatibility with WordPress 5.6
Fix – Add before WC() inside namespace file for it to call to correct WC() of WooCommerce
1.7.2 – 2020/08/08
This maintenance release is for compatibility with WordPress major version 5.5 and WooCommerce 4.3.1.
Tweak – Test for compatibility with WordPress 5.5
Tweak – Test for compatibility with WooCommerce 4.3.1
1.7.1 – 2020/04/01
This maintenance release is for compatibility with WordPress 5.4, WooCommerce 4.0.1, Travis CI build unit test for compliance with WordPress PHP coding standards and PHP tweaks for compatibility with PHP v 7.0 to 7.4
Tweak – Test for compatibility with WordPress 5.4
Tweak – Test for compatibility with WooCommerce 4.0.1
Tweak – Plugin Framework fully refactored to Composer for cleaner code and faster PHP code on admin panels
Tweak – Update plugin for compatibility with new version of plugin Framework
Fix – Update global ${$this- to $GLOBALS[$this to resolve 7.0+ PHP warnings
Fix – Update global ${$option to $GLOBALS[$option to resolve 7.0+ PHP warnings
Fix – Update less PHP lib that use square brackets [] instead of curly braces {} for Array, depreciated in PHP 7.4
Fix – Validate to not use get_magic_quotes_gpc function that are depreciated in PHP 7.4
1.7.0 – 2019/12/02
This feature release upgrades the plugins PHP to Composer Dependency Manager, a full security review plus compatibility with WordPress 5.3.0 and WooCommerce 3.8.1
Feature – Plugin fully refactored to Composer for cleaner and faster PHP code
Tweak – Remove the hard coded PHP error_reporting display errors false from compile sass to css
Tweak – Test for compatibility with WordPress 5.3.0
Tweak – Test for compatibility with WooCommerce 3.8.1
Tweak – Update premium version text and links on widget
Dev – Replace file_get_contents with HTTP API wp_remote_get
Dev – Ensure that all inputs are sanitized and all outputs are escaped
1.6.9 – 2019/08/01
This maintenance upgrade is to fix a style conflict with fontawesome icons
Fix – fontawesome icons not able to get correct style on frontend when the fontawesome script is loaded on the page by theme or another plugin.
1.6.8 – 2019/06/29
This is a maintenance upgrade to fix a potentially fatal error conflict with sites running PHP 7.3 plus compatibility with WordPress v 5.2.2 and WooCommerce 3.6.4
Tweak – Test for compatibility with WooCommerce 3.6.4
Tweak – Test for compatibility with WordPress 5.2.2
Fix – PHP warning continue targeting switch is equivalent to break for compatibility on PHP 7.3
1.6.7 – 2019/05/23
This maintenance upgrade adds support for ALT text on all Slider images plus compatibility with WordPress 5.2.1 and WooCommerce 3.6.3
Tweak – Add ALT text support for product slider images
Tweak – Test for compatibility with WordPress 5.2.1
Tweak – Test for compatibility with WooCommerce 3.6.3
1.6.6 – 2019/04/26
This maintenance update has tweaks for compatibility with WordPress 5.2.0 and WooCommerce 3.6.0 major new versions whilst maintaining backward compatibility
Tweak – Test for compatibility with WordPress 5.2.0
Tweak – Test for compatibility with WooCommerce 3.6.2
Tweak – Support for backward compatibility with WooCommerce v 3.5
1.6.5 – 2019/04/04
This Maintenance update has a tweak for WPML dynamic text stings support plus compatibility tests for WooCommerce 3.5.7, upcoming WordPress 5.2 and WPML version 4.2
Tweak – Test for compatibility with WordPress 5.2
Tweak – Test for compatibility with WooCommerce 3.5.7
Tweak – Replace ict_t with wpml_translate_single_string filter for compatibility with WPML 4.2
Tweak – Replace icl_register_string with wpml_register_single_string action for compatibility with WPML 4.2
Tweak – Full compatibility with WPML with dynamic text
1.6.4 – 2018/12/27
This maintenance update is for compatibility with WordPress 5.0.2, WooCommerce 3.5.3 and PHP 7.3. It also includes performance updates to the plugin framework.
Tweak – Test for compatibility with WordPress 5.0.2 and WordPress 4.9.9
Tweak – Test for compatibility with WooCommerce 3.5.3
Tweak – Create new structure for future development of Gutenberg Blocks
Framework – Performance improvement. Replace wp_remote_fopen with file_get_contents for get web fonts
Framework – Performance improvement. Define new variable is_load_google_fonts if admin does not require to load google fonts
Credit – Props to Derek for alerting us to the framework google fonts performance issue
Framework – Register style name for dynamic style of plugin for use with Gutenberg block
Framework – Update Modal script and style to version 4.1.1
Framework – Update a3rev Plugin Framework to version 2.1.0
Framework – Test and update for compatibility with PHP 7.3
1.6.3 – 2018/05/26
This maintenance update is for compatibility with WordPress 4.9.6 and WooCommerce 3.4.0 and the new GDPR compliance requirements for users in the EU
Tweak – Test for compatibility with WooCommerce 3.4.0
Tweak – Test for compatibility with WordPress 4.9.6
Tweak – Check for any issues with GDPR compliance. None Found
Framework – Update a3rev Plugin Framework to version 2.0.3
1.6.2 – 2018/02/13
Maintenance Update. Under the bonnet tweaks to keep your plugin running smoothly and is the foundation for new features to be developed this year
Framework – Update a3rev Plugin Framework to version 2.0.2
Framework – Add Framework version for all style and script files
Tweak – Update for full compatibility with a3rev Dashboard plugin
Tweak – Change OLD thumbnail image name shop_catalog to woocommerce_thumbnail for compatibility with WC 3.3.0 . Backwards compatibility with WC 3.2.6
Tweak – Test for compatibility with WordPress 4.9.4
Tweak – Test for compatibility with WooCommerce 3.3.1
1.6.1 – 2017/10/13
Tweak – Tested for compatibility with WooCommerce 3.2.0
Tweak – Tested for compatibility with WordPress 4.8.2
Tweak – Added support for the new WC ‘tested up to’ feature to show this plugin has been tested compatible with WC updates
1.6.0 – 2017/06/07
Feature – Launched WooCommerce Widget Product Slider public Github Repository
Tweak – Tested for compatibility with WordPress major version 4.8.0
Tweak – tested for compatibility with WooCommerce version 3.0.7
Tweak – Include bootstrap modal script into plugin framework
Tweak – Update a3rev plugin framework to latest version
Fix – Update underscore templateSettings to add support for default symbol – <% in addition to Slider symbol – {{ to remove conflict with plugins that use underscore template with default symbol.
1.5.4 – 2017/04/17
Tweak – Full compatibility with WC version 3.0.3 with backward compatibility to WC version 2.6.0
Tweak – Change call direct to Product properties with new function that are defined on WC v3.0
Tweak – Get outofstock from term instead of product meta on new WC v3.0
Tweak – Get product featured from term instead of product meta on new WC v3.0
Tweak – Apply styling for sale price on new WC v3.0
Tweak – Tested for full compatibility with WordPress version 4.7.3
1.5.3 – 2017/02/08
Tweak – Change global $$variable to global ${$variable} for compatibility with PHP 7.0
Tweak – Update a3 Revolution to a3rev Software on plugins description
Tweak – Added Settings link to plugins description on plugins menu
Tweak – Tested for full compatibility with WordPress version 4.7.2
Tweak – Tested for full compatibility with WooCommerce version 2.6.14
1.5.2 – 2016/10/28
Tweak – Define new ‘Ajax Multi Submit’ control type with Progress Bar showing and Statistic for plugin framework
Tweak – Define new ‘Ajax Submit’ control type with Progress Bar showing for plugin framework
Tweak – Update plugin framework styles and scripts support for new ‘Ajax Submit’ and ‘Ajax Multi Submit’ control type
Tweak – Tested for full compatibility with WooCommerce version 2.6.7
1.5.1 – 2016/09/24
Fix – Apply line-height option to frontend missed on major version 1.5.0 release
1.5.0 – 2016/09/23
Feature – Plugin Framework Mobile First focus upgrade
Feature – Massive improvement in admin UI and UX in PC, tablet and mobile browsers
Feature – Introducing opening and closing Options Boxes on admin panels
Feature – Added Font editor ‘Line Height’ option
Feature – Added Next | Previous Slider Icons settings option to style those icons
Feature – Added support for select image size to use from each widget and shortcode
Tweak – Move Plugin menu to as submenu of WooCommerce menu
Tweak – Update select type of plugin framework for support group options
Tweak – Update Typography Preview script for apply ‘Line Height’ value to Preview box
Tweak – Update the generate_font_css() function with new ‘Line Height’ option
Tweak – Replace all hard code for line-height inside custom style by new dynamic ‘Line Height’ value
Tweak – Register fontawesome in plugin framework with style name is ‘font-awesome-styles’
Tweak – Make slider compatible with Caching plugins for mobile display
Tweak – Support responsive for slider when browser window is resized
Tweak – Update product_slider.backbone.js script to support new features
Tweak – Update dynamic style for new features
Tweak – Update text domain for full support of translation
Tweak – Make upgrade function to convert old data to new data to work on this version
Tweak – Update all admin menu option titles and help text
Tweak – Tested for full compatibility with WordPress version 4.6.1
Tweak – Tested for full compatibility with PHP 7.0
1.4.2 – 2016/08/15
Tweak – Tested for full compatibility with WooCommerce version 2.6.4
Tweak – Tested for full compatibility with major WordPress version 4.6
Fix – Check if ‘srcset’ is return as ‘false’ by core WP then set it as empty value that browser ignore that value and get correct image url
Credit – Thanks to Joshua Wilson for the ‘srcset’ false bug report on the plugins a3rev support forum
1.4.1 – 2016/06/29
Tweak – Tested for full compatibility with WooCommerce major version 2.6.0
Tweak – Tested for full compatibility with WooCommerce version 2.6.1
Tweak – Tested for full compatibility with WordPress version 4.5.3
1.4.0 – 2016/05/11
Feature – Created new Settings page with Plugin Framework Customization settings box and Slider Cache settings box
Feature – Added Option to set Google Fonts API key to directly access latest fonts and font updates from Google
Feature – Added House keeping function to settings. Clean up on Deletion. Option – Choose if you ever delete this plugin it will completely remove all tables and data it created.
Feature – Added LocalStore Cache option for turn ON or OFF
Feature – Added Clean Cache option for set timeout of cache
Tweak – Make new Settings page as first page of plugin
Tweak – Update slider backbone script to support new caching options
Tweak – Tested for full compatibility with WordPress version 4.5.2
1.3.1 – 2016/04/08
Tweak – Saved the time number into database for one time customize style and Save change on the Plugin Settings
Tweak – Replace version number by time number for dynamic style file are generated by Sass to solve the issue get cache file on CDN server
Tweak – Register fontawesome in plugin framework with style name is ‘font-awesome-styles’
Tweak – Update plugin framework to latest version
Tweak – Tested for full compatibility with WordPress major version 4.5
Tweak – Tested for full compatibility with WooCommerce version 2.5.5
Fix – Recent, Featured and On Sale Filters show products in date published order with most recently published product showing first
1.3.0 – 2016/02/03
Feature – Update slider scripts for support ‘scrset’ and ‘sizes’ for new WordPress v4.4 responsive images feature
Feature – Make Slider on frontend support the Responsive Image with 2 new attribute ‘scrset’ and ‘sizes’ is put on slides for decrease the total size of images are load for small screen
Feature – Change old Media Uploader pop-up to New UI of Uploader with Backbone and Underscore from WordPress
Feature – Added full support for Right to Left RTL layout on plugins admin dashboard
Feature – Update plugin activation and auto Upgrade script for integration with new Responsi Premium Pack plugin
Feature – Define new ‘Background Color’ type on plugin framework with ON | OFF switch to disable background or enable it
Feature – Define new function – hextorgb() – for convert hex color to rgb color on plugin framework
Feature – Define new function – generate_background_color_css() – for export background style code on plugin framework that is used to make custom style
Feature – Define new ‘strip_methods’ argument for Uploader type, allow strip http/https or no
Feature – Compatibility WPML plugin : Define ‘slider_lang’ for support get products on carousel and slider on current language
Tweak – Update backbone script for parse ‘slider_lang’ parameter
Tweak – Define new ‘autoSetSizesForImage’ javascript function for support set ‘sizes’ attribute of images on Slider
Tweak – Update the uploader script to save the Attachment ID and work with New Uploader
Tweak – Change call action from ‘wp_head’ to ‘wp_enqueue_scripts’ and use ‘wp_enqueue_style’ function to load style for better compatibility with minify feature of caching plugins
Tweak – Change call action from ‘wp_head’ to ‘wp_enqueue_scripts’ to load google fonts
Tweak – Change ‘wc_product_slider_widget_item_tpl’ , ‘wc_product_slider_mobile_item_tpl’ and ‘wc_product_slider_card_item_tpl’ underscore template for Slider support ‘srcset’ and ‘sizes’ features
Tweak – Updated a3 Plugin Framework to the latest version
Tweak – Defined ‘frontend_register_scripts’ function with all gallery scripts are registered here for easy to enqueue on frontend
Tweak – Update core style and script of plugin framework for support Background Color type
Tweak – Updated required WordPress version to 4.1 for full compatibility with WooCommerce plugin
Tweak – Tested for full compatibility with WooCommerce version 2.5.2
Tweak – Tested for full compatibility with WordPress version 4.4.2
Fix – Compatibility with w3 total cache inline minification.
1.2.5 – 2015/08/21
Tweak – include new CSSMin lib from https://github.com/tubalmartin/YUI-CSS-compressor-PHP-port into plugin framework instead of old CSSMin lib from http://code.google.com/p/cssmin/ , to avoid conflict with plugins or themes that have CSSMin lib
Tweak – make __construct() function for ‘Compile_Less_Sass’ class instead of using a method with the same name as the class for compatibility on WP 4.3 and is deprecated on PHP4
Tweak – change class name from ‘lessc’ to ‘a3_lessc’ so that it does not conflict with plugins or themes that have another Lessc lib
Tweak – Tested for full compatibility with WooCommerce Version 2.4.5
Tweak – Tested for full compatibility with WordPress major version 4.3.0
Fix – Make __construct() function for ‘WC_Product_Slider_Carousel_Widget’ class instead of using a method with the same name as the class for compatibility on WP 4.3 and is deprecated on PHP4
Fix – Make __construct() function for ‘WC_Product_Slider_Widget’ class instead of using a method with the same name as the class for compatibility on WP 4.3 and is deprecated on PHP4
Fix – Make __construct() function for ‘WC_Product_Slider_Shortcode’ class instead of using a method with the same name as the class for compatibility on WP 4.3 and is deprecated on PHP4
1.2.4 – 2015/06/27
Tweak – Tested for full compatibility with WooCommerce Version 2.3.11
Tweak – Updated legacy API url for when a site admin has set index.php permalinks
1.2.3 – 2015/06/10
Fix – Check ‘request_filesystem_credentials’ function, if it does not exists then require the core php lib file from WP where it is defined
1.2.2 – 2015/06/04
Tweak – Tested for full compatibility with WooCommerce Version 2.3.10
Tweak – Security Hardening. Removed all php file_put_contents functions in the plugin framework and replace with the WP_Filesystem API
Tweak – Security Hardening. Removed all php file_get_contents functions in the plugin framework and replace with the WP_Filesystem API
Fix – Update dynamic stylesheet url in uploads folder to the format //domain.com/ so it’s always is correct when loaded as http or https
1.2.1 – 2015/05/18
Tweak – Change Slider Skins Control and Pager setting default to OFF
Tweak – Control and pager CSS only loads from the footer when those settings are switched ON
1.2.0 – 2015/05/15
Feature – Added ability to Filter the products displayed from selected WooCommerce Product category by Recent (existing), Featured or On-Sale
Tweak – On widget added new Filter dropdown selector.
Tweak – Tested and Tweaked for full compatibility with WordPress Version 4.2.2
Tweak – Update cycle2 script to latest version 2.1.6
1.1.7 – 2015/04/21
Tweak – Tested and Tweaked for full compatibility with WordPress Version 4.2.0
Tweak – Tested and Tweaked for full compatibility with WooCommerce Version 2.3.8
Tweak – Update style of plugin framework. Removed the [data-icon] selector to prevent conflict with other plugins that have font awesome icons
1.1.6 – 2015/03/19
Tweak – Tested and Tweaked for full compatibility with WooCommerce Version 2.3.7
Tweak – Tested and Tweaked for full compatibility with WordPress Version 4.1.1
1.1.5 – 2015/02/13
Tweak – Maintenance update for full compatibility with WooCommerce major version release 2.3.0 with backward compatibility to WC 2.2.0
Tweak – Tested fully compatible with WooCommerce just released version 2.3.3
Tweak – Changed WP_CONTENT_DIR to WP_PLUGIN_DIR. When an admin sets a custom WordPress file structure then it can get the correct path of plugin
1.1.4 – 2015/01/21
Tweak – Fix Slider skins first load UI when Dynamic height is activated for a skin
Tweak – Slider container load at 250px high and then expand or contract to height of items loaded when loaded – improved UI.
Tweak – SliderSkin .css only loads on urls where slider is in a widget – like js assets
Tweak – Edit for full compatibility with a3 Lazy Load. Only load skin when it comes into the view port like content
Dev – Convert Sass Global .less to simplify compiling style sheet edits.
Fix – Show pager on mobile skin when viewing on mobile
Fix – Update legacy api so that use home_url( ‘/’ ) instead of get_option(‘siteurl’) to solve the problem can’t get data when site has WordPress Settings > General, configured WordPress Address different from Site Address
Fix – Sass compile path not saving on windows xampp.
1.1.3 – 2015/01/12
Tweak – Audit, test and tweak for 100% compatibility with WooCommerce 2.2.10
Tweak – Audit, test and tweak for 100% compatibility with WordPress Version 4.1
Tweak – Only load backbone scripts on the post and page where product slider widget is active.
Tweak – Only load plugin assets on post and page where product slider widget is active.
Tweak – Only load assets on page that are required for slider effects – not all plugin js assets.
Tweak – Only load slider mobile assets when load in mobile screen.
Tweak – Added a3 lazy Load and a3 Portfolios to the admin yellow box list of free plugins.
Fix – Show the new plugin version on the Core Update page. Feature stopped working with WordPress version 4.1
1.1.2 – 2014/09/12
Tweak – Tested 100% compatible with WooCommerce 2.2.2
Tweak – Tested 100% compatible with WordPress Version 4.0