Framework – Updated LESS compiler for compatibility with PHP 8.2 onwards
3.2.4 – 2025/04/24
This maintenance release has a bug fix plus tested for compatibility with WordPress 6.8
Fix – validate first argument is array for array_merge func
Tweak – Test for compatibility with WordPress 6.8
3.2.3 – 2024/11/09
This maintenance release contains a bug fix plus compatibility with WordPress major release version 6.7
Tweak – Tested for compatibility with WordPress major version 6.7
Fix – validate $numberItems is isset
3.2.2 – 2024/07/15
This release has various tweaks for compatibility with WordPress 6.6
Tweak – Tested for compatibility with WordPress 6.6
Tweak – Validate and correct block.json based schema from WordPress Block
3.2.1 – 2024/01/18
This release has a breaking bug fix that came out of the 3.2.0 major release.
Fix – Call to correct a3_portfolio_title_filter_content_template instead of a3_portfolio_filter_content_template for filter the title.
3.2.0 – 2024/01/12
This feature release adds Stickers for item cards and expander, a new Tags Meta Block and the Gutenberg editor to item posts.
Feature – new Portfolio Tags Meta block for use on Content or Single Portfolio Block Page
Feature – new Stickers for Item Card and Item Expander.
Feature – Portfolio Tags can be sued as to Create the Stickers. Add Sticker Colour on the tag edit page.
Feature – Add support for Gutenberg editor for content of Portfolio Edit page
Fix – make block Previews show
Fix – make Category meta and Tag meta show correct format on Portfolio Content.
3.1.2 – 2023/11/23
This maintenance release has plugin framework updates for compatibility with PHP 8.1 onwards, plus compatibility with WordPress 6.4.1
Tweak – Test for compatibility with WordPress 6.4.1
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
3.1.1 – 2023/04/08
This release has a vulnerability security patch, please upgrade now.
Security – Add escaping the URL of Launch Button before output.
Tweak – Test for compatibility with WordPress 6.2.
Props – Security researcher Yuki Haruma reported via Patchstack.
3.1.0 – 2023/01/03
This feature release removes the fontawesome lib and replaces icons with SVGs plus adds Default Topography option to font controls.
Feature – Convert icon from font awesome to SVG
Feature – Update styling for new SVG icons
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
3.0.2 – 2022/11/01
This maintenance release has a security vulnerability patch, plus compatibility with WordPress major version 6.1.0
Tweak – Test for compatibility with WordPress 6.1
Security – This release has a patch for a security vulnerability
3.0.1 – 2022/09/19
This maintenance release fixes a missing content filter on portfolio item pages
Fix – apply filters the_content into content-single-portfolio so all shortcode, embed media that can show on portfolio single detail page
3.0.0 – 2022/05/24
This feature release has compatibility tweaks for WordPress major version 6.0 and includes various code tweaks for FSE compatibility and tweaks for hardening security.
Feature – Add BlockTemplatesController for control block templates of Portfolio singular, category and tag
Feature – Define single-a3-portfolio.html block template with custom layout of portfolio item on FSE
Feature – Define taxonomy-portfolio_cat.html block template with custom layout from plugin on FSE
Feature – Define taxonomy-portfolio_tag.html block template with custom layout from plugin on FSE
Tweak – Test for compatibility with WordPress 6.0
Tweak – Test for compatibility with WordPress 6.0
Tweak – Add filter on generate_border_style_css
Tweak – Add filter on generate_border_corner_css
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
2.10 – 2022/01/21
This release has a new Google Fonts API Validation feature plus compatibility with WordPress major version 5.9
Feature – Add Ajax Validate button for the Google Font API field, for quick and easy Validation of API keys
Dev – Add dynamic help text to Google Font API fields
Tweak – Test for compatibility with WordPress 5.9
Tweak – Test for compatibility with latest version of Gutenberg from WordPress 5.9
Framework – Update a3rev Plugin Framework to version 2.5.0
2.9.13 – 2021/11/20
This maintenance release has a bug fix for compatibility with PHP 8.x
Tweak – Test for compatibility with PHP 8.x
Fix – Update some defined functions without an optional parameter when followed by a required parameter. This is deprecated as of PHP 8.0.0
2.9.12 – 2021/07/19
This maintenance release has code tweaks for WordPress 5.8 compatibility plus Security Hardening.
Tweak – Test for compatibility with WordPress 5.8
Tweak – Test for compatibility with Gutenberg 10.7
Security – Add more variable, options and html escaping
Security – Get variable via name instead of use extract
2.9.11 – 2021/07/12
This small maintenance release contains a security patch.
Security – Added escaping for the shortcode parameters
Tweak – Skipped version 2.9.10 to avoid PHP misread
2.9.9 – 2021/03/17
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)
2.9.8 – 2021/03/09
This maintenance release is for compatibility with WordPress 5.7 and Gutenberg 10.0
Tweak – Test for compatibility with WordPress 5.7
Tweak – Test for compatibility with Gutenberg 10.0
2.9.7 – 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
2.9.6 – 2020/12/15
This maintenance release adds block preview images for block discovery
Tweak – Add support for Block Discovery Preview
2.9.5 – 2020/12/08
This maintenance release has tweaks and fixes for compatibility with WordPress major version 5.6 and PHP 7.4.8 and Gutenberg 9.4
Tweak – Test for compatibility with PHP 7.4.8
Tweak – Test for compatibility with WordPress 5.6
Tweak – Test for compatibility with Gutenberg 9.4
Tweak – Update the Spacing component to latest version 1.0.10
Fix – Update plugin framework script, remove jQuery.browser is deprecated to resolve conflict with jQuery Migrate Helper plugin
2.9.4 – 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
2.9.3 – 2020/07/20
This maintenance release has a performance tweak, plus compatibility with WordPress 5.4.2, Gutenberg 8.5.1 and WooCommerce 4.3.0
Tweak – Reduce the block scripts on first load in the Gutenberg Editor
Tweak – Test for compatibility with WordPress 5.4.2
Tweak – Test for compatibility with WooCommerce 4.3.0
Tweak – Test for compatibility with Gutenberg 8.5.1
2.9.2 – 2020/03/24
This maintenace release fixes a bug that creates an error with JSON loaded from AJAX
Fix – Hook ‘a3_portfolio_set_global_page’ to action ‘plugins_loaded’ tag to stop warning that effect to JSON value from AJAX
2.9.1 – 2020/03/21
This maintenance release has compatibility with WordPress 5.4 plus completion of framework refactor to Composer, implement Travis CI unit testing and compat tweaks for PHP 7.0 to 7.4 and Gutenberg 7.5
Tweak – Test for compatibility with WordPress 5.4
Tweak – Run Travis CI unit build tests for PHP compatibility issues with PHP 7.0 to 7.4
Tweak – Plugin Framework fully refactored to Composer for cleaner code and faster PHP code
Tweak – Update Gutenberg block for work compatibility with Gutenberg latest version 7.5
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 for not use get_magic_quotes_gpc function for PHP 7.4
2.9.0 – 2019/11/28
This feature release has a lot including compatibility with WordPress 5.3 PHP upgrade to Composer PHP Dependency Manger, a full security review plus a bug fix.
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
Dev – Replace file_get_contents with HTTP API wp_remote_get
Dev – Ensure that all inputs are sanitized and all outputs are escaped
Fix – Called remove_filter( ‘the_title’, array( $this, ‘portfolio_the_title’ ) ); after add filter, so that html code is not added into attribute of image on card , solves the item card showing code on category pages
2.8.1 – 2019/10/12
This maintenance update is to fix PHP query arg function errors
Fix – Parse parameter to add_query_arg function
2.8.0 – 2019/09/07
This feature upgrade adds a3Portfolio Gutenberg Block plus 5 filter blocks. Also includes inclusion of shortcodes into core for those still using the legacy editor.
Feature – a3 Portfolio Premium shortcodes plugin discontinued, shortcodes now included in the parent plugin.
Tweak – Remove a3 Portfolio Shortcode placecard and link from admin dashboard sidebar
2.7.6 – 2019/09/03
This upgrade is for compatibility with Responsi Framework 7.6.0
Refactor – Rewrite frontend HTML, CSS, JS and Variables Class and ID names to the new framework 7.6.0 namespaces
Refactor – Rewrite customizer HTML, CSS, JS and Variables Class and ID names to the new framework 7.6.0 namespaces
Refactor – HTML, CSS, JS and Variables Class and ID names called from the framework making plugin file sizes smaller and faster to load
2.7.5 – 2019/08/01
This maintenance upgrade is to fix a style conflict with fontawesome icons and a Categories layout style on Posts
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.
Fix – Categories layout style on Portfolio Post items
2.7.4 – 2019/07/25
This upgrade has some small tweaks for compatibility with Responsi Framework 7.5.0
Refactor – Up grade all plugin CSS and JS called from Responsi Framework from Class ID to Class name for the new Responsi Class names.
2.7.3 – 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
Fix – PHP warning continue targeting switch is equivalent to break for compatibility on PHP 7.3
2.7.2 – 2019/05/25
This is a small maintenance update to fix a PHP 7.3 count warning
Fix – count Parameter must be an array or an object that implements Countable
2.7.1 – 2019/05/23
This maintenance upgrade adds support for ALT text on all portfolio images plus compatibility with WordPress 5.2.1
Tweak – Add ALT text support for item card feature image and default gallery images
Tweak – Test for compatibility with WordPress 5.2.1
2.7.0 – 2019/01/12
This upgrade includes 2 new sort features on the Portfolio Category Widget plus 1 bug fix on it.
Feature – Portfolio Categories widget – Add option to exclude Categories from showing on the frontend
Feature – Portfolio Categories widget – Add sort option for category items with show Newest first or show Oldest first
Fix – Category Order option, show by the order set on the Categories menu was not working
2.6.9 – 2019/01/05
This maintenance update is for compatibility with WordPress 5.0.2 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 – 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
2.6.8 – 2018/09/18
This maintenance update fixes an item card layout bug when 1 card is added to show full width in a single column when inserted by shortcode.
Tweak – Test for compatibility with WordPress 4.9.8
Fix – Update layout style for apply full wide for card on one column
2.6.7 – 2018/07/23
This maintenance upgrade has code tweaks for compatibility with Responsi Header Extender add-on and a3 Lazy Load plugin plus WordPress 4.9.7
Tweak – Open the expander at correct position for compatibility with Responsi Header Extender addon
Tweak – Called masonry for calculate height of card item after image is loaded by Lazy script for compatibility with a3 Lazy Load plugin
Tweak – Test for compatibility with WordPress 4.9.7
2.6.6 – 2018/06/21
Fix – An issue with compress JS script file with yesterdays 2.6.5 upgrade
2.6.5 – 2018/06/20
Maintenance update to fix a display issue in Chrome and Categories display issue on item posts plus a fix for Item Extender URL
Tweak – Change priority value from 2 to 9 for apply single Portfolio template so that content shows correct
Fix – Update JavaScript for trigger correct so that it opens popup from the item extender URL
2.6.4 – 2018/06/19
Maintenance update has 1 bug fix and 1 tweak when adding shortcodes to posts to show in item expander.
Tweak – Change priority value from 12 to 2 for apply single Portfolio template so that shortcode content can work correctly
Framework – Fix for Framework Global Box open and close settings options
Framework – Update a3rev Plugin Framework to version 2.0.5
Fix – Called wpautop before do_shortcode for the content show on Expander so that it does not add more space to content loaded by shortcode
2.6.3 – 2018/06/16
Tweak – Test for compatibility with WordPress 4.9.6
Fix – Add a3-notlazy class to Expander main gallery image to resolve conflict with a3 Lazy Load plugin
2.6.2 – 2018/05/26
This maintenance update is for compatibility with WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU
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
2.6.1 – 2018/03/07
This is a big Maintenance Update. IMPORTANT clear all caches after this update. 3 Bug Fixes plus 2 Mobile UI and UX tweaks. Big fix for conflict with themes that filter Content in wp head.
Tweak – Mobile break point to display items one column in portrait on new Apple and Android wider screen phones.
Tweak – Update script to remove auto close expander when scroll on mobile for improved UX
Fix – Changed from filtering the content at wp head to filter the title and call wp content from there to resolve issues with themes that filter the content at wp head.
Fix – Item Cards alignment in PC and tablet for portfolio items without description.
Fix – Image Scale and Crop options which had stopped working
2.6.0 – 2018/03/05
Feature Upgrade. This version adds full compatibility with the popular Divi premium theme by adding Category and Tags templates when that theme is used.
Feature – Added taxonomy templates that are used when the Divi theme is activated.
2.5.2 – 2018/02/14
Fix – Set correct name A3_PORTFOLIO_VERSION for update version
2.5.1 – 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 – Test for compatibility with WordPress 4.9.4
2.5.0 – 2017/06/10
Feature – Launched a3 Portfolio public Github Repository
Feature – WordPress Translation activation. Add text domain declaration in file header.
Tweak – Tested for compatibility with WordPress major version 4.8.0
Tweak – Include bootstrap modal script into plugin framework
Tweak – Update a3rev plugin framework to latest version
2.4.6 – 2017/05/03
Tweak – Tested for full compatibility with WordPress version 4.7.4
Dev – Define new a3_portfolio_get_permalink_structure function to get new permalink structure of Portfolio on WP 4.7.4
Fix – Set rewrite rules just for sub pages of main Portfolio pages to resolve conflicts with other plugins that have custom rewrite rules
2.4.5 – 2017/03/31
Tweak – Changed facebook social share image size from thumbnail to medium size for better display when share from the Item Expander
Tweak – Tested for full compatibility with WordPress version 4.7.3
Fix – Update facebook social share parameters to rectify not being able to get the featured image in the facebook share pop up
2.4.4 – 2017/02/09
Tweak – Change global $$variable to global ${$variable} for compatibility with PHP 7.0
Tweak – Removed auto redirect to plugins admin panel on activation
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
Fix – Show $number as string with use str_replace instead of preg_replace. $ value amounts not showing in item expander description
Fix – Update Portfolio script so that portfolio item cards display correctly without overlapping in mobile.
2.4.3 – 2017/01/03
Tweak – Remove auto redirect to settings page when first install and activate the plugin
Tweak – Add Settings link to the plugins place maker on Plugins menu
Tweak – Update By A3 Revolution to a3rev Software on plugins place marker
Fix – Remove space from gallery image ids value when add or remove images
2.4.2 – 2016/12/12
Tweak – Tested for full compatibility with WordPress version 4.7
Fix – Validate empty file that are parsed to a3_portfolio_get_template
2.4.1 – 2016/06/24
Tweak – Update Portfolio Gallery box to enable a3 Portfolio Dynamic Gallery plugin to hook to it
Tweak – Update ‘a3.portfolio.js’ script to support a3 Portfolio Dynamic Gallery plugin
Tweak – Tested for full compatibility with WordPress version 4.5.3
Fix – Check $post variable is defined
Fix – Called ‘wp_reset_query’ at end of custom portfolio query to fix pagination can show items
Fix – Hooked ‘a3_portfolio_term_description’ to ‘a3_portfolio_before_category_content’ instead of ‘a3_portfolio_before_template_part’ to resolve category description duplication on Portfolio Category pages
2.4.0 – 2016/05/19
Feature – Created new ‘Settings’ panel page for plugin
Feature – Add ‘Portfolio Item Images’ settings box for ‘Settings’ panel. Set Gallery and Thumbnail dimension
Feature – Add Hard Crop option for Gallery images and Thumbnails
Feature – Add lightbox image pop up on Portfolio Item post gallery image option. Image shows in the pop up at full size
Tweak – Move ‘Plugin Framework Global Settings’ box from ‘Item Cards’ panel to ‘Settings’ panel.
Tweak – Changed all image size from default WP to custom image dimensions set from the plugin.
Tweak – Updated ‘a3.portfolio.css’ style file for support new features
Tweak – Updated ‘a3.portfolio.single.js’ script file for support new features
Tweak – Change thumbnail image show on frontend from hard code 80 x 80 px to Gallery Thumbnail Size set from plugin settings
Tweak – Tested for full compatibility with WordPress version 4.5.2
2.3.0 – 2016/05/04
Feature – Add new ‘Image Links Opens’ ITEM POST or ITEM EXPANDER option for when click on Card Image when Card Title is set Under Image
Feature – Add new ‘Title Links Opens’ ITEM POST or ITEM EXPANDER option for when click on Card Title
Feature – Add new ‘View More Link Opens’ ITEM POST or ITEM EXPANDER option for when click on View More button
Feature – Add new ‘View More Button Text’ option into Button tab of Portfolio Data box on individual Portfolio Item for support change the button text on each Portfolio item
Tweak – Make condition logic for show or hide options that have relationship
Tweak – Update ‘a3.portfolio.css’ and ‘a3.portfolio.less’ style file for support new features
Tweak – Update ‘a3.portfolio.js’ and ‘a3.portfolio.min.js’ script file for support new features
Tweak – Change layout structure of card item for support new features
Tweak – Make On Hover Background screen just show on the Image Container instead of the whole Item Card
Tweak – Filter for change View More Button Text on each card item.
Tweak – Update Portfolio Permalinks for when Permalinks are set as pretty or plain
Fix – Auto flush rewrite rules when first time plugin is activated for solved the issue return 404 page when go to Portfolio item detail page
2.2.0 – 2016/04/14
Feature – Expander – Added option to set ‘Thumbnail Position’ on expander. Options are show on right or below main gallery
Tweak – Update ‘a3.portfolio.css’ for new feature
Tweak – Apply style and script for new term.php page on WordPress 4.5
Tweak – Change hook tag from ‘portfolio_cat_edit_form_fields’ to ‘portfolio_cat_edit_form’ to fix settings box show on Portfolio Category Edit page
Tweak – Apply settings box for Portfolio Category Add and Edit page
Tweak – Update ‘content-portfolio.php’ template
Tweak – Update ‘gallery-thumbs.php’ template
Tweak – Tested for full compatibility with WordPress major version 4.5
2.1.0 – 2016/04/01
Feature – Build new Portfolio Attribute feature as an upgrade of Feature Data
Feature – Create Portfolio Attribute page and Terms page as custom taxonomy
Feature – Portfolio Attribute with 2 types Select | Text .
Feature – Attribute with ‘Select’ type support terms and for using to make filter from widget.
Feature – Attribute with ‘Text’ type to give the same feature as old Feature Data option
Feature – Create new Attribute menu on the Portfolio Item Data box on Portfolio Edit page.
Feature – Attribute meta box with select attributes and terms to apply to this item.
Feature – Attribute meta box with expand attribute and sort by drag and drop.
Feature – Define Portfolio Attribute Filter Widget. This new widget is used to filter multiple Attribute based terms.
Feature – Portfolio Attribute Filter Widget can add to Sidebar but just show on main Portfolio page or Portfolio Category page or Portfolio Tag page, don’t show on another page.
Feature – Define new settings for select position to show Attribute Table on Expander and Item Post.
Feature – Upgrade all current icons to fontawesome icons
Tweak – Update admin meta box style and script from plugin framework
Tweak – Register fontawesome in plugin framework with style name is ‘font-awesome-styles’
Tweak – Register jquery blockUI script to support new features
Tweak – Update ‘a3.portfolio.css’ file to support new features
Tweak – Update ‘a3.portfolio.metabox.admin.css’ file to support new features
Tweak – Update ‘a3.portfolio.js’ file to support new features
Tweak – Update ‘a3.portfolio.metabox.admin.js’ file to support new features
Tweak – Include new a3-portfolio-ajax.php file to support AJAX from plugin
Tweak – Remove Feature Data page and Feature Data tab from Portfolio Item Data box
Tweak – Make upgrade function for auto convert data from Feature Data to Attribute data as ‘Text’ type