Premium Portfolio Features for Phlox theme - Version 1.2.2

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Premium Portfolio Features for Phlox theme
Version 1.2.2
Comparing to
See all releases

Code changes from version 1.2.0 to 1.2.2

README.txt CHANGED
@@ -6,8 +6,8 @@ License URI: http://www.gnu.org/licenses/gpl.html
6
  Tags: ajaxload, page-builder, siteorigin, auxin, phlox, averta, fullwidth, masonry, timeline, portfolio, projects, showcase, minimal, wix, flat
7
  Requires PHP: 5.3
8
  Requires at least: 4.6
9
- Tested up to: 4.8.4
10
- Stable tag: 1.2.0
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
@@ -121,6 +121,10 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/auxin-por
121
 
122
  == Changelog ==
123
 
 
 
 
 
124
  = Version 1.2.0 / (14.11.2017) =
125
  - [Improvement]: Improvement in portfolio page layouts.
126
  - [Improvement]: The order of breadcrumb separator items changed.
@@ -161,6 +165,6 @@ Bugs can be reported in our [support forums](http://wordpress.org/tags/auxin-por
161
 
162
  == Upgrade Notice ==
163
 
164
- = 1.2.0 =
165
- - [Improvement]: Improvement in portfolio page layouts.
166
- - [Improvement]: The order of breadcrumb separator items changed.
6
  Tags: ajaxload, page-builder, siteorigin, auxin, phlox, averta, fullwidth, masonry, timeline, portfolio, projects, showcase, minimal, wix, flat
7
  Requires PHP: 5.3
8
  Requires at least: 4.6
9
+ Tested up to: 4.9.1
10
+ Stable tag: 1.2.2
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
121
 
122
  == Changelog ==
123
 
124
+ = Version 1.2.2 / (02.12.2017) =
125
+ - [Improvement]: Preview animation added for theme options.
126
+ - [Improvement]: Improvement in portfolio archive page.
127
+
128
  = Version 1.2.0 / (14.11.2017) =
129
  - [Improvement]: Improvement in portfolio page layouts.
130
  - [Improvement]: The order of breadcrumb separator items changed.
165
 
166
  == Upgrade Notice ==
167
 
168
+ = 1.2.2 =
169
+ - [Improvement]: Preview animation added for theme options.
170
+ - [Improvement]: Improvement in portfolio archive page.
admin/includes/admin-hooks.php CHANGED
@@ -13,7 +13,7 @@ function auxpfo_after_plugin_update(){
13
  if( AUXPFO_VERSION !== get_transient( 'auxin_' . AUXPFO_SLUG . '_version' ) ){
14
  set_transient( 'auxin_' . AUXPFO_SLUG . '_version', AUXPFO_VERSION, MONTH_IN_SECONDS );
15
 
16
- do_action( 'auxin_plugin_updated', AUXPFO_SLUG, AUXPFO_VERSION, AUXPFO_BASE_NAME );
17
  }
18
  }
19
  add_action( "admin_init", "auxpfo_after_plugin_update");
13
  if( AUXPFO_VERSION !== get_transient( 'auxin_' . AUXPFO_SLUG . '_version' ) ){
14
  set_transient( 'auxin_' . AUXPFO_SLUG . '_version', AUXPFO_VERSION, MONTH_IN_SECONDS );
15
 
16
+ do_action( 'auxin_plugin_updated', true, AUXPFO_SLUG, AUXPFO_VERSION, AUXPFO_BASE_NAME );
17
  }
18
  }
19
  add_action( "admin_init", "auxpfo_after_plugin_update");
auxin-portfolio.php CHANGED
@@ -12,14 +12,14 @@
12
  * Plugin Name: Phlox Portfolio
13
  * Plugin URI: http://averta.net/phlox/
14
  * Description: Showcase your projects beautifully in Phlox theme
15
- * Version: 1.2.0
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * License: GPL2
19
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
20
  * Text Domain: auxin-portfolio
21
  * Domain Path: /languages
22
- * Tested up to: 4.8.4
23
  */
24
 
25
  // If this file is called directly, abort.
@@ -51,7 +51,7 @@ if( is_admin() || false === get_transient( 'auxpfo_plugin_requirements_check' )
51
  'name' => __('Phlox Core Elements', 'auxin-portfolio'), // The plugin name.
52
  'basename' => 'auxin-elements/auxin-elements.php', // The plugin basename (typically the folder name and main php file)
53
  'required' => true, // If true, the user will be notified with a notice to install the plugin.
54
- 'version' => '1.7.0', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
55
  'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
56
  'is_callable' => 'AUXELS' // If set, this callable will be be checked for availability to determine if a plugin is active.
57
  )
