Version Description
- Comitability issue with PHP7 fixed
Download this release
Release Info
Developer | marsian |
Plugin | TemplatesNext ToolKit |
Version | 2.0.3 |
Comparing to | |
See all releases |
Code changes from version 2.0.2 to 2.0.3
- inc/widgets/widget-advertgrid.php +2 -1
- inc/widgets/widget-comments.php +2 -1
- inc/widgets/widget-image.php +2 -1
- inc/widgets/widget-portfolio-grid.php +2 -1
- inc/widgets/widget-portfolio.php +2 -1
- inc/widgets/widget-posts.php +2 -1
- readme.txt +5 -2
- tx-toolkit.php +1 -1
inc/widgets/widget-advertgrid.php
CHANGED
@@ -19,7 +19,8 @@
|
|
19 |
|
20 |
class nx_advert_grid_widget extends WP_Widget {
|
21 |
|
22 |
-
function nx_advert_grid_widget() {
|
|
|
23 |
//$widget_ops = array( 'classname' => 'widget-advert-grid', 'description' => 'Styled advert grid of up to eight 125x125 adverts' );
|
24 |
//$control_ops = array( 'width' => 250, 'height' => 200, 'id_base' => 'advert-grid-widget' ); //default width = 250
|
25 |
//$this->WP_Widget( 'advert-grid-widget', 'NX Advert Grid Widget', $widget_ops, $control_ops );
|
19 |
|
20 |
class nx_advert_grid_widget extends WP_Widget {
|
21 |
|
22 |
+
//function nx_advert_grid_widget() {
|
23 |
+
function __construct() {
|
24 |
//$widget_ops = array( 'classname' => 'widget-advert-grid', 'description' => 'Styled advert grid of up to eight 125x125 adverts' );
|
25 |
//$control_ops = array( 'width' => 250, 'height' => 200, 'id_base' => 'advert-grid-widget' ); //default width = 250
|
26 |
//$this->WP_Widget( 'advert-grid-widget', 'NX Advert Grid Widget', $widget_ops, $control_ops );
|
inc/widgets/widget-comments.php
CHANGED
@@ -22,7 +22,8 @@
|
|
22 |
function init_nx_recent_comments() { return register_widget('nx_recent_comments'); }
|
23 |
|
24 |
class nx_recent_comments extends WP_Widget {
|
25 |
-
function nx_recent_comments() {
|
|
|
26 |
//parent::WP_Widget( 'nx_recent_custom_comments', $name = 'NX Recent Comments', array( 'description' => __( 'NX Widget for Recent Comments', 'tx' ) ) );
|
27 |
|
28 |
$widget_ops = array( 'classname' => 'nx-widget-recent-comments', 'description' => 'NX Widget for Recent Comments' );
|
22 |
function init_nx_recent_comments() { return register_widget('nx_recent_comments'); }
|
23 |
|
24 |
class nx_recent_comments extends WP_Widget {
|
25 |
+
//function nx_recent_comments() {
|
26 |
+
function __construct() {
|
27 |
//parent::WP_Widget( 'nx_recent_custom_comments', $name = 'NX Recent Comments', array( 'description' => __( 'NX Widget for Recent Comments', 'tx' ) ) );
|
28 |
|
29 |
$widget_ops = array( 'classname' => 'nx-widget-recent-comments', 'description' => 'NX Widget for Recent Comments' );
|
inc/widgets/widget-image.php
CHANGED
@@ -19,7 +19,8 @@
|
|
19 |
|
20 |
class nx_image_widget extends WP_Widget {
|
21 |
|
22 |
-
function nx_image_widget() {
|
|
|
23 |
//$widget_ops = array( 'classname' => 'widget-nx-image', 'description' => 'Simple image widget' );
|
24 |
//$control_ops = array( 'width' => 250, 'height' => 200, 'id_base' => 'nx-image-widget' ); //default width = 250
|
25 |
//$this->WP_Widget( 'nx-image-widget', 'NX Image Widget', $widget_ops, $control_ops );
|
19 |
|
20 |
class nx_image_widget extends WP_Widget {
|
21 |
|
22 |
+
//function nx_image_widget() {
|
23 |
+
function __construct() {
|
24 |
//$widget_ops = array( 'classname' => 'widget-nx-image', 'description' => 'Simple image widget' );
|
25 |
//$control_ops = array( 'width' => 250, 'height' => 200, 'id_base' => 'nx-image-widget' ); //default width = 250
|
26 |
//$this->WP_Widget( 'nx-image-widget', 'NX Image Widget', $widget_ops, $control_ops );
|
inc/widgets/widget-portfolio-grid.php
CHANGED
@@ -21,7 +21,8 @@
|
|
21 |
function init_nx_portfolio_grid() { return register_widget('nx_portfolio_grid'); }
|
22 |
|
23 |
class nx_portfolio_grid extends WP_Widget {
|
24 |
-
function nx_portfolio_grid() {
|
|
|
25 |
//parent::WP_Widget( 'nx_custom_portfolio_grid', $name = 'NX Portfolio Grid', array( 'description' => __( 'NX Widget for Portofolio in grid format', 'tx' ) ) );
|
26 |
|
27 |
$widget_ops = array( 'classname' => 'nx-widget-portfolio-grid', 'description' => 'NX Widget for Portofolio in grid format' );
|
21 |
function init_nx_portfolio_grid() { return register_widget('nx_portfolio_grid'); }
|
22 |
|
23 |
class nx_portfolio_grid extends WP_Widget {
|
24 |
+
//function nx_portfolio_grid() {
|
25 |
+
function __construct() {
|
26 |
//parent::WP_Widget( 'nx_custom_portfolio_grid', $name = 'NX Portfolio Grid', array( 'description' => __( 'NX Widget for Portofolio in grid format', 'tx' ) ) );
|
27 |
|
28 |
$widget_ops = array( 'classname' => 'nx-widget-portfolio-grid', 'description' => 'NX Widget for Portofolio in grid format' );
|
inc/widgets/widget-portfolio.php
CHANGED
@@ -20,7 +20,8 @@
|
|
20 |
function init_nx_recent_portfolio() { return register_widget('nx_recent_portfolio'); }
|
21 |
|
22 |
class nx_recent_portfolio extends WP_Widget {
|
23 |
-
function nx_recent_portfolio() {
|
|
|
24 |
//parent::WP_Widget( 'nx_recent_custom_portfolio', $name = 'NX Portfolio List', array( 'description' => __( 'NX Widget for Portofolio in list format', 'tx' ) ) );
|
25 |
|
26 |
$widget_ops = array( 'classname' => 'nx-recent-custom-portfolio', 'description' => 'NX Widget for Portofolio in list format' );
|
20 |
function init_nx_recent_portfolio() { return register_widget('nx_recent_portfolio'); }
|
21 |
|
22 |
class nx_recent_portfolio extends WP_Widget {
|
23 |
+
//function nx_recent_portfolio() {
|
24 |
+
function __construct() {
|
25 |
//parent::WP_Widget( 'nx_recent_custom_portfolio', $name = 'NX Portfolio List', array( 'description' => __( 'NX Widget for Portofolio in list format', 'tx' ) ) );
|
26 |
|
27 |
$widget_ops = array( 'classname' => 'nx-recent-custom-portfolio', 'description' => 'NX Widget for Portofolio in list format' );
|
inc/widgets/widget-posts.php
CHANGED
@@ -21,7 +21,8 @@
|
|
21 |
function init_nx_recent_posts() { return register_widget('nx_recent_posts'); }
|
22 |
|
23 |
class nx_recent_posts extends WP_Widget {
|
24 |
-
function nx_recent_posts() {
|
|
|
25 |
//parent::WP_Widget( 'nx_recent_posts', $name = 'NX Recent Posts', array( 'description' => __( 'NX Widget for Recent Posts', 'tx' ) ) );
|
26 |
|
27 |
$widget_ops = array( 'classname' => 'nx-widget-recent-posts', 'description' => 'NX Widget for Recent Posts' );
|
21 |
function init_nx_recent_posts() { return register_widget('nx_recent_posts'); }
|
22 |
|
23 |
class nx_recent_posts extends WP_Widget {
|
24 |
+
//function nx_recent_posts() {
|
25 |
+
function __construct() {
|
26 |
//parent::WP_Widget( 'nx_recent_posts', $name = 'NX Recent Posts', array( 'description' => __( 'NX Widget for Recent Posts', 'tx' ) ) );
|
27 |
|
28 |
$widget_ops = array( 'classname' => 'nx-widget-recent-posts', 'description' => 'NX Widget for Recent Posts' );
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@
|
|
3 |
Contributors: marsian
|
4 |
Tags: shortcode, shortcodes, columns, column, section, sections, portfolio, testimonial, border, borders, button, buttons, masonry, posts, post_type, font awesome, icons, fontawesome
|
5 |
Requires at least: 3.6
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -26,6 +26,9 @@ Install the plugin into the `/wp-content/plugins/` folder, and activate it.
|
|
26 |
|
27 |
|
28 |
== Changelog ==
|
|
|
|
|
|
|
29 |
= 2.0.1 =
|
30 |
* Team member post type added
|
31 |
* testimonial in full width row fix
|
3 |
Contributors: marsian
|
4 |
Tags: shortcode, shortcodes, columns, column, section, sections, portfolio, testimonial, border, borders, button, buttons, masonry, posts, post_type, font awesome, icons, fontawesome
|
5 |
Requires at least: 3.6
|
6 |
+
Tested up to: 4.7
|
7 |
+
Stable tag: 2.0.3
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
26 |
|
27 |
|
28 |
== Changelog ==
|
29 |
+
= 2.0.3 =
|
30 |
+
* Comitability issue with PHP7 fixed
|
31 |
+
|
32 |
= 2.0.1 =
|
33 |
* Team member post type added
|
34 |
* testimonial in full width row fix
|
tx-toolkit.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: TemplatesNext ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for TemplatesNext Wordpress Themes
|
6 |
-
Version: 2.0.
|
7 |
Author: TemplatesNext
|
8 |
Author URI: http://templatesnext.org/
|
9 |
License: GPLv2 or later
|
3 |
/*
|
4 |
Plugin Name: TemplatesNext ToolKit
|
5 |
Description: Custom Portfolio and Shortcode functionality for TemplatesNext Wordpress Themes
|
6 |
+
Version: 2.0.3
|
7 |
Author: TemplatesNext
|
8 |
Author URI: http://templatesnext.org/
|
9 |
License: GPLv2 or later
|