Shortcodes Ultimate - Version 3.3.1

Version Description

Upgrade normally via your Wordpress admin -> Plugins panel.

Download this release

Release Info

Developer gn_themes
Plugin Icon 128x128 Shortcodes Ultimate
Version 3.3.1
Comparing to
See all releases

Code changes from version 3.3.0 to 3.3.1

Files changed (3) hide show
  1. lib/images.php +3 -3
  2. readme.txt +2 -1
  3. shortcodes-ultimate.php +2 -2
lib/images.php CHANGED
@@ -11,9 +11,9 @@
11
  function su_build_gallery( $source = 'post', $link = 'none', $size = '150x150', $limit = 10, $options = array( ) ) {
12
 
13
  // Thumbnail dimensions
14
- $size = explode( 'x', strtolower( $size ) );
15
- $width = $size[0];
16
- $height = $size[1];
17
 
18
  ### SOURCE: POST ###
19
  if ( strpos( $source, 'post' ) !== false ) {
11
  function su_build_gallery( $source = 'post', $link = 'none', $size = '150x150', $limit = 10, $options = array( ) ) {
12
 
13
  // Thumbnail dimensions
14
+ $dimensions = explode( 'x', $size );
15
+ $width = $dimensions[0];
16
+ $height = $dimensions[1];
17
 
18
  ### SOURCE: POST ###
19
  if ( strpos( $source, 'post' ) !== false ) {
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://ilovecode.ru/donate/
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, jcarousel, rss
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
- Stable tag: 3.3.0
8
 
9
  Provides support for multiple useful shortcodes
10
 
@@ -22,6 +22,7 @@ With this plugin you can easily create buttons, boxes, different sliders and muc
22
 
23
  = New in this version =
24
  * Changed: [nivo_slider] and [jcarousel] (see docs in console)
 
25
  * New shortcode: [custom_gallery]
26
  * New parameter: [members login="0|1"]
27
  * New shortcode: guests
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, jcarousel, rss
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
+ Stable tag: 3.3.1
8
 
9
  Provides support for multiple useful shortcodes
10
 
22
 
23
  = New in this version =
24
  * Changed: [nivo_slider] and [jcarousel] (see docs in console)
25
+ * Changed: shortcode generator dropdown
26
  * New shortcode: [custom_gallery]
27
  * New parameter: [members login="0|1"]
28
  * New shortcode: guests
shortcodes-ultimate.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://ilovecode.ru/?p=122
5
- Version: 3.3.0
6
  Author: Vladimir Anokhin
7
  Author URI: http://ilovecode.ru/
8
  Description: Provides support for many easy to use shortcodes
@@ -312,7 +312,7 @@
312
  <?php
313
  foreach ( su_shortcodes() as $name => $shortcode ) {
314
  ?>
315
- <option value="<?php echo $name; ?>"><?php echo $shortcode['desc']; ?></option>
316
  <?php
317
  }
318
  ?>
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://ilovecode.ru/?p=122
5
+ Version: 3.3.1
6
  Author: Vladimir Anokhin
7
  Author URI: http://ilovecode.ru/
8
  Description: Provides support for many easy to use shortcodes
312
  <?php
313
  foreach ( su_shortcodes() as $name => $shortcode ) {
314
  ?>
315
+ <option value="<?php echo $name; ?>"><?php echo strtoupper( $name ); ?>:&nbsp;&nbsp;&nbsp;<?php echo $shortcode['desc']; ?></option>
316
  <?php
317
  }
318
  ?>