Version Description
Download this release
Release Info
Developer | cbaldelomar |
Plugin | Shortcodes by Angie Makes |
Version | 1.30 |
Comparing to | |
See all releases |
Code changes from version 1.28 to 1.30
- README.md +5 -0
- includes/css/style.css +1 -1
- includes/templates/nav-pagination.php +1 -1
- readme.txt +5 -0
- wc-shortcodes.php +2 -2
README.md
CHANGED
@@ -65,6 +65,11 @@ Use the shortcode manager in the TinyMCE text editor
|
|
65 |
|
66 |
## Changelog ##
|
67 |
|
|
|
|
|
|
|
|
|
|
|
68 |
### Version 1.28
|
69 |
|
70 |
* Added ability to add custom class to buttons.
|
65 |
|
66 |
## Changelog ##
|
67 |
|
68 |
+
### Version 1.30
|
69 |
+
|
70 |
+
* Fixed bug with isotope pagination not working on homepage.
|
71 |
+
* Removed invalid css syntax
|
72 |
+
|
73 |
### Version 1.28
|
74 |
|
75 |
* Added ability to add custom class to buttons.
|
includes/css/style.css
CHANGED
@@ -224,7 +224,7 @@
|
|
224 |
.wc-shortcodes-testimonial-content {
|
225 |
position: relative;
|
226 |
float: left;
|
227 |
-
background: #eeeeee
|
228 |
padding: 20px;
|
229 |
width: 100%;
|
230 |
}
|
224 |
.wc-shortcodes-testimonial-content {
|
225 |
position: relative;
|
226 |
float: left;
|
227 |
+
background: #eeeeee;
|
228 |
padding: 20px;
|
229 |
width: 100%;
|
230 |
}
|
includes/templates/nav-pagination.php
CHANGED
@@ -12,7 +12,7 @@ if ( $ml_query->max_num_pages < 2 )
|
|
12 |
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
|
13 |
'format' => '?page=%#%', // ?page=%#% : %#% is replaced by the page number
|
14 |
'total' => $ml_query->max_num_pages,
|
15 |
-
'current' => max( 1,
|
16 |
'show_all' => false,
|
17 |
'prev_next' => true,
|
18 |
'prev_text' => __('Previous Page'),
|
12 |
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
|
13 |
'format' => '?page=%#%', // ?page=%#% : %#% is replaced by the page number
|
14 |
'total' => $ml_query->max_num_pages,
|
15 |
+
'current' => max( 1, $ml_query->get('paged') ),
|
16 |
'show_all' => false,
|
17 |
'prev_next' => true,
|
18 |
'prev_text' => __('Previous Page'),
|
readme.txt
CHANGED
@@ -86,6 +86,11 @@ Use the shortcode manager in the TinyMCE text editor
|
|
86 |
|
87 |
== Changelog ==
|
88 |
|
|
|
|
|
|
|
|
|
|
|
89 |
### Version 1.28
|
90 |
|
91 |
* Added ability to add custom class to buttons.
|
86 |
|
87 |
== Changelog ==
|
88 |
|
89 |
+
### Version 1.30
|
90 |
+
|
91 |
+
* Fixed bug with isotope pagination not working on homepage.
|
92 |
+
* Removed invalid css syntax
|
93 |
+
|
94 |
### Version 1.28
|
95 |
|
96 |
* Added ability to add custom class to buttons.
|
wc-shortcodes.php
CHANGED
@@ -5,11 +5,11 @@ Plugin URI: http://wordpresscanvas.com/features/shortcodes/
|
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
-
Version: 1.
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
-
define( 'WC_SHORTCODES_VERSION', '1.
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
5 |
Description: A family of shortcodes to enhance site functionality.
|
6 |
Author: Chris Baldelomar
|
7 |
Author URI: http://webplantmedia.com/
|
8 |
+
Version: 1.30
|
9 |
License: GPLv2 or later
|
10 |
*/
|
11 |
|
12 |
+
define( 'WC_SHORTCODES_VERSION', '1.30' );
|
13 |
define( 'WC_SHORTCODES_PREFIX', 'wc_shortcodes_' );
|
14 |
define( '_WC_SHORTCODES_PREFIX', '_wc_shortcodes_' );
|
15 |
define( 'WC_SHORTCODES_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|