Version Description
- January 19th, 2015 = Fixed: Remove unnecessary filter in the main class file
Download this release
Release Info
| Developer | eherman24 |
| Plugin | |
| Version | 1.1.5.4 |
| Comparing to | |
| See all releases | |
Code changes from version 1.1.5.3 to 1.1.5.4
- classes/class.timeline-express.php +0 -14
- readme.txt +7 -1
- timeline-express.php +2 -2
classes/class.timeline-express.php
CHANGED
|
@@ -147,8 +147,6 @@ if(!class_exists("timelineExpressBase"))
|
|
| 147 |
add_action( 'cmb_render_te_date_time_stamp_custom', array($this,'cmb_render_te_date_time_stamp_custom'), 10, 2 );
|
| 148 |
// render new custom timeline express about metabox
|
| 149 |
add_action( 'cmb_render_te_about_metabox', array($this,'cmb_render_te_about_metabox'), 10, 2 );
|
| 150 |
-
// add custom hook to allow users to add there own fields
|
| 151 |
-
add_action('the_action_hook', array( $this, 'the_action_callback' ) );
|
| 152 |
// custom vlaidation for our new custom field
|
| 153 |
//Validate new metabox type
|
| 154 |
add_filter( 'cmb_validate_te_date_time_stamp_custom', array( $this, 'cmb_validate_te_date_time_stamp_custom' ) , 10, 2 );
|
|
@@ -537,18 +535,6 @@ if(!class_exists("timelineExpressBase"))
|
|
| 537 |
}
|
| 538 |
// End metabox definitions
|
| 539 |
|
| 540 |
-
function the_action_callback() {
|
| 541 |
-
$field = array(
|
| 542 |
-
'name' => __( 'Announcement Image', 'timeline-express' ),
|
| 543 |
-
'desc' => __( 'select a banner image for this announcement (optional). (recommended 650px wide or larger) ', 'timeline-express' ),
|
| 544 |
-
'id' => $prefix . 'image',
|
| 545 |
-
'type' => 'file',
|
| 546 |
-
// 'repeatable' => true,
|
| 547 |
-
// 'on_front' => false, // Optionally designate a field to wp-admin only
|
| 548 |
-
);
|
| 549 |
-
return $field;
|
| 550 |
-
}
|
| 551 |
-
|
| 552 |
/* Change Testimonial Title */
|
| 553 |
public function change_default_announcement_title( $title ){
|
| 554 |
$screen = get_current_screen();
|
| 147 |
add_action( 'cmb_render_te_date_time_stamp_custom', array($this,'cmb_render_te_date_time_stamp_custom'), 10, 2 );
|
| 148 |
// render new custom timeline express about metabox
|
| 149 |
add_action( 'cmb_render_te_about_metabox', array($this,'cmb_render_te_about_metabox'), 10, 2 );
|
|
|
|
|
|
|
| 150 |
// custom vlaidation for our new custom field
|
| 151 |
//Validate new metabox type
|
| 152 |
add_filter( 'cmb_validate_te_date_time_stamp_custom', array( $this, 'cmb_validate_te_date_time_stamp_custom' ) , 10, 2 );
|
| 535 |
}
|
| 536 |
// End metabox definitions
|
| 537 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 538 |
/* Change Testimonial Title */
|
| 539 |
public function change_default_announcement_title( $title ){
|
| 540 |
$screen = get_current_screen();
|
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20
|
|
| 4 |
Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.1
|
| 7 |
-
Stable tag: 1.1.5.
|
| 8 |
License: GPLv2 or later
|
| 9 |
|
| 10 |
Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
|
|
@@ -283,6 +283,9 @@ Have an idea for a future release feature? I love hearing about new ideas! You c
|
|
| 283 |
|
| 284 |
== Changelog ==
|
| 285 |
|
|
|
|
|
|
|
|
|
|
| 286 |
= 1.1.5.3 - January 16th, 2015 =
|
| 287 |
Fixed: Fixed incorrect date save format
|
| 288 |
|
|
@@ -380,6 +383,9 @@ Fixed: Adjusted a few styles on the announcement post page
|
|
| 380 |
|
| 381 |
== Upgrade Notice ==
|
| 382 |
|
|
|
|
|
|
|
|
|
|
| 383 |
= 1.1.5.3 - January 16th, 2015 =
|
| 384 |
Fixed: Fixed incorrect date save format
|
| 385 |
|
| 4 |
Tags: vertical, timeline, animated, css3, animations, evan, herman, evan herman, easy, time, line, font awesome, font, awesome, announcements, notifications, simple, events, calendar, scroll, triggered, scrolling, animated, fade, in, fade in
|
| 5 |
Requires at least: 3.9
|
| 6 |
Tested up to: 4.1
|
| 7 |
+
Stable tag: 1.1.5.4
|
| 8 |
License: GPLv2 or later
|
| 9 |
|
| 10 |
Timeline express allows you to create a beautiful vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
|
| 283 |
|
| 284 |
== Changelog ==
|
| 285 |
|
| 286 |
+
= 1.1.5.4 - January 19th, 2015 =
|
| 287 |
+
Fixed: Remove unnecessary filter in the main class file
|
| 288 |
+
|
| 289 |
= 1.1.5.3 - January 16th, 2015 =
|
| 290 |
Fixed: Fixed incorrect date save format
|
| 291 |
|
| 383 |
|
| 384 |
== Upgrade Notice ==
|
| 385 |
|
| 386 |
+
= 1.1.5.4 - January 19th, 2015 =
|
| 387 |
+
Fixed: Remove unecessary filter in the main class file
|
| 388 |
+
|
| 389 |
= 1.1.5.3 - January 16th, 2015 =
|
| 390 |
Fixed: Fixed incorrect date save format
|
| 391 |
|
timeline-express.php
CHANGED
|
@@ -4,7 +4,7 @@
|
|
| 4 |
Plugin Name: Timeline Express
|
| 5 |
Plugin URI: http://www.evan-herman.com
|
| 6 |
Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
|
| 7 |
-
Version: 1.1.5.
|
| 8 |
Author: Evan Herman
|
| 9 |
Author URI: http://www.evan-herman.com
|
| 10 |
License: GPL2
|
|
@@ -28,7 +28,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
| 28 |
#_________________________________________________ CONSTANTS
|
| 29 |
|
| 30 |
/** Configuration **/
|
| 31 |
-
if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.
|
| 32 |
if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
|
| 33 |
if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
|
| 34 |
if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));
|
| 4 |
Plugin Name: Timeline Express
|
| 5 |
Plugin URI: http://www.evan-herman.com
|
| 6 |
Description: Create a beautiful vertical, CSS3 animated and responsive timeline in minutes flat without writing code.
|
| 7 |
+
Version: 1.1.5.4
|
| 8 |
Author: Evan Herman
|
| 9 |
Author URI: http://www.evan-herman.com
|
| 10 |
License: GPL2
|
| 28 |
#_________________________________________________ CONSTANTS
|
| 29 |
|
| 30 |
/** Configuration **/
|
| 31 |
+
if(!defined('TIMELINE_EXPRESS_VERSION_CURRENT')) define('TIMELINE_EXPRESS_VERSION_CURRENT', '1.1.5.4');
|
| 32 |
if(!defined('TIMELINE_EXPRESS_PATH')) define('TIMELINE_EXPRESS_PATH', plugin_dir_path( __FILE__ ));
|
| 33 |
if(!defined('TIMELINE_EXPRESS_URL')) define('TIMELINE_EXPRESS_URL', plugins_url('timeline-express/'));
|
| 34 |
if(!defined('TIMELINE_EXPRESS_URL_WP')) define('TIMELINE_EXPRESS_URL_WP', get_bloginfo('url'));
|
