Version Description
- March 9th, 2015 =
- Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
Download this release
Release Info
Developer | eherman24 |
Plugin | Timeline Express |
Version | 1.1.6 |
Comparing to | |
See all releases |
Code changes from version 1.1.5.9 to 1.1.6
- classes/class.timeline-express.php +3 -1
- pages/options.php +1 -1
- readme.txt +7 -1
- timeline-express.php +2 -2
classes/class.timeline-express.php
CHANGED
@@ -460,7 +460,7 @@ if(!class_exists("timelineExpressBase"))
|
|
460 |
'supports' => array( 'title', 'editor' ),
|
461 |
'taxonomies' => array(),
|
462 |
'hierarchical' => true,
|
463 |
-
'public' =>
|
464 |
'show_ui' => true,
|
465 |
'show_in_menu' => true,
|
466 |
'show_in_nav_menus' => true,
|
@@ -469,6 +469,8 @@ if(!class_exists("timelineExpressBase"))
|
|
469 |
'menu_icon' => TIMELINE_EXPRESS_URL . '/images/timeline-express-menu-icon.png',
|
470 |
'can_export' => true,
|
471 |
'has_archive' => true,
|
|
|
|
|
472 |
'rewrite' => $timeline_express_rewrite,
|
473 |
'capability_type' => 'page',
|
474 |
);
|
460 |
'supports' => array( 'title', 'editor' ),
|
461 |
'taxonomies' => array(),
|
462 |
'hierarchical' => true,
|
463 |
+
'public' => true,
|
464 |
'show_ui' => true,
|
465 |
'show_in_menu' => true,
|
466 |
'show_in_nav_menus' => true,
|
469 |
'menu_icon' => TIMELINE_EXPRESS_URL . '/images/timeline-express-menu-icon.png',
|
470 |
'can_export' => true,
|
471 |
'has_archive' => true,
|
472 |
+
'exclude_from_search' => $announcements_public, // toggled via setitngs page - @since v1.1.5.8,
|
473 |
+
'publicly_queryable' => true,
|
474 |
'rewrite' => $timeline_express_rewrite,
|
475 |
'capability_type' => 'page',
|
476 |
);
|
pages/options.php
CHANGED
@@ -377,7 +377,7 @@ function toggle_delete_checkbox() {
|
|
377 |
</tr>
|
378 |
<tr valign="top">
|
379 |
<!-- Publicly Query Timeline Announcements Checkbox -->
|
380 |
-
<th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Announcements
|
381 |
<td>
|
382 |
<select name="announcement-appear-in-searches" id="announcement-appear-in-searches" class="regular-text" />
|
383 |
<option value="true"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'true' ? ' selected' : ''); ?>><?php _e('True','timeline-express'); ?></option>
|
377 |
</tr>
|
378 |
<tr valign="top">
|
379 |
<!-- Publicly Query Timeline Announcements Checkbox -->
|
380 |
+
<th scope="row"><label for="delete-announcement-posts-on-uninstallation"><?php _e('Include Announcements in Site Searches','timeline-express'); ?></label></th>
|
381 |
<td>
|
382 |
<select name="announcement-appear-in-searches" id="announcement-appear-in-searches" class="regular-text" />
|
383 |
<option value="true"<?php echo ($this->timeline_express_optionVal['announcement-appear-in-searches'] === 'true' ? ' selected' : ''); ?>><?php _e('True','timeline-express'); ?></option>
|
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.1
|
7 |
-
Stable tag: 1.1.
|
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!
|
@@ -301,6 +301,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
301 |
|
302 |
== Changelog ==
|
303 |
|
|
|
|
|
|
|
304 |
= 1.1.5.9 - March 6th, 2015 =
|
305 |
* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
|
306 |
|
@@ -423,6 +426,9 @@ add_filter( 'timeline_express_custom_template' , 'custom_timeline_express_templa
|
|
423 |
|
424 |
== Upgrade Notice ==
|
425 |
|
|
|
|
|
|
|
426 |
= 1.1.5.9 - March 6th, 2015 =
|
427 |
* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
|
428 |
|
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.1
|
7 |
+
Stable tag: 1.1.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!
|
301 |
|
302 |
== Changelog ==
|
303 |
|
304 |
+
= 1.1.6 - March 9th, 2015 =
|
305 |
+
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
306 |
+
|
307 |
= 1.1.5.9 - March 6th, 2015 =
|
308 |
* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
|
309 |
|
426 |
|
427 |
== Upgrade Notice ==
|
428 |
|
429 |
+
= 1.1.6 - March 9th, 2015 =
|
430 |
+
* Enhancement: Fixed 404 issue on announcement posts when 'Include Announcement in Site Searches' was set to 'false'.
|
431 |
+
|
432 |
= 1.1.5.9 - March 6th, 2015 =
|
433 |
* Enhancement: Added a priority to the metabox initialization, which caused conflicts with other plugins using the same class
|
434 |
|
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.
|
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.
|
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.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.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'));
|