Version Description
Upgrade normally via your Wordpress admin -> Plugins panel.
Download this release
Release Info
Developer | gn_themes |
Plugin | Shortcodes Ultimate |
Version | 2.2.2 |
Comparing to | |
See all releases |
Code changes from version 2.2.1 to 2.2.2
- css/style.css +6 -8
- js/admin.js +8 -7
- lib/admin.php +1 -1
- readme.txt +1 -1
- shortcodes-ultimate.php +1 -1
css/style.css
CHANGED
@@ -507,21 +507,19 @@ a.nivo-prevNav {
|
|
507 |
}
|
508 |
|
509 |
/* Members */
|
510 |
-
.su-members
|
511 |
-
border-top: 1px solid #fc9;
|
512 |
-
border-bottom: 1px solid #fc9;
|
513 |
-
background: #ffc;
|
514 |
padding: 1em;
|
515 |
text-align: center;
|
516 |
margin-bottom: 1.5em;
|
517 |
color: #000;
|
518 |
}
|
|
|
|
|
|
|
|
|
|
|
519 |
.su-members-style-2 {
|
520 |
border-top: 1px solid #8DC3EB;
|
521 |
border-bottom: 1px solid #8DC3EB;
|
522 |
background: #D9EEFF;
|
523 |
-
padding: 1em;
|
524 |
-
text-align: center;
|
525 |
-
margin-bottom: 1.5em;
|
526 |
-
color: #000;
|
527 |
}
|
507 |
}
|
508 |
|
509 |
/* Members */
|
510 |
+
.su-members {
|
|
|
|
|
|
|
511 |
padding: 1em;
|
512 |
text-align: center;
|
513 |
margin-bottom: 1.5em;
|
514 |
color: #000;
|
515 |
}
|
516 |
+
.su-members-style-1 {
|
517 |
+
border-top: 1px solid #fc9;
|
518 |
+
border-bottom: 1px solid #fc9;
|
519 |
+
background: #ffc;
|
520 |
+
}
|
521 |
.su-members-style-2 {
|
522 |
border-top: 1px solid #8DC3EB;
|
523 |
border-bottom: 1px solid #8DC3EB;
|
524 |
background: #D9EEFF;
|
|
|
|
|
|
|
|
|
525 |
}
|
js/admin.js
CHANGED
@@ -1,15 +1,16 @@
|
|
1 |
jQuery(document).ready(function($) {
|
2 |
|
3 |
// Code editor
|
4 |
-
var
|
5 |
|
6 |
// Tabs
|
7 |
-
$('
|
8 |
-
$('#su-tabs').
|
9 |
-
$(
|
10 |
-
|
11 |
-
|
12 |
-
$('.su-
|
|
|
13 |
});
|
14 |
|
15 |
// Forms
|
1 |
jQuery(document).ready(function($) {
|
2 |
|
3 |
// Code editor
|
4 |
+
var gn_custom_editor = CodeMirror.fromTextArea(document.getElementById("su-custom-css"), {});
|
5 |
|
6 |
// Tabs
|
7 |
+
$('#su-wrapper .su-pane:first').show();
|
8 |
+
$('#su-tabs a').click(function() {
|
9 |
+
$('#su-tabs a').removeClass('su-current');
|
10 |
+
$(this).addClass('su-current');
|
11 |
+
$('#su-wrapper .su-pane').hide();
|
12 |
+
$('#su-wrapper .su-pane').eq($(this).index()).show();
|
13 |
+
gn_custom_editor.refresh();
|
14 |
});
|
15 |
|
16 |
// Forms
|
lib/admin.php
CHANGED
@@ -60,7 +60,7 @@
|
|
60 |
<p class="su-message su-message-success"><?php _e( 'Settings saved', 'shortcodes-ultimate' ); ?></p>
|
61 |
<table class="fixed">
|
62 |
<tr>
|
63 |
-
<td>
|
64 |
<p><label><input type="checkbox" name="su_disable_custom_formatting" <?php echo $disabled_formatting; ?> /> <?php _e( 'Disable custom formatting', 'shortcodes-ultimate' ); ?></label></p>
|
65 |
</td>
|
66 |
<td>
|
60 |
<p class="su-message su-message-success"><?php _e( 'Settings saved', 'shortcodes-ultimate' ); ?></p>
|
61 |
<table class="fixed">
|
62 |
<tr>
|
63 |
+
<td width="250">
|
64 |
<p><label><input type="checkbox" name="su_disable_custom_formatting" <?php echo $disabled_formatting; ?> /> <?php _e( 'Disable custom formatting', 'shortcodes-ultimate' ); ?></label></p>
|
65 |
</td>
|
66 |
<td>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://ilovecode.ru/
|
|
4 |
Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, rss
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2
|
7 |
-
Stable tag: 2.2.
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
4 |
Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, rss
|
5 |
Requires at least: 3.0
|
6 |
Tested up to: 3.2
|
7 |
+
Stable tag: 2.2.2
|
8 |
|
9 |
Provides support for multiple useful shortcodes
|
10 |
|
shortcodes-ultimate.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
/*
|
4 |
Plugin Name: Shortcodes Ultimate
|
5 |
Plugin URI: http://ilovecode.ru/?p=122
|
6 |
-
Version: 2.2.
|
7 |
Author: Vladimir Anokhin
|
8 |
Author URI: http://ilovecode.ru/
|
9 |
Description: Provides support for many easy to use shortcodes
|
3 |
/*
|
4 |
Plugin Name: Shortcodes Ultimate
|
5 |
Plugin URI: http://ilovecode.ru/?p=122
|
6 |
+
Version: 2.2.2
|
7 |
Author: Vladimir Anokhin
|
8 |
Author URI: http://ilovecode.ru/
|
9 |
Description: Provides support for many easy to use shortcodes
|