Version Description
- October 2nd, 2015 =
- Fixed issue with timeline icons not saving properly, and returning empty on the front end.
Download this release
Release Info
Developer | eherman24 |
Plugin | Timeline Express |
Version | 1.1.7.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.7.5 to 1.1.7.6
- README.md +6 -1
- classes/class.timeline-express.php +15 -5
- readme.txt +10 -5
- timeline-express.php +2 -2
README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
Timeline Express v1.1.7.
|
2 |
================
|
3 |
|
4 |
Timeline express allows you to create a vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
|
@@ -36,6 +36,8 @@ Timeline express comes ready for translation. I would love to get things transla
|
|
36 |
|
37 |
<em>We're always looking for polyglots to help with the translations. If you enjoy this plugin, speak multiple languages and want to contribute please <a href="http://www.evan-herman.com/contact/" target="_blank">contact me</a> about how you can help translate things so users around the world can benefit from this plugin.</em>
|
38 |
|
|
|
|
|
39 |
**Hooks + Filters**
|
40 |
|
41 |
**Use Custom Images Instead of Font Awesome Icons (New v1.1.6.7)**
|
@@ -290,6 +292,9 @@ Have an idea for a future release feature? I love hearing about new ideas! You c
|
|
290 |
|
291 |
### Changelog
|
292 |
|
|
|
|
|
|
|
293 |
###### 1.1.7.5 - September 28th, 2015
|
294 |
* Fixed incorrect name for default icon dropdown.
|
295 |
|
1 |
+
Timeline Express v1.1.7.6
|
2 |
================
|
3 |
|
4 |
Timeline express allows you to create a vertical animated and responsive timeline of posts , without writing a single line of code. Sweet!
|
36 |
|
37 |
<em>We're always looking for polyglots to help with the translations. If you enjoy this plugin, speak multiple languages and want to contribute please <a href="http://www.evan-herman.com/contact/" target="_blank">contact me</a> about how you can help translate things so users around the world can benefit from this plugin.</em>
|
38 |
|
39 |
+
<em>This plugin was originally inspired by the great folks at <a href="http://codyhouse.co/gem/vertical-timeline/">CodyHouse.io</a>.</em>
|
40 |
+
|
41 |
**Hooks + Filters**
|
42 |
|
43 |
**Use Custom Images Instead of Font Awesome Icons (New v1.1.6.7)**
|
292 |
|
293 |
### Changelog
|
294 |
|
295 |
+
###### 1.1.7.6 - October 2nd, 2015
|
296 |
+
* Fixed issue with timeline icons not saving properly, and returning empty on the front end.
|
297 |
+
|
298 |
###### 1.1.7.5 - September 28th, 2015
|
299 |
* Fixed incorrect name for default icon dropdown.
|
300 |
|
classes/class.timeline-express.php
CHANGED
@@ -237,9 +237,9 @@ if(!class_exists("timelineExpressBase"))
|
|
237 |
* save our custom date time stamp
|
238 |
* since @v1.1.5
|
239 |
*/
|
240 |
-
function cmb2_validate_te_bootstrap_dropdown_callback( $override_value, $
|
241 |
-
if( isset( $
|
242 |
-
return 'fa-'.trim($
|
243 |
}
|
244 |
return '-1';
|
245 |
}
|
@@ -1343,9 +1343,19 @@ if(!class_exists("timelineExpressBase"))
|
|
1343 |
.dropdown-toggle { background: transparent !important; border: 1px solid rgb(201, 201, 201) !important; }
|
1344 |
.dropdown-toggle .caret { border-top-color: #333 !important; }
|
1345 |
.ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
|
1346 |
-
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1347 |
<!-- start the font awesome icon select -->
|
1348 |
-
<select class="selectpicker" name="
|
1349 |
|
1350 |
<?php
|
1351 |
/* sort the bootstrap icons alphabetically */
|
237 |
* save our custom date time stamp
|
238 |
* since @v1.1.5
|
239 |
*/
|
240 |
+
function cmb2_validate_te_bootstrap_dropdown_callback( $override_value, $value ) {
|
241 |
+
if( isset( $value ) && $value != '' ){
|
242 |
+
return 'fa-'.trim($value);
|
243 |
}
|
244 |
return '-1';
|
245 |
}
|
1343 |
.dropdown-toggle { background: transparent !important; border: 1px solid rgb(201, 201, 201) !important; }
|
1344 |
.dropdown-toggle .caret { border-top-color: #333 !important; }
|
1345 |
.ui-datepicker-prev:hover, .ui-datepicker-next:hover { cursor: pointer; }
|
1346 |
+
</style>
|
1347 |
+
|
1348 |
+
<?php
|
1349 |
+
// check which page were on, set name appropriately
|
1350 |
+
if( isset( $field->args['id'] ) ) {
|
1351 |
+
$field_name = $field->args['id'];
|
1352 |
+
} else {
|
1353 |
+
$field_name = 'default-announcement-icon';
|
1354 |
+
}
|
1355 |
+
?>
|
1356 |
+
|
1357 |
<!-- start the font awesome icon select -->
|
1358 |
+
<select class="selectpicker" name="<?php echo $field_name; ?>" id="default-announcement-icon>">
|
1359 |
|
1360 |
<?php
|
1361 |
/* sort the bootstrap icons alphabetically */
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: eherman24
|
|
3 |
Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
|
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.
|
7 |
-
Stable tag: 1.1.7.
|
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!
|
@@ -66,6 +66,8 @@ Looking for some advancedd documentation? Check out the <a href="https://wordpre
|
|
66 |
<br />
|
67 |
<strong>While the plugins I develop are free, maintaining and supporting them is hard work. If you find this plugin useful, or it helps in anyway, please consider making a <a href="http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work">donation</a> for its continued development.</strong>
|
68 |
|
|
|
|
|
69 |
== Installation ==
|
70 |
|
71 |
1. Download the plugin .zip file
|
@@ -81,7 +83,7 @@ Looking for some advancedd documentation? Check out the <a href="https://wordpre
|
|
81 |
|
82 |
= Is there some demo I can checkout? I want to see how the plugin appears on the front end of a WordPress site before I install it. =
|
83 |
|
84 |
-
You can check out the demo we've
|
85 |
|
86 |
<a href="http://www.evan-herman.com/wordpress/plugins/timeline-express-demo/" title="View the demo">View the Timeline Express Demo</a>
|
87 |
|
@@ -339,6 +341,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
339 |
|
340 |
== Changelog ==
|
341 |
|
|
|
|
|
|
|
342 |
= 1.1.7.5 - September 28th, 2015 =
|
343 |
* Fixed incorrect name for default icon dropdown.
|
344 |
|
@@ -515,5 +520,5 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
515 |
|
516 |
== Upgrade Notice ==
|
517 |
|
518 |
-
= 1.1.7.
|
519 |
-
* Fixed
|
3 |
Donate link: http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work
|
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.4.1
|
7 |
+
Stable tag: 1.1.7.6
|
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!
|
66 |
<br />
|
67 |
<strong>While the plugins I develop are free, maintaining and supporting them is hard work. If you find this plugin useful, or it helps in anyway, please consider making a <a href="http://www.evan-herman.com/contact/?contact-reason=I%20want%20to%20make%20a%20donation%20for%20all%20your%20hard%20work">donation</a> for its continued development.</strong>
|
68 |
|
69 |
+
<em>This plugin was originally inspired by the great folks at <a href="http://codyhouse.co/gem/vertical-timeline/">CodyHouse.io</a>.</em>
|
70 |
+
|
71 |
== Installation ==
|
72 |
|
73 |
1. Download the plugin .zip file
|
83 |
|
84 |
= Is there some demo I can checkout? I want to see how the plugin appears on the front end of a WordPress site before I install it. =
|
85 |
|
86 |
+
You can check out the demo we've set up for users displaying two separate timelines with filtering enabled.
|
87 |
|
88 |
<a href="http://www.evan-herman.com/wordpress/plugins/timeline-express-demo/" title="View the demo">View the Timeline Express Demo</a>
|
89 |
|
341 |
|
342 |
== Changelog ==
|
343 |
|
344 |
+
= 1.1.7.6 - October 2nd, 2015 =
|
345 |
+
* Fixed issue with timeline icons not saving properly, and returning empty on the front end.
|
346 |
+
|
347 |
= 1.1.7.5 - September 28th, 2015 =
|
348 |
* Fixed incorrect name for default icon dropdown.
|
349 |
|
520 |
|
521 |
== Upgrade Notice ==
|
522 |
|
523 |
+
= 1.1.7.6 - October 2nd, 2015 =
|
524 |
+
* Fixed issue with timeline icons not saving properly, and returning empty on the front end.
|
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.7.
|
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.7.
|
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.7.6
|
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.7.6');
|
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'));
|