Version Description
Serious Slider version 1.0 brings a lot of new features but moves styling of inside caption links to separate slide buttons. Make sure you review your slides setup after updating.
=
Download this release
Release Info
Developer | Cryout Creations |
Plugin | Serious Slider |
Version | 1.0.1 |
Comparing to | |
See all releases |
Code changes from version 1.0.0 to 1.0.1
- cryout-serious-slider.php +9 -8
- inc/about.php +146 -0
- inc/settings.php +0 -108
- inc/shortcodes.php +1 -1
- readme.txt +12 -4
- resources/backend.css +2 -0
cryout-serious-slider.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Cryout Serious Slider
|
4 |
Plugin URI: http://www.cryoutcreations.eu/serious-slider
|
5 |
Description: A highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
6 |
-
Version: 1.0.
|
7 |
Author: Cryout Creations
|
8 |
Author URI: http://www.cryoutcreations.eu
|
9 |
Text Domain: cryout-serious-slider
|
@@ -13,14 +13,15 @@
|
|
13 |
|
14 |
class Cryout_Serious_Slider {
|
15 |
|
16 |
-
public $version = "1.0.
|
17 |
public $options = array();
|
18 |
public $shortcode_tag = 'serious-slider';
|
19 |
public $mce_tag = 'serious_slider';
|
20 |
-
|
21 |
public $slug = 'cryout-serious-slider';
|
22 |
public $posttype = 'cryout_serious_slide'; // 20 chars!
|
23 |
public $taxonomy = 'cryout_serious_slider_category';
|
|
|
24 |
private $butts = 2;
|
25 |
private $title = '';
|
26 |
private $thepage = '';
|
@@ -211,15 +212,15 @@ class Cryout_Serious_Slider {
|
|
211 |
|
212 |
// register about page to dashboard menu
|
213 |
public function settings_menu() {
|
214 |
-
$this->thepage = add_submenu_page( 'edit.php?post_type='.$this->posttype, __('About', 'cryout-serious-slider'), __('About', 'cryout-serious-slider'), 'edit_others_posts', $this->slug . '-about', array( $this, '
|
215 |
} // settings_menu()
|
216 |
|
217 |
// about page callback
|
218 |
-
public function
|
219 |
if (!empty($_GET['add_sample_content'])&¤t_user_can('edit_others_posts'))
|
220 |
include_once( $this->plugin_dir . 'demo/demo-content.php' );
|
221 |
-
require_once( $this->plugin_dir . 'inc/
|
222 |
-
} //
|
223 |
|
224 |
// add plugin actions links
|
225 |
public function actions_links( $links ) {
|
@@ -863,4 +864,4 @@ class Cryout_Serious_Slider {
|
|
863 |
/* * * * get things going * * * */
|
864 |
$cryout_serious_slider = new Cryout_Serious_Slider;
|
865 |
|
866 |
-
// EOF
|
3 |
Plugin Name: Cryout Serious Slider
|
4 |
Plugin URI: http://www.cryoutcreations.eu/serious-slider
|
5 |
Description: A highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
6 |
+
Version: 1.0.1
|
7 |
Author: Cryout Creations
|
8 |
Author URI: http://www.cryoutcreations.eu
|
9 |
Text Domain: cryout-serious-slider
|
13 |
|
14 |
class Cryout_Serious_Slider {
|
15 |
|
16 |
+
public $version = "1.0.1";
|
17 |
public $options = array();
|
18 |
public $shortcode_tag = 'serious-slider';
|
19 |
public $mce_tag = 'serious_slider';
|
20 |
+
|
21 |
public $slug = 'cryout-serious-slider';
|
22 |
public $posttype = 'cryout_serious_slide'; // 20 chars!
|
23 |
public $taxonomy = 'cryout_serious_slider_category';
|
24 |
+
|
25 |
private $butts = 2;
|
26 |
private $title = '';
|
27 |
private $thepage = '';
|
212 |
|
213 |
// register about page to dashboard menu
|
214 |
public function settings_menu() {
|
215 |
+
$this->thepage = add_submenu_page( 'edit.php?post_type='.$this->posttype, __('About', 'cryout-serious-slider'), __('About', 'cryout-serious-slider'), 'edit_others_posts', $this->slug . '-about', array( $this, 'plugin_page' ) );
|
216 |
} // settings_menu()
|
217 |
|
218 |
// about page callback
|
219 |
+
public function plugin_page() {
|
220 |
if (!empty($_GET['add_sample_content'])&¤t_user_can('edit_others_posts'))
|
221 |
include_once( $this->plugin_dir . 'demo/demo-content.php' );
|
222 |
+
require_once( $this->plugin_dir . 'inc/about.php' );
|
223 |
+
} // plugin_page()
|
224 |
|
225 |
// add plugin actions links
|
226 |
public function actions_links( $links ) {
|
864 |
/* * * * get things going * * * */
|
865 |
$cryout_serious_slider = new Cryout_Serious_Slider;
|
866 |
|
867 |
+
// EOF
|
inc/about.php
ADDED
@@ -0,0 +1,146 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="wrap" id="serious-slider-about">
|
2 |
+
<h2><?php //echo $this->title; ?></h2>
|
3 |
+
<?php
|
4 |
+
if ( ! isset( $_REQUEST['add_sample_content'] ) ) $_REQUEST['add_sample_content'] = false;
|
5 |
+
|
6 |
+
if ( $_REQUEST['add_sample_content'] ) {
|
7 |
+
if (current_user_can('edit_others_posts')) {
|
8 |
+
/* because wp doesn't auto display saved notice on non-options pages */ ?>
|
9 |
+
<div class="updated settings-error notice is-dismissible" id="setting-error-settings_updated">
|
10 |
+
<p><strong><?php _e('Sample slider created.', 'cryout-serious-slider');?></strong><br>
|
11 |
+
<?php _e('Sample content added. Navigate to Slider and Slides sections to see the sample content.', 'cryout-serious-slider') ?></p>
|
12 |
+
<button class="notice-dismiss" type="button"><span class="screen-reader-text"><?php _e('Dismiss this notice.', 'cryout-serious-slider' ) ?></span></button>
|
13 |
+
</div>
|
14 |
+
<?php } else { ?>
|
15 |
+
<div class="notice notice-warning is-dismissible">
|
16 |
+
<p><?php _e('You do not have sufficient permissions to create sample content.', 'cryout-serious-slider') ?></p>
|
17 |
+
<button class="notice-dismiss" type="button"><span class="screen-reader-text"><?php _e('Dismiss this notice.', 'cryout-serious-slider' ) ?></span></button>
|
18 |
+
</div>
|
19 |
+
<?php }
|
20 |
+
} // endif ?>
|
21 |
+
|
22 |
+
<div id="poststuff">
|
23 |
+
<div id="post-body" class="metabox-holder columns-2">
|
24 |
+
<div id="post-body-content">
|
25 |
+
|
26 |
+
<div class="postbox" id="serious-slider-header">
|
27 |
+
<img src="<?php echo plugins_url('../resources/images/serious-slider-header.png', __FILE__); ?>" />
|
28 |
+
|
29 |
+
<div id="serious-slider-description"> <?php
|
30 |
+
/**
|
31 |
+
* translating the plugin description would be a waste of resources,
|
32 |
+
* so this part is not localizable
|
33 |
+
**/ ?>
|
34 |
+
|
35 |
+
<h3>Serious Slider is a highly efficient SEO friendly fully translatable free image slider for WordPress.</h3>
|
36 |
+
|
37 |
+
<div id="seriousslider-tabs">
|
38 |
+
<ul>
|
39 |
+
<li><a href="#features">Features</a></li>
|
40 |
+
<li><a href="#customization">Customization</a></li>
|
41 |
+
<li><a href="#functionality">Functionality</a></li>
|
42 |
+
</ul>
|
43 |
+
<div id="features">
|
44 |
+
<ul>
|
45 |
+
<li><strong>Create unlimited sliders with unlimited slides.</strong> The only limit is your imagination on how to use them.</li>
|
46 |
+
<li><strong>Add titles, texts, buttons and links to each slide.</strong> All slide texts support HTML tags and even other shortcodes.</li>
|
47 |
+
<li><strong>Easy to use media button.</strong> Effortlessly add slideshows in posts, pages or custom post types via the “Add Slider” media button in the WordPress text editor. Then just select your desired image slider from a dropdown list, no need to remember or copy slider IDs</li>
|
48 |
+
<li><strong>Auto-generated Shortcodes and PHP integration.</strong> Use the auto generated shortcode to include slideshows with themes or other plugins. Copy-paste the auto generated PHP code to integrate with custom code.</li>
|
49 |
+
<li><strong>Serious Slider Widget.</strong> Display slideshows in sidebars via the provided Serious Slider widget</li>
|
50 |
+
<li><strong>Use multiple sliders in the same page.</strong></li>
|
51 |
+
<li><strong>Familiar admin user interface.</strong> Create sliders and slides with the familiarity of managing posts and categories, without having to learn another user interface</li>
|
52 |
+
<li><strong>Lightweight and powerful.</strong> Only minimum JavaScript and CSS3 are being loaded on your site</li>
|
53 |
+
<li><strong>Fast slider creation.</strong> Create awesome, responsive WordPress slideshows in a matter of seconds</li>
|
54 |
+
<li><strong>Browser compatibility.</strong> The image slider looks and behaves great on various devices and browsers</li>
|
55 |
+
<li><strong>7+ Appearance Styles.</strong> Choose from different appearance styles to make the navigation arrows, bullets, buttons and colors match your site.</li>
|
56 |
+
<li><strong>7+ Transition Effects.</strong> Fade, Slide, Overslide, Underslide, Parallax, Horizontal flip and Vertical Flip.</li>
|
57 |
+
<li><strong>5+ Caption Text Animations.</strong> Choose how caption text appears on the slide: Fade, Slide, Blur and Zoom In/Out.</li>
|
58 |
+
<li><strong>Highly customizable.</strong> Customize image sizes, timings, text size and alignment, text shadow, background color and accent color.</li>
|
59 |
+
<li><strong>Individual options for each slider.</strong> All the customization options and set individually for every slider.</li>
|
60 |
+
<li><strong>Translation ready.</strong> Every single line of text in the slider is translatable both in the front-end as well in the back-end. Compatible with multi-language plugins (WPML, qTranslate, PolyLang).</li>
|
61 |
+
<li><strong>SEO friendly.</strong> Built with search engines in mind, the slider uses correct HTML semantics.</li>
|
62 |
+
<li><strong>Accessibility ready.</strong></li>
|
63 |
+
<li><strong>Once click demo content.</strong> It’s that easy, you’re one click away from a working image slider to get you started.</li>
|
64 |
+
</ul>
|
65 |
+
</div>
|
66 |
+
<div id="customization">
|
67 |
+
<ul>
|
68 |
+
<li>Add individual URLs to target specific pages</li>
|
69 |
+
<li>Add slide buttons with customizable link, link text and “open in new window” option</li>
|
70 |
+
<li>Choose how to make text over images more visible: either add text shadow, multiline text background or full caption background</li>
|
71 |
+
<li>Choose from 7 slider styles, 7 transition effects and 5 caption text animations</li>
|
72 |
+
<li>Customize your slider’s transition duration and delay</li>
|
73 |
+
<li>Choose between auto-height and fixed size for your images</li>
|
74 |
+
<li>Customize your slider’s font size, text alignment, caption size and accent color</li>
|
75 |
+
</ul>
|
76 |
+
</div>
|
77 |
+
<div id="functionality">
|
78 |
+
<ul>
|
79 |
+
<li>Our image slider uses WordPress core functionality only, providing you with the familiar WordPress interface for creating both slides and slides.</li>
|
80 |
+
<li>Easily transfer existing slides from one slider to another</li>
|
81 |
+
<li>Schedule slides to automatically become visible at any time in the future.</li>
|
82 |
+
<li>Quickly restore deleted slides from the Trash</li>
|
83 |
+
<li>Use WordPress’ text editor to add HTML content and even shortcodes to your slides</li>
|
84 |
+
<li>Bulk edit slides and slides</li>
|
85 |
+
</ul>
|
86 |
+
</div>
|
87 |
+
|
88 |
+
</div><!-- tabs-->
|
89 |
+
</div><!--description-->
|
90 |
+
</div>
|
91 |
+
|
92 |
+
</div> <!-- post-body-content-->
|
93 |
+
|
94 |
+
<div class="postbox-container" id="postbox-container-1">
|
95 |
+
|
96 |
+
<div class="meta-box-sortables">
|
97 |
+
|
98 |
+
<div class="postbox">
|
99 |
+
<h3 style="text-align: center;" class="hndle">
|
100 |
+
<img id="serious-slider-logo" src="<?php echo plugins_url('../resources/images/serious-slider-128.png', __FILE__); ?>" />
|
101 |
+
<span><strong><?php echo $this->title; ?></strong></span>
|
102 |
+
</h3>
|
103 |
+
|
104 |
+
<div class="inside">
|
105 |
+
<div style="text-align: center; margin: auto">
|
106 |
+
<strong><?php printf( __('version: %s','cryout-serious-slider'), $this->version ); ?></strong><br>
|
107 |
+
<?php _e('by','cryout-serious-slider') ?> Cryout Creations<br>
|
108 |
+
<a class="button button-primary" href="http://www.cryoutcreations.eu/wordpress-plugins/cryout-serious-slider" target="_blank"><?php _e('Plugin Homepage', 'cryout-serious-slider') ?></a>
|
109 |
+
</div>
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
+
|
113 |
+
<div class="postbox">
|
114 |
+
<h3 style="text-align: center;" class="hndle">
|
115 |
+
<span><?php _e('Need help?','cryout-serious-slider') ?></span>
|
116 |
+
</h3><div class="inside">
|
117 |
+
<div style="text-align: center; margin: auto">
|
118 |
+
<a class="button button-secondary" href="http://www.cryoutcreations.eu/wordpress-tutorials/create-slider-serious-slider-plugin" target="_blank"><?php _e('Documentation', 'cryout-serious-slider') ?></a>
|
119 |
+
<a class="button button-primary" href="http://www.cryoutcreations.eu/priority-support" target="_blank"><?php _e('Priority Support', 'cryout-serious-slider') ?></a>
|
120 |
+
<a class="button button-secondary" href="http://www.cryoutcreations.eu/forums/f/wordpress/plugins/serious-slider" target="_blank"><?php _e('Support Forum', 'cryout-serious-slider') ?></a>
|
121 |
+
</div>
|
122 |
+
</div>
|
123 |
+
</div>
|
124 |
+
|
125 |
+
<div class="postbox">
|
126 |
+
<h3 style="text-align: center;" class="hndle">
|
127 |
+
<span><?php _e('Demo Content','cryout-serious-slider') ?></span>
|
128 |
+
</h3>
|
129 |
+
<div class="inside">
|
130 |
+
<div style="text-align: center; margin: auto">
|
131 |
+
<a class="button button-secondary" href="<?php echo $this->aboutpage . '&add_sample_content=1' ?>">
|
132 |
+
<?php _e('Create Sample Slider', 'cryout-serious-slider');?>
|
133 |
+
</a>
|
134 |
+
<p class="description"><small><?php _e('This will create a sample slider with 3 slides which you can use as a basis for your own content.', 'cryout-serious-slider') ?></small></p>
|
135 |
+
</div>
|
136 |
+
</div> <!--inside-->
|
137 |
+
</div> <!--postbox-->
|
138 |
+
|
139 |
+
</div>
|
140 |
+
</div> <!-- postbox-container -->
|
141 |
+
|
142 |
+
</div> <!-- post-body -->
|
143 |
+
<br class="clear">
|
144 |
+
</div> <!-- poststuff -->
|
145 |
+
|
146 |
+
</div><!--end wrap-->
|
inc/settings.php
DELETED
@@ -1,108 +0,0 @@
|
|
1 |
-
<div class="wrap" id="serious-slider-about">
|
2 |
-
<h2><?php //echo $this->title; ?></h2>
|
3 |
-
|
4 |
-
<?php
|
5 |
-
|
6 |
-
|
7 |
-
if ( ! isset( $_REQUEST['add_sample_content'] ) )
|
8 |
-
$_REQUEST['add_sample_content'] = false;
|
9 |
-
|
10 |
-
if ( $_REQUEST['add_sample_content'] ) {
|
11 |
-
if (current_user_can('edit_others_posts')) {
|
12 |
-
/* because wp doesn't auto display saved notice on non-options pages */ ?>
|
13 |
-
<div class="updated settings-error notice is-dismissible" id="setting-error-settings_updated">
|
14 |
-
<p><strong><?php _e('Sample slider created.', 'cryout-serious-slider');?></strong><br>
|
15 |
-
<?php _e('Navigate to Slider and Slides sections to see the sample content.') ?></p>
|
16 |
-
<button class="notice-dismiss" type="button"><span class="screen-reader-text"><?php _e('Dismiss this notice.', 'cryout-serious-slider' ) ?></span></button>
|
17 |
-
</div>
|
18 |
-
<?php } else { ?>
|
19 |
-
<div class="notice notice-warning is-dismissible">
|
20 |
-
<p><?php _e('You do not have sufficient permissions to create sample content.') ?></p>
|
21 |
-
<button class="notice-dismiss" type="button"><span class="screen-reader-text"><?php _e('Dismiss this notice.', 'cryout-serious-slider' ) ?></span></button>
|
22 |
-
</div>
|
23 |
-
<?php } } // endif ?>
|
24 |
-
|
25 |
-
<div id="poststuff">
|
26 |
-
<div id="post-body" class="metabox-holder columns-2">
|
27 |
-
<div id="post-body-content">
|
28 |
-
|
29 |
-
<div class="postbox" id="serious-slider-header">
|
30 |
-
<img src="<?php echo plugins_url('../resources/images/serious-slider-header.png', __FILE__); ?>" />
|
31 |
-
<div id="serious-slider-description">
|
32 |
-
<p>Responsive slider, built on Bootstrap Carousel, uses core WordPress functionality, easy to use, seriously.</p>
|
33 |
-
<h3> Features: </h3>
|
34 |
-
|
35 |
-
<ul>
|
36 |
-
<li>Unlimited sliders with unlimited slides</li>
|
37 |
-
<li>Seriously configurable </li>
|
38 |
-
<li>Fully responsive </li>
|
39 |
-
<li>Touch Swipe Navigation </li>
|
40 |
-
<li>Customization options for each individual slider </li>
|
41 |
-
<li>Slide attributes: image, caption title, caption text (with HTML support), target link</li>
|
42 |
-
<li>Easy to use - uses WordPress custom post types</li>
|
43 |
-
<li>Translation ready and compatible with translation plugins </li>
|
44 |
-
<li>Accessibility ready</li>
|
45 |
-
<li>Lightweight (uses CSS and iconfont only)</li>
|
46 |
-
<li>CSS transitions – fast and powerful hardware accelerated CSS3 3D transforms </li>
|
47 |
-
<li>HTML5 valid</li>
|
48 |
-
<li>Sample content</li>
|
49 |
-
</ul>
|
50 |
-
|
51 |
-
</div>
|
52 |
-
</div>
|
53 |
-
|
54 |
-
</div> <!-- post-body-content-->
|
55 |
-
|
56 |
-
<div class="postbox-container" id="postbox-container-1">
|
57 |
-
|
58 |
-
<div class="meta-box-sortables">
|
59 |
-
|
60 |
-
<div class="postbox">
|
61 |
-
<h3 style="text-align: center;" class="hndle">
|
62 |
-
<img id="serious-slider-logo" src="<?php echo plugins_url('../resources/images/serious-slider-128.png', __FILE__); ?>" />
|
63 |
-
<span><strong><?php echo $this->title; ?></strong></span>
|
64 |
-
</h3>
|
65 |
-
|
66 |
-
<div class="inside">
|
67 |
-
<div style="text-align: center; margin: auto">
|
68 |
-
<strong><?php printf( __('version: %s','cryout-serious-slider'), $this->version ); ?></strong><br>
|
69 |
-
<?php _e('by','cryout-serious-slider') ?> Cryout Creations<br>
|
70 |
-
<a target="_blank" href="http://www.cryoutcreations.eu/cryout-serious-slider/">www.cryoutcreations.eu</a>
|
71 |
-
</div>
|
72 |
-
</div>
|
73 |
-
</div>
|
74 |
-
|
75 |
-
<div class="postbox">
|
76 |
-
<h3 style="text-align: center;" class="hndle">
|
77 |
-
<span><?php _e('Support','cryout-serious-slider') ?></span>
|
78 |
-
</h3><div class="inside">
|
79 |
-
<div style="text-align: center; margin: auto">
|
80 |
-
<p><?php _e('Need help?', 'cryout-serious-slider') ?></p>
|
81 |
-
<a class="button button-primary" href="http://www.cryoutcreations.eu/priority-support"><?php _e('Priority Support', 'cryout-serious-slider') ?></a>
|
82 |
-
<a class="button button-secondary" href="http://www.cryoutcreations.eu/forums/f/wordpress/plugins/serious-slider"><?php _e('Support Forum', 'cryout-serious-slider') ?></a>
|
83 |
-
</div>
|
84 |
-
</div>
|
85 |
-
</div>
|
86 |
-
|
87 |
-
<div class="postbox">
|
88 |
-
<h3 style="text-align: center;" class="hndle">
|
89 |
-
<span><?php _e('Demo Content','cryout-serious-slider') ?></span>
|
90 |
-
</h3>
|
91 |
-
<div class="inside">
|
92 |
-
<div style="text-align: center; margin: auto">
|
93 |
-
<a class="button button-secondary" href="<?php echo $this->aboutpage . '&add_sample_content=1' ?>">
|
94 |
-
<?php _e('Create Sample Slider', 'cryout-serious-slider');?>
|
95 |
-
</a>
|
96 |
-
<p class="description"><small><?php _e('This will create a sample slider with 3 slides which you can use as a basis for your own content.', 'cryout-serious-slider') ?></small></p>
|
97 |
-
</div>
|
98 |
-
</div> <!--inside-->
|
99 |
-
</div> <!--postbox-->
|
100 |
-
|
101 |
-
</div>
|
102 |
-
</div> <!-- postbox-container -->
|
103 |
-
|
104 |
-
</div> <!-- post-body -->
|
105 |
-
<br class="clear">
|
106 |
-
</div> <!-- poststuff -->
|
107 |
-
|
108 |
-
</div><!--end wrap-->
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/shortcodes.php
CHANGED
@@ -43,7 +43,7 @@ class Cryout_Serious_Slider_Shortcode {
|
|
43 |
<?php echo implode("\n", $this->custom_script); ?>
|
44 |
</script>
|
45 |
<?php
|
46 |
-
|
47 |
} // shortcode_slyle()
|
48 |
|
49 |
function shortcode_render($attr) {
|
43 |
<?php echo implode("\n", $this->custom_script); ?>
|
44 |
</script>
|
45 |
<?php
|
46 |
+
ob_end_flush();
|
47 |
} // shortcode_slyle()
|
48 |
|
49 |
function shortcode_render($attr) {
|
readme.txt
CHANGED
@@ -3,11 +3,11 @@ Contributors: Cryout Creations
|
|
3 |
Donate link: https://www.cryoutcreations.eu/donate/
|
4 |
License: GPLv3
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
-
Tags: slider, slideshow, image slider,
|
7 |
Text Domain: cryout-serious-slider
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 4.9
|
10 |
-
Stable tag: 1.0.
|
11 |
|
12 |
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
13 |
|
@@ -15,11 +15,14 @@ Serious Slider is a highly efficient SEO friendly fully translatable accessibili
|
|
15 |
|
16 |
= Overview =
|
17 |
|
18 |
-
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress.
|
|
|
|
|
19 |
|
20 |
> [Live Demo](http://demos.cryoutcreations.eu/wordpress/serious-slider/) | [Documentation](https://www.cryoutcreations.eu/wordpress-tutorials/create-slider-serious-slider-plugin) | [Features](https://www.cryoutcreations.eu/wordpress-plugins/cryout-serious-slider) | [Support](https://www.cryoutcreations.eu/forums/f/wordpress/plugins/serious-slider)
|
21 |
|
22 |
Serious Slider uses the very familiar WordPress dashboard interface for creating slides and sliders so there's absolutely no learning curve. You just select the media image and press "Create Slider". After that it's like adding or editing WordPress posts, using featured images and other meta information like buttons and URLs.
|
|
|
23 |
Serious Slider works with all WordPress themes and has been designed to integrate seamlessly with our own [selected themes](https://wordpress.org/themes/author/cryout-creations/ "Cryout Creations Wordpress Themes").
|
24 |
|
25 |
= Main Features =
|
@@ -96,11 +99,16 @@ Serious Slider works with all WordPress themes and has been designed to integrat
|
|
96 |
|
97 |
== Upgrade Notice ==
|
98 |
|
99 |
-
|
|
|
100 |
|
101 |
|
102 |
== Changelog ==
|
103 |
|
|
|
|
|
|
|
|
|
104 |
= 1.0.0 =
|
105 |
* Added 4 new design styles (Square, Tall, Caption Left & Caption Bottom)
|
106 |
* Totally revamped design of existing styles (Light, Dark, Bootstrap & Cryout)
|
3 |
Donate link: https://www.cryoutcreations.eu/donate/
|
4 |
License: GPLv3
|
5 |
License URI: http://www.gnu.org/licenses/gpl.html
|
6 |
+
Tags: slider, slideshow, image slider, responsive slider, wordpress slider
|
7 |
Text Domain: cryout-serious-slider
|
8 |
Requires at least: 4.0
|
9 |
Tested up to: 4.9
|
10 |
+
Stable tag: 1.0.1
|
11 |
|
12 |
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress. Seriously!
|
13 |
|
15 |
|
16 |
= Overview =
|
17 |
|
18 |
+
Serious Slider is a highly efficient SEO friendly fully translatable accessibility ready free image slider for WordPress.
|
19 |
+
|
20 |
+
Create beautiful, responsive slideshows within seconds. Use minimum styling and JavaScript with hardware accelerated CSS3 transitions to create a really fluid experience.
|
21 |
|
22 |
> [Live Demo](http://demos.cryoutcreations.eu/wordpress/serious-slider/) | [Documentation](https://www.cryoutcreations.eu/wordpress-tutorials/create-slider-serious-slider-plugin) | [Features](https://www.cryoutcreations.eu/wordpress-plugins/cryout-serious-slider) | [Support](https://www.cryoutcreations.eu/forums/f/wordpress/plugins/serious-slider)
|
23 |
|
24 |
Serious Slider uses the very familiar WordPress dashboard interface for creating slides and sliders so there's absolutely no learning curve. You just select the media image and press "Create Slider". After that it's like adding or editing WordPress posts, using featured images and other meta information like buttons and URLs.
|
25 |
+
|
26 |
Serious Slider works with all WordPress themes and has been designed to integrate seamlessly with our own [selected themes](https://wordpress.org/themes/author/cryout-creations/ "Cryout Creations Wordpress Themes").
|
27 |
|
28 |
= Main Features =
|
99 |
|
100 |
== Upgrade Notice ==
|
101 |
|
102 |
+
= 1.0.1 =
|
103 |
+
Serious Slider version 1.0 brings a lot of new features but moves styling of inside caption links to separate slide buttons. Make sure you review your slides setup after updating.
|
104 |
|
105 |
|
106 |
== Changelog ==
|
107 |
|
108 |
+
= 1.0.1 =
|
109 |
+
* Fixed notice of undefined function call in shortcodes.php
|
110 |
+
* Updated info on plugin about page
|
111 |
+
|
112 |
= 1.0.0 =
|
113 |
* Added 4 new design styles (Square, Tall, Caption Left & Caption Bottom)
|
114 |
* Totally revamped design of existing styles (Light, Dark, Bootstrap & Cryout)
|
resources/backend.css
CHANGED
@@ -61,6 +61,8 @@
|
|
61 |
margin: 1em auto 0;
|
62 |
padding: 5px;
|
63 |
height: auto;
|
|
|
|
|
64 |
}
|
65 |
|
66 |
/* Taxonomy pages */
|
61 |
margin: 1em auto 0;
|
62 |
padding: 5px;
|
63 |
height: auto;
|
64 |
+
border-radius: 0;
|
65 |
+
text-shadow: none;
|
66 |
}
|
67 |
|
68 |
/* Taxonomy pages */
|