@@ -60,7 +60,7 @@ if( is_admin() || false === get_transient( 'auxpfo_plugin_requirements_check' )
60
  'themes' => array(
61
  array(
62
  'name' => __('Phlox', 'auxin-portfolio'), // The theme name.
63
- 'version' => '1.9.0', // E.g. 1.0.0. If set, the active theme must be this version or higher.
64
  'is_callable' => '', // If set, this callable will be be checked for availability to determine if a theme is active.
65
  'file_exists' => get_template_directory() . '/auxin/auxin-include/auxin.php' // If set, this file will be checked for availability to determine if a theme is active.
66
  )
12
  * Plugin Name: Phlox Portfolio
13
  * Plugin URI: http://averta.net/phlox/
14
  * Description: Showcase your projects beautifully in Phlox theme
15
+ * Version: 1.2.2
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * License: GPL2
19
  * License URI: https://www.gnu.org/licenses/gpl-2.0.html
20
  * Text Domain: auxin-portfolio
21
  * Domain Path: /languages
22
+ * Tested up to: 4.9.1
23
  */
24
 
25
  // If this file is called directly, abort.
51
  'name' => __('Phlox Core Elements', 'auxin-portfolio'), // The plugin name.
52
  'basename' => 'auxin-elements/auxin-elements.php', // The plugin basename (typically the folder name and main php file)
53
  'required' => true, // If true, the user will be notified with a notice to install the plugin.
54
+ 'version' => '1.7.2', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
55
  'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
56
  'is_callable' => 'AUXELS' // If set, this callable will be be checked for availability to determine if a plugin is active.
57
  )
60
  'themes' => array(
61
  array(
62
  'name' => __('Phlox', 'auxin-portfolio'), // The theme name.
63
+ 'version' => '1.9.2', // E.g. 1.0.0. If set, the active theme must be this version or higher.
64
  'is_callable' => '', // If set, this callable will be be checked for availability to determine if a theme is active.
65
  'file_exists' => get_template_directory() . '/auxin/auxin-include/auxin.php' // If set, this file will be checked for availability to determine if a theme is active.
66
  )
includes/define.php CHANGED
@@ -15,7 +15,7 @@ if( ! defined( 'THEME_NAME' ) ){
15
 
16
 
17
 
18
- define( 'AUXPFO_VERSION' , '1.2.0' );
19
 
20
  define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
21
 
15
 
16
 
17
 
18
+ define( 'AUXPFO_VERSION' , '1.2.2' );
19
 
20
  define( 'AUXPFO_SLUG' , 'auxin-portfolio' );
21
 
includes/general-hooks.php CHANGED
@@ -52,8 +52,8 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
52
 
53
 
54
  $options[] = array(
55
- 'title' => __('Single Portfolio Layout', 'auxin-portfolio'),
56
- 'description' => __('Specifies Layout style on single portfolio.', 'auxin-portfolio'),
57
  'id' => 'portfolio_single_side_pos',
58
  'section' => 'portfolio-section-single',
59
  'dependency' => array(),
@@ -1420,7 +1420,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1420
 
1421
  $options[] = array(
1422
  'title' => __('Portfolio Hover Type', 'auxin-portfolio'),
1423
- 'description' => __('Specifies the portfolio item type.', 'auxin-portfolio'),
1424
  'id' => 'portfolio_archive_grid_item_type',
1425
  'section' => 'portfolio-section-archive',
1426
  'dependency' => array(
@@ -1434,7 +1434,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1434
  'choices' => array(
1435
  // default template
1436
  'classic' => array(
1437
- 'label' => __('Classic' , 'auxin-portfolio'),
1438
  'image' => AUXPFO_ADMIN_URL . '/assets/images/ClassicLightbox.png'
1439
  ),
1440
  'classic-lightbox' => array(
@@ -1468,7 +1468,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1468
 
1469
  $options[] = array(
1470
  'title' => __('Tile Portfolio Item Type', 'auxin-portfolio'),
1471
- 'description' => __('Specifies the portfolio item type.', 'auxin-portfolio'),
1472
  'id' => 'portfolio_archive_tile_item_type',
1473
  'section' => 'portfolio-section-archive',
1474
  'dependency' => array(
@@ -1664,9 +1664,9 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1664
  );
1665
 
1666
  $options[] = array(
1667
- 'title' => __( 'Background Color For Land Layout', 'auxin-portfolio' ),
1668
  'id' => 'portfolio_land_side_background_color',
1669
- 'description' => __( 'Specifies the background color for land layout.', 'auxin-portfolio' ),
1670
  'section' => 'portfolio-section-archive',
1671
  'type' => 'color',
1672
  'dependency' => array(
@@ -1687,9 +1687,9 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1687
  );
1688
 
1689
  $options[] = array(
1690
- 'title' => __( 'Border Color For Land Layout', 'auxin-portfolio' ),
1691
  'id' => 'portfolio_land_side_border_color',
1692
- 'description' => __( 'Specifies the border color for land layout.', 'auxin-portfolio' ),
1693
  'section' => 'portfolio-section-archive',
1694
  'type' => 'color',
1695
  'dependency' => array(
@@ -1865,7 +1865,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1865
 
1866
  $options[] = array(
1867
  'title' => __('Portfolio Hover Type', 'auxin-portfolio'),
1868
- 'description' => __('Specifies the portfolio item type.', 'auxin-portfolio'),
1869
  'id' => 'portfolio_taxonomy_grid_item_type',
1870
  'section' => 'portfolio-section-taxonomy',
1871
  'dependency' => array(
@@ -1879,7 +1879,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1879
  'choices' => array(
1880
  // default template
1881
  'classic' => array(
1882
- 'label' => __('Classic' , 'auxin-portfolio'),
1883
  'image' => AUXPFO_ADMIN_URL . '/assets/images/ClassicLightbox.png'
1884
  ),
1885
  'classic-lightbox' => array(
@@ -1913,7 +1913,7 @@ function auxin_define_portfolio_theme_options( $fields_sections_list ){
1913
 
1914
  $options[] = array(
1915
  'title' => __('Tile Portfolio Item Type', 'auxin-portfolio'),
1916
- 'description' => __('Specifies the portfolio item type.', 'auxin-portfolio'),
1917
  'id' => 'portfolio_taxonomy_tile_item_type',
1918
  'section' => 'portfolio-section-taxonomy',
1919
  'dependency' => array(
52
 
53
 
54
  $options[] = array(
55
+ 'title' => __('Single Portfolio Template', 'auxin-portfolio'),
56
+ 'description' => __('Specifies single portfolio template.', 'auxin-portfolio'),
57
  'id' => 'portfolio_single_side_pos',
58
  'section' => 'portfolio-section-single',
59
  'dependency' => array(),
1420
 
1421
  $options[] = array(
1422
  'title' => __('Portfolio Hover Type', 'auxin-portfolio'),
1423
+ 'description' => __('Hover over images to see the animation.', 'auxin-portfolio'),
1424
  'id' => 'portfolio_archive_grid_item_type',
1425
  'section' => 'portfolio-section-archive',
1426
  'dependency' => array(
1434
  'choices' => array(
1435
  // default template
1436
  'classic' => array(
1437
+ 'label' => __('No animation' , 'auxin-portfolio'),
1438
  'image' => AUXPFO_ADMIN_URL . '/assets/images/ClassicLightbox.png'
1439
  ),
1440
  'classic-lightbox' => array(
1468
 
1469
  $options[] = array(
1470
  'title' => __('Tile Portfolio Item Type', 'auxin-portfolio'),
1471
+ 'description' => __('Hover over images to see the animation.', 'auxin-portfolio'),
1472
  'id' => 'portfolio_archive_tile_item_type',
1473
  'section' => 'portfolio-section-archive',
1474
  'dependency' => array(
1664
  );
1665
 
1666
  $options[] = array(
1667
+ 'title' => __( 'Entry Box Background Color', 'auxin-portfolio' ),
1668
  'id' => 'portfolio_land_side_background_color',
1669
+ 'description' => __( 'Specifies the background color for entry box..', 'auxin-portfolio' ),
1670
  'section' => 'portfolio-section-archive',
1671
  'type' => 'color',
1672
  'dependency' => array(
1687
  );
1688
 
1689
  $options[] = array(
1690
+ 'title' => __( 'Entry Box Border Color', 'auxin-portfolio' ),
1691
  'id' => 'portfolio_land_side_border_color',
1692
+ 'description' => __( 'Specifies the border color for entry box.', 'auxin-portfolio' ),
1693
  'section' => 'portfolio-section-archive',
1694
  'type' => 'color',
1695
  'dependency' => array(
1865
 
1866
  $options[] = array(
1867
  'title' => __('Portfolio Hover Type', 'auxin-portfolio'),
1868
+ 'description' => __('Hover over images to see the animation.', 'auxin-portfolio'),
1869
  'id' => 'portfolio_taxonomy_grid_item_type',
1870
  'section' => 'portfolio-section-taxonomy',
1871
  'dependency' => array(
1879
  'choices' => array(
1880
  // default template
1881
  'classic' => array(
1882
+ 'label' => __('No animation' , 'auxin-portfolio'),
1883
  'image' => AUXPFO_ADMIN_URL . '/assets/images/ClassicLightbox.png'
1884
  ),
1885
  'classic-lightbox' => array(
1913
 
1914
  $options[] = array(
1915
  'title' => __('Tile Portfolio Item Type', 'auxin-portfolio'),
1916
+ 'description' => __('Hover over images to see the animation.', 'auxin-portfolio'),
1917
  'id' => 'portfolio_taxonomy_tile_item_type',
1918
  'section' => 'portfolio-section-taxonomy',
1919
  'dependency' => array(