Version Description
- Updated support for version 1.1.0 of the Members plugin
- Added Meteor Slides capabilities group for Members plugin role editor
- Changed slideshow JavaScript function hook for greater plugin compatibility
Download this release
Release Info
Developer | jleuze |
Plugin | Meteor Slides |
Version | 1.5.6 |
Comparing to | |
See all releases |
Code changes from version 1.5.5 to 1.5.6
- css/meteor-slides.css +1 -1
- includes/meteor-slides-admin.php +58 -28
- includes/meteor-slideshow.php +1 -1
- js/slideshow.js +1 -1
- meteor-slides-plugin.php +7 -5
- readme.md +2 -2
- readme.txt +16 -8
css/meteor-slides.css
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/* Stylesheet for the Meteor Slides 1.5.
|
2 |
|
3 |
Copy "meteor-slides.css" from "/meteor-slides/css/" to your theme's directory to replace
|
4 |
the plugin's default stylesheet.
|
1 |
+
/* Stylesheet for the Meteor Slides 1.5.6 slideshow
|
2 |
|
3 |
Copy "meteor-slides.css" from "/meteor-slides/css/" to your theme's directory to replace
|
4 |
the plugin's default stylesheet.
|
includes/meteor-slides-admin.php
CHANGED
@@ -274,16 +274,16 @@
|
|
274 |
|
275 |
'<p>' . __( '<strong>Title</strong> - Name the slide so it can be easily found later.', 'meteor-slides' ) . '</p>' .
|
276 |
'<p>' . __( '<strong>Slide Image</strong> - To add an image to a slide, click the "Set featured image" link. Upload an image, or browse the media library for one, click the "Use as featured image" link to add the image and then close the media uploader. The Slide Image metabox should now have a thumbnail image.', 'meteor-slides' ) . '</p>' .
|
277 |
-
'<p>' . __( '<strong>Slide Link</strong> - Add the full URL to the Slide Link metabox, such as <em>http://
|
278 |
-
'<p>' . __( '<strong>Slideshows</strong> - A slide can be added <a href="http://
|
279 |
'<p>' . __( "<strong>Slide Order</strong> - Slides are sorted chronologically, edit the slide's published date to change the order of the slide.", "meteor-slides" ) . '</p>';
|
280 |
|
281 |
$meteor_contextual_sidebar =
|
282 |
|
283 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
284 |
-
'<p>' . __( '<a href="http://
|
285 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
286 |
-
'<p>' . __( '<a class="button" href="http://jleuze.com/
|
287 |
|
288 |
$meteor_contextual_screen->add_help_tab( array(
|
289 |
|
@@ -304,9 +304,9 @@
|
|
304 |
$meteor_contextual_sidebar =
|
305 |
|
306 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
307 |
-
'<p>' . __( '<a href="http://
|
308 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
309 |
-
'<p>' . __( '<a class="button" href="http://jleuze.com/
|
310 |
|
311 |
$meteor_contextual_screen->add_help_tab( array(
|
312 |
|
@@ -337,9 +337,9 @@
|
|
337 |
$meteor_contextual_sidebar =
|
338 |
|
339 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
340 |
-
'<p>' . __( '<a href="http://
|
341 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
342 |
-
'<p>' . __( '<a class="button" href="http://jleuze.com/
|
343 |
|
344 |
$meteor_contextual_screen->add_help_tab( array(
|
345 |
|
@@ -376,7 +376,7 @@
|
|
376 |
$meteor_contextual_second_title = __( 'Additional Options', 'meteor-slides' );
|
377 |
$meteor_contextual_second_content =
|
378 |
|
379 |
-
'<p>' . __( 'Only the options below are required, but jQuery Cycle has <a href="http://jquery.malsup.com/cycle/options.html">additional options</a> that can be changed <a href="http://
|
380 |
'<p>' . __( 'Here is an example using metadata with the shortcode to set the slide order to random:', 'meteor-slides' ) . '</p>' .
|
381 |
'<p>' . __( '<code>[meteor_slideshow metadata="random: 1"]</code>', 'meteor-slides' ) . '</p>';
|
382 |
|
@@ -387,14 +387,14 @@
|
|
387 |
'<p>' . __( "<strong>Template Tag</strong> - Use this template tag in a theme file: <code><?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?></code>", 'meteor-slides' ) . '</p>' .
|
388 |
'<p>' . __( "<strong>Shortcode</strong> - Use this shortcode to add a slideshow via the Post or Page editor: <code>[meteor_slideshow]</code>", 'meteor-slides' ) . '</p>' .
|
389 |
'<p>' . __( '<strong>Widget</strong> - Use the Meteor Slides Widget to add a slideshow to a widgetized area.', 'meteor-slides' ) . '</p>' .
|
390 |
-
'<p>' . __( 'Check out the documentation on <a href="http://
|
391 |
|
392 |
$meteor_contextual_sidebar =
|
393 |
|
394 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
395 |
-
'<p>' . __( '<a href="http://
|
396 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
397 |
-
'<p>' . __( '<a class="button" href="http://jleuze.com/
|
398 |
|
399 |
$meteor_contextual_screen->add_help_tab( array(
|
400 |
|
@@ -473,22 +473,7 @@
|
|
473 |
}
|
474 |
|
475 |
// Add custom slide capabilities for the Members plugin
|
476 |
-
|
477 |
-
add_action( 'admin_init', 'meteorslides_members_capabilities' );
|
478 |
-
|
479 |
-
function meteorslides_members_capabilities() {
|
480 |
-
|
481 |
-
if ( function_exists( 'members_get_capabilities' ) ) {
|
482 |
-
|
483 |
-
add_filter( 'members_get_capabilities', 'meteorslides_add_members_caps' );
|
484 |
-
|
485 |
-
}
|
486 |
-
|
487 |
-
}
|
488 |
-
|
489 |
function meteorslides_add_members_caps( $caps ) {
|
490 |
-
|
491 |
-
$caps[] = 'meteorslides_manage_options';
|
492 |
$caps[] = 'meteorslides_edit_slide';
|
493 |
$caps[] = 'meteorslides_edit_slides';
|
494 |
$caps[] = 'meteorslides_edit_others_slides';
|
@@ -496,11 +481,56 @@
|
|
496 |
$caps[] = 'meteorslides_read_slides';
|
497 |
$caps[] = 'meteorslides_read_private_slides';
|
498 |
$caps[] = 'meteorslides_delete_slide';
|
|
|
499 |
$caps[] = 'meteorslides_manage_slideshows';
|
|
|
500 |
|
501 |
return $caps;
|
502 |
-
|
503 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
504 |
|
505 |
// Adds link to settings page on plugins page
|
506 |
|
274 |
|
275 |
'<p>' . __( '<strong>Title</strong> - Name the slide so it can be easily found later.', 'meteor-slides' ) . '</p>' .
|
276 |
'<p>' . __( '<strong>Slide Image</strong> - To add an image to a slide, click the "Set featured image" link. Upload an image, or browse the media library for one, click the "Use as featured image" link to add the image and then close the media uploader. The Slide Image metabox should now have a thumbnail image.', 'meteor-slides' ) . '</p>' .
|
277 |
+
'<p>' . __( '<strong>Slide Link</strong> - Add the full URL to the Slide Link metabox, such as <em>http://jleuze.com/</em> (Optional)', 'meteor-slides' ) . '</p>' .
|
278 |
+
'<p>' . __( '<strong>Slideshows</strong> - A slide can be added <a href="http://jleuze.com/plugins/meteor-slides/multiple-slideshows/">to a slideshow</a> by selecting the slideshow from the Slideshows metabox.', 'meteor-slides' ) . '</p>' .
|
279 |
'<p>' . __( "<strong>Slide Order</strong> - Slides are sorted chronologically, edit the slide's published date to change the order of the slide.", "meteor-slides" ) . '</p>';
|
280 |
|
281 |
$meteor_contextual_sidebar =
|
282 |
|
283 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
284 |
+
'<p>' . __( '<a href="http://jleuze.com/plugins/meteor-slides/using-meteor-slides/" target="_blank">Documentation on Creating Slides</a>', 'meteor-slides' ) . '</p>' .
|
285 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
286 |
+
'<p>' . __( '<a class="button" href="http://jleuze.com/go/paypal/" target="_blank">Donate</a>', 'meteor-slides' ) . '</p>';
|
287 |
|
288 |
$meteor_contextual_screen->add_help_tab( array(
|
289 |
|
304 |
$meteor_contextual_sidebar =
|
305 |
|
306 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
307 |
+
'<p>' . __( '<a href="http://jleuze.com/plugins/meteor-slides/installation/" target="_blank">Meteor Slides Documentation</a>', 'meteor-slides' ) . '</p>' .
|
308 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
309 |
+
'<p>' . __( '<a class="button" href="http://jleuze.com/go/paypal/" target="_blank">Donate</a>', 'meteor-slides' ) . '</p>';
|
310 |
|
311 |
$meteor_contextual_screen->add_help_tab( array(
|
312 |
|
337 |
$meteor_contextual_sidebar =
|
338 |
|
339 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
340 |
+
'<p>' . __( '<a href="http://jleuze.com/plugins/meteor-slides/multiple-slideshows/" target="_blank">Documentation on Adding Multiple Slideshows</a>', 'meteor-slides' ) . '</p>' .
|
341 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
342 |
+
'<p>' . __( '<a class="button" href="http://jleuze.com/go/paypal/" target="_blank">Donate</a>', 'meteor-slides' ) . '</p>';
|
343 |
|
344 |
$meteor_contextual_screen->add_help_tab( array(
|
345 |
|
376 |
$meteor_contextual_second_title = __( 'Additional Options', 'meteor-slides' );
|
377 |
$meteor_contextual_second_content =
|
378 |
|
379 |
+
'<p>' . __( 'Only the options below are required, but jQuery Cycle has <a href="http://jquery.malsup.com/cycle/options.html">additional options</a> that can be changed <a href="http://jleuze.com/plugins/meteor-slides/using-metadata/">using metadata</a>.', 'meteor-slides' ) . '</p>' .
|
380 |
'<p>' . __( 'Here is an example using metadata with the shortcode to set the slide order to random:', 'meteor-slides' ) . '</p>' .
|
381 |
'<p>' . __( '<code>[meteor_slideshow metadata="random: 1"]</code>', 'meteor-slides' ) . '</p>';
|
382 |
|
387 |
'<p>' . __( "<strong>Template Tag</strong> - Use this template tag in a theme file: <code><?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?></code>", 'meteor-slides' ) . '</p>' .
|
388 |
'<p>' . __( "<strong>Shortcode</strong> - Use this shortcode to add a slideshow via the Post or Page editor: <code>[meteor_slideshow]</code>", 'meteor-slides' ) . '</p>' .
|
389 |
'<p>' . __( '<strong>Widget</strong> - Use the Meteor Slides Widget to add a slideshow to a widgetized area.', 'meteor-slides' ) . '</p>' .
|
390 |
+
'<p>' . __( 'Check out the documentation on <a href="http://jleuze.com/plugins/meteor-slides/adding-a-slideshow/" target="_blank">adding a slideshow</a> for more info.', 'meteor-slides' ) . '</p>';
|
391 |
|
392 |
$meteor_contextual_sidebar =
|
393 |
|
394 |
'<p><strong>' . __( 'For more information', 'meteor-slides' ) . '</strong></p>' .
|
395 |
+
'<p>' . __( '<a href="http://jleuze.com/plugins/meteor-slides/installation/" target="_blank">Documentation on Configuring Meteor Slides</a>', 'meteor-slides' ) . '</p>' .
|
396 |
'<p>' . __( '<a href="http://wordpress.org/tags/meteor-slides" target="_blank">Plugin Support Forum</a>', 'meteor-slides' ) . '</p>' .
|
397 |
+
'<p>' . __( '<a class="button" href="http://jleuze.com/go/paypal/" target="_blank">Donate</a>', 'meteor-slides' ) . '</p>';
|
398 |
|
399 |
$meteor_contextual_screen->add_help_tab( array(
|
400 |
|
473 |
}
|
474 |
|
475 |
// Add custom slide capabilities for the Members plugin
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
476 |
function meteorslides_add_members_caps( $caps ) {
|
|
|
|
|
477 |
$caps[] = 'meteorslides_edit_slide';
|
478 |
$caps[] = 'meteorslides_edit_slides';
|
479 |
$caps[] = 'meteorslides_edit_others_slides';
|
481 |
$caps[] = 'meteorslides_read_slides';
|
482 |
$caps[] = 'meteorslides_read_private_slides';
|
483 |
$caps[] = 'meteorslides_delete_slide';
|
484 |
+
$caps[] = 'meteorslides_delete_slides';
|
485 |
$caps[] = 'meteorslides_manage_slideshows';
|
486 |
+
$caps[] = 'meteorslides_manage_options';
|
487 |
|
488 |
return $caps;
|
|
|
489 |
}
|
490 |
+
|
491 |
+
// Unregister default Slides caps group from the Members plugin
|
492 |
+
function meteorslides_members_remove_slides_cap_group() {
|
493 |
+
members_unregister_cap_group( 'type-slide' );
|
494 |
+
}
|
495 |
+
|
496 |
+
// Registers Meteor Slides capabilities group for the Members plugin
|
497 |
+
function meteorslides_add_members_caps_group() {
|
498 |
+
$meteor_cap_group_caps = array(
|
499 |
+
'meteorslides_edit_slide',
|
500 |
+
'meteorslides_edit_slides',
|
501 |
+
'meteorslides_edit_others_slides',
|
502 |
+
'meteorslides_publish_slides',
|
503 |
+
'meteorslides_read_slide',
|
504 |
+
'meteorslides_read_private_slides',
|
505 |
+
'meteorslides_delete_slide',
|
506 |
+
'meteorslides_delete_slides',
|
507 |
+
'meteorslides_manage_slideshows',
|
508 |
+
'meteorslides_manage_options'
|
509 |
+
);
|
510 |
+
|
511 |
+
$meteor_cap_group_args = array(
|
512 |
+
'label' => __( 'Meteor Slides', 'meteor-slides' ),
|
513 |
+
'icon' => 'dashicons-images-alt2',
|
514 |
+
'caps' => $meteor_cap_group_caps,
|
515 |
+
'merge_added' => true,
|
516 |
+
'diff_added' => false,
|
517 |
+
);
|
518 |
+
members_register_cap_group( 'type-meteor-slide', $meteor_cap_group_args );
|
519 |
+
}
|
520 |
+
|
521 |
+
// Setup custom slide capabilities and capabilities group if the Members plugin is active
|
522 |
+
function meteorslides_members_capabilities() {
|
523 |
+
if ( function_exists( 'members_get_capabilities' ) ) {
|
524 |
+
add_filter( 'members_get_capabilities', 'meteorslides_add_members_caps' );
|
525 |
+
}
|
526 |
+
if ( function_exists( 'members_register_cap_group' ) ) {
|
527 |
+
add_action( 'members_register_cap_groups', 'meteorslides_add_members_caps_group' );
|
528 |
+
}
|
529 |
+
if ( function_exists( 'members_register_cap_group' ) ) {
|
530 |
+
add_action( 'members_register_cap_groups', 'meteorslides_members_remove_slides_cap_group' );
|
531 |
+
}
|
532 |
+
}
|
533 |
+
add_action( 'plugins_loaded', 'meteorslides_members_capabilities' );
|
534 |
|
535 |
// Adds link to settings page on plugins page
|
536 |
|
includes/meteor-slideshow.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
/* Loop template for the Meteor Slides 1.5.
|
3 |
|
4 |
Copy "meteor-slideshow.php" from "/meteor-slides/" to your theme's directory to replace
|
5 |
the plugin's default slideshow loop.
|
1 |
<?php
|
2 |
+
/* Loop template for the Meteor Slides 1.5.6 slideshow
|
3 |
|
4 |
Copy "meteor-slideshow.php" from "/meteor-slides/" to your theme's directory to replace
|
5 |
the plugin's default slideshow loop.
|
js/slideshow.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/* Script for the Meteor Slides 1.5.
|
2 |
|
3 |
Copy "slideshow.js" from "/meteor-slides/js/" to your theme's directory to replace
|
4 |
the plugin's default slideshow script.
|
1 |
+
/* Script for the Meteor Slides 1.5.6 slideshow
|
2 |
|
3 |
Copy "slideshow.js" from "/meteor-slides/js/" to your theme's directory to replace
|
4 |
the plugin's default slideshow script.
|
meteor-slides-plugin.php
CHANGED
@@ -6,10 +6,10 @@
|
|
6 |
Author: Josh Leuze
|
7 |
Author URI: http://jleuze.com/
|
8 |
License: GPL2
|
9 |
-
Version: 1.5.
|
10 |
*/
|
11 |
|
12 |
-
/* Copyright
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
@@ -58,7 +58,8 @@
|
|
58 |
'publish_posts' => 'meteorslides_publish_slides',
|
59 |
'read_post' => 'meteorslides_read_slide',
|
60 |
'read_private_posts' => 'meteorslides_read_private_slides',
|
61 |
-
'delete_post' => 'meteorslides_delete_slide'
|
|
|
62 |
|
63 |
);
|
64 |
|
@@ -76,7 +77,8 @@
|
|
76 |
'publish_posts' => 'publish_posts',
|
77 |
'read_post' => 'read_post',
|
78 |
'read_private_posts' => 'read_private_posts',
|
79 |
-
'delete_post' => 'delete_post'
|
|
|
80 |
|
81 |
);
|
82 |
|
@@ -254,7 +256,7 @@
|
|
254 |
|
255 |
// Adds JavaScript for the slideshow
|
256 |
|
257 |
-
add_action( '
|
258 |
|
259 |
function meteorslides_javascript() {
|
260 |
|
6 |
Author: Josh Leuze
|
7 |
Author URI: http://jleuze.com/
|
8 |
License: GPL2
|
9 |
+
Version: 1.5.6
|
10 |
*/
|
11 |
|
12 |
+
/* Copyright 2016 Josh Leuze (email : mail@jleuze.com)
|
13 |
|
14 |
This program is free software; you can redistribute it and/or modify
|
15 |
it under the terms of the GNU General Public License, version 2, as
|
58 |
'publish_posts' => 'meteorslides_publish_slides',
|
59 |
'read_post' => 'meteorslides_read_slide',
|
60 |
'read_private_posts' => 'meteorslides_read_private_slides',
|
61 |
+
'delete_post' => 'meteorslides_delete_slide',
|
62 |
+
'delete_posts' => 'meteorslides_delete_slides'
|
63 |
|
64 |
);
|
65 |
|
77 |
'publish_posts' => 'publish_posts',
|
78 |
'read_post' => 'read_post',
|
79 |
'read_private_posts' => 'read_private_posts',
|
80 |
+
'delete_post' => 'delete_post',
|
81 |
+
'delete_posts' => 'delete_posts'
|
82 |
|
83 |
);
|
84 |
|
256 |
|
257 |
// Adds JavaScript for the slideshow
|
258 |
|
259 |
+
add_action( 'wp_enqueue_scripts', 'meteorslides_javascript' );
|
260 |
|
261 |
function meteorslides_javascript() {
|
262 |
|
readme.md
CHANGED
@@ -5,7 +5,7 @@ Meteor Slides makes it simple to create slideshows and publish them with a short
|
|
5 |
|
6 |
####Meteor Slides Homepage
|
7 |
|
8 |
-
[Visit this plugin's homepage](http://
|
9 |
|
10 |
####Features
|
11 |
|
@@ -35,4 +35,4 @@ Use ```<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow();
|
|
35 |
|
36 |
####Meteor Slides Documentation
|
37 |
|
38 |
-
Check out the [Meteor Slides Documentation](http://
|
5 |
|
6 |
####Meteor Slides Homepage
|
7 |
|
8 |
+
[Visit this plugin's homepage](http://jleuze.com/plugins/meteor-slides/) for documentation, tutorials, and video screencasts.
|
9 |
|
10 |
####Features
|
11 |
|
35 |
|
36 |
####Meteor Slides Documentation
|
37 |
|
38 |
+
Check out the [Meteor Slides Documentation](http://jleuze.com/plugins/meteor-slides/installation/) for more information on using Meteor Slides, adding slideshows, using metadata, and advanced customization.
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: jleuze
|
|
3 |
Donate link: http://jleuze.com/go/paypal/
|
4 |
Tags: custom post types, image, jquery, responsive, slide, slider, slides, slideshow
|
5 |
Requires at least: 4.4
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 1.5.
|
8 |
|
9 |
Easily create responsive slideshows with WordPress that are mobile friendly and simple to customize.
|
10 |
|
@@ -14,7 +14,7 @@ Meteor Slides makes it simple to create slideshows and publish them with a short
|
|
14 |
|
15 |
= Meteor Slides Homepage =
|
16 |
|
17 |
-
[Visit this plugin's homepage](http://
|
18 |
|
19 |
= Video Overview =
|
20 |
|
@@ -51,7 +51,7 @@ Use `<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); }
|
|
51 |
|
52 |
= Meteor Slides Documentation =
|
53 |
|
54 |
-
Check out the [Meteor Slides Documentation](http://
|
55 |
|
56 |
*Please [post any questions or problems](http://wordpress.org/tags/meteor-slides?forum_id=10#postform "Post a question or problem in the forums") in the WordPress.org support forums.*
|
57 |
|
@@ -59,7 +59,7 @@ Check out the [Meteor Slides Documentation](http://www.jleuze.com/plugins/meteor
|
|
59 |
|
60 |
= Meteor Slides is awesome, what can I do to help? =
|
61 |
|
62 |
-
You can help right on this page by rating the plugin or voting for its compatibility with the latest version of WordPress. Blog about Meteor Slides to get the word out, or [visit my blog](http://
|
63 |
|
64 |
= I add a slide, save or publish it, and then it's missing or not found, what gives? =
|
65 |
|
@@ -79,11 +79,11 @@ The `z-index` on the slideshow is higher than the dropdowns, causing them to be
|
|
79 |
|
80 |
= How do I customize the slideshow's CSS stylesheet? =
|
81 |
|
82 |
-
Copy **meteor-slides.css** from **/meteor-slides/css/** to your theme's directory to replace the plugin's default stylesheet. If you have navigation enabled, be sure to copy the **buttons.png**, **next.png**, and **prev.png** files to your theme's images folder and update the image paths, or create new graphics to replace them. Learn more about [customizing the stylesheet](http://
|
83 |
|
84 |
= How do I customize the slideshow's loop template? =
|
85 |
|
86 |
-
Copy **meteor-slideshow.php** from **/meteor-slides/** to your theme's directory to replace the plugin's default slideshow loop. Learn more about [customizing the slideshow template](http://
|
87 |
|
88 |
= I installed Meteor Slides, and now my theme or plugin's jQuery goodies are broken! =
|
89 |
|
@@ -93,7 +93,7 @@ It's also possible that a script in your theme or another plugin is using the "$
|
|
93 |
|
94 |
= I just installed Meteor Slides, but the Slides menu is missing, where do I go? =
|
95 |
|
96 |
-
If the Slides menu is missing, you probably have the [Members](http://wordpress.org/extend/plugins/members/ "Members plugin") plugin activated. Meteor Slides supports the Members plugin, so if you have them both running you can use Members to choose which roles can manage the slides or slideshow settings. Take a look at [this blog post](http://
|
97 |
|
98 |
*Please [post any questions or problems](http://wordpress.org/tags/meteor-slides?forum_id=10#postform "Post a question or problem in the forums") in the WordPress.org support forums.*
|
99 |
|
@@ -108,6 +108,11 @@ If the Slides menu is missing, you probably have the [Members](http://wordpress.
|
|
108 |
7. Meteor Slides Widget
|
109 |
|
110 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
111 |
= 1.5.5 =
|
112 |
* Added support for responsive images using srcset in WordPress 4.4
|
113 |
* Updated stylesheet with conflict fixes for the TwentySixteen theme
|
@@ -211,6 +216,9 @@ If the Slides menu is missing, you probably have the [Members](http://wordpress.
|
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
|
|
|
|
|
|
214 |
= 1.5.5 =
|
215 |
Meteor Slides 1.5.5 has been updated with theme conflict fixes and support for responsive images using srcset in WordPress 4.4.
|
216 |
|
3 |
Donate link: http://jleuze.com/go/paypal/
|
4 |
Tags: custom post types, image, jquery, responsive, slide, slider, slides, slideshow
|
5 |
Requires at least: 4.4
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 1.5.6
|
8 |
|
9 |
Easily create responsive slideshows with WordPress that are mobile friendly and simple to customize.
|
10 |
|
14 |
|
15 |
= Meteor Slides Homepage =
|
16 |
|
17 |
+
[Visit this plugin's homepage](http://jleuze.com/plugins/meteor-slides/ "Meteor Slides Homepage") for documentation, tutorials, and additional videos.
|
18 |
|
19 |
= Video Overview =
|
20 |
|
51 |
|
52 |
= Meteor Slides Documentation =
|
53 |
|
54 |
+
Check out the [Meteor Slides Documentation](http://jleuze.com/plugins/meteor-slides/installation/ "Meteor Slides Documentation") for more information on using Meteor Slides, adding slideshows, using metadata, and advanced customization.
|
55 |
|
56 |
*Please [post any questions or problems](http://wordpress.org/tags/meteor-slides?forum_id=10#postform "Post a question or problem in the forums") in the WordPress.org support forums.*
|
57 |
|
59 |
|
60 |
= Meteor Slides is awesome, what can I do to help? =
|
61 |
|
62 |
+
You can help right on this page by rating the plugin or voting for its compatibility with the latest version of WordPress. Blog about Meteor Slides to get the word out, or [visit my blog](http://jleuze.com/ "JLeuze.com") to post feedback or just say hi. You could also [translate Meteor Slides](http://jleuze.com/plugins/meteor-slides/languages/ "Meteor Slides Languages") into another language or [make a donation](http://jleuze.com/donate/ "Donate").
|
63 |
|
64 |
= I add a slide, save or publish it, and then it's missing or not found, what gives? =
|
65 |
|
79 |
|
80 |
= How do I customize the slideshow's CSS stylesheet? =
|
81 |
|
82 |
+
Copy **meteor-slides.css** from **/meteor-slides/css/** to your theme's directory to replace the plugin's default stylesheet. If you have navigation enabled, be sure to copy the **buttons.png**, **next.png**, and **prev.png** files to your theme's images folder and update the image paths, or create new graphics to replace them. Learn more about [customizing the stylesheet](http://jleuze.com/plugins/meteor-slides/customizing-the-stylesheet/ "Meteor Slides Documentation") for Meteor Slides.
|
83 |
|
84 |
= How do I customize the slideshow's loop template? =
|
85 |
|
86 |
+
Copy **meteor-slideshow.php** from **/meteor-slides/** to your theme's directory to replace the plugin's default slideshow loop. Learn more about [customizing the slideshow template](http://jleuze.com/plugins/meteor-slides/customizing-the-slideshow-template/ "Meteor Slides Documentation") for Meteor Slides.
|
87 |
|
88 |
= I installed Meteor Slides, and now my theme or plugin's jQuery goodies are broken! =
|
89 |
|
93 |
|
94 |
= I just installed Meteor Slides, but the Slides menu is missing, where do I go? =
|
95 |
|
96 |
+
If the Slides menu is missing, you probably have the [Members](http://wordpress.org/extend/plugins/members/ "Members plugin") plugin activated. Meteor Slides supports the Members plugin, so if you have them both running you can use Members to choose which roles can manage the slides or slideshow settings. Take a look at [this blog post](http://jleuze.com/using-the-members-plugin-with-meteor-slides/ "Using the Members plugin with Meteor Slides") for more info on using these plugins together.
|
97 |
|
98 |
*Please [post any questions or problems](http://wordpress.org/tags/meteor-slides?forum_id=10#postform "Post a question or problem in the forums") in the WordPress.org support forums.*
|
99 |
|
108 |
7. Meteor Slides Widget
|
109 |
|
110 |
== Changelog ==
|
111 |
+
= 1.5.6 =
|
112 |
+
* Updated support for version 1.1.0 of the Members plugin
|
113 |
+
* Added Meteor Slides capabilities group for Members plugin role editor
|
114 |
+
* Changed slideshow JavaScript function hook for greater plugin compatibility
|
115 |
+
|
116 |
= 1.5.5 =
|
117 |
* Added support for responsive images using srcset in WordPress 4.4
|
118 |
* Updated stylesheet with conflict fixes for the TwentySixteen theme
|
216 |
|
217 |
== Upgrade Notice ==
|
218 |
|
219 |
+
= 1.5.6 =
|
220 |
+
Meteor Slides 1.5.6 includes updated support and functionality for the latest version of the Members plugin.
|
221 |
+
|
222 |
= 1.5.5 =
|
223 |
Meteor Slides 1.5.5 has been updated with theme conflict fixes and support for responsive images using srcset in WordPress 4.4.
|
224 |
|