Version Description
- 07/03/2016 =
- Fix - Fixed CSS issues
Download this release
Release Info
Developer | magictheme |
Plugin | Magee Shortcodes |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.0 to 1.4.1
- Magee.php +2 -2
- assets/css/foundation.css +0 -473
- inc/core.php +0 -1
- languages/magee-shortcodes.mo +0 -0
- languages/magee-shortcodes.pot +10 -10
- readme.txt +3 -0
Magee.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
-
Version: 1.4.
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) return;
|
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
-
define( 'MAGEE_SHORTCODES_VER', '1.4.
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
require_once 'inc/options.php';
|
3 |
Plugin Name: Magee Shortcodes
|
4 |
Plugin URI: http://www.mageewp.com/magee-shortcode.html
|
5 |
Description: Magee Shortcodes is WordPress plugin that provides a pack of shortcodes. With Magee Shortcodes, you can easily create accordion, buttons, boxes, columns, social and much more. They allow you to create so many different page layouts. You could quickly and easily built your own custom pages using all the various shortcodes that Magee Shortcodes includes.
|
6 |
+
Version: 1.4.1
|
7 |
Author: MageeWP
|
8 |
Author URI: http://www.mageewp.com
|
9 |
Text Domain: magee-shortcodes
|
14 |
if(!class_exists('Magee_Core') && !defined( 'MAGEE_SHORTCODE_LIB_DIR') ):
|
15 |
define( 'MAGEE_SHORTCODES_PATH', __FILE__ );
|
16 |
define( 'MAGEE_SHORTCODES_DIR_PATH', plugin_dir_path( __FILE__ ));
|
17 |
+
define( 'MAGEE_SHORTCODES_VER', '1.4.1' );
|
18 |
|
19 |
require_once 'inc/core.php';
|
20 |
require_once 'inc/options.php';
|
assets/css/foundation.css
DELETED
@@ -1,473 +0,0 @@
|
|
1 |
-
*,
|
2 |
-
*:before,
|
3 |
-
*:after {
|
4 |
-
-moz-box-sizing: border-box;
|
5 |
-
-webkit-box-sizing: border-box;
|
6 |
-
box-sizing: border-box; }
|
7 |
-
|
8 |
-
html,
|
9 |
-
body {
|
10 |
-
font-size: 100%; }
|
11 |
-
|
12 |
-
body {
|
13 |
-
background: white;
|
14 |
-
color: #222222;
|
15 |
-
padding: 0;
|
16 |
-
margin: 0;
|
17 |
-
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
|
18 |
-
font-weight: normal;
|
19 |
-
font-style: normal;
|
20 |
-
line-height: 1;
|
21 |
-
position: relative;
|
22 |
-
cursor: default; }
|
23 |
-
|
24 |
-
a:hover {
|
25 |
-
cursor: pointer; }
|
26 |
-
|
27 |
-
a:focus {
|
28 |
-
outline: none; }
|
29 |
-
|
30 |
-
img,
|
31 |
-
object,
|
32 |
-
embed {
|
33 |
-
max-width: 100%;
|
34 |
-
height: auto; }
|
35 |
-
|
36 |
-
object,
|
37 |
-
embed {
|
38 |
-
height: 100%; }
|
39 |
-
|
40 |
-
img {
|
41 |
-
-ms-interpolation-mode: bicubic; }
|
42 |
-
|
43 |
-
#map_canvas img,
|
44 |
-
#map_canvas embed,
|
45 |
-
#map_canvas object,
|
46 |
-
.map_canvas img,
|
47 |
-
.map_canvas embed,
|
48 |
-
.map_canvas object {
|
49 |
-
max-width: none !important; }
|
50 |
-
|
51 |
-
.left {
|
52 |
-
float: left !important; }
|
53 |
-
|
54 |
-
.right {
|
55 |
-
float: right !important; }
|
56 |
-
|
57 |
-
.text-left {
|
58 |
-
text-align: left !important; }
|
59 |
-
|
60 |
-
.text-right {
|
61 |
-
text-align: right !important; }
|
62 |
-
|
63 |
-
.text-center {
|
64 |
-
text-align: center !important; }
|
65 |
-
|
66 |
-
.text-justify {
|
67 |
-
text-align: justify !important; }
|
68 |
-
|
69 |
-
.hide {
|
70 |
-
display: none; }
|
71 |
-
|
72 |
-
.antialiased {
|
73 |
-
-webkit-font-smoothing: antialiased; }
|
74 |
-
|
75 |
-
img {
|
76 |
-
display: inline-block;
|
77 |
-
vertical-align: middle; }
|
78 |
-
|
79 |
-
textarea {
|
80 |
-
height: auto;
|
81 |
-
min-height: 50px; }
|
82 |
-
|
83 |
-
select {
|
84 |
-
width: 100%; }
|
85 |
-
|
86 |
-
/* Grid HTML Classes */
|
87 |
-
.row {
|
88 |
-
width: 100%;
|
89 |
-
margin-left: auto;
|
90 |
-
margin-right: auto;
|
91 |
-
margin-top: 0;
|
92 |
-
margin-bottom: 0;
|
93 |
-
max-width: 62.5em;
|
94 |
-
*zoom: 1; }
|
95 |
-
.row:before, .row:after {
|
96 |
-
content: " ";
|
97 |
-
display: table; }
|
98 |
-
.row:after {
|
99 |
-
clear: both; }
|
100 |
-
.row.collapse .column,
|
101 |
-
.row.collapse .columns {
|
102 |
-
position: relative;
|
103 |
-
padding-left: 0;
|
104 |
-
padding-right: 0;
|
105 |
-
float: left; }
|
106 |
-
.row .row {
|
107 |
-
width: auto;
|
108 |
-
margin-left: -0.9375em;
|
109 |
-
margin-right: -0.9375em;
|
110 |
-
margin-top: 0;
|
111 |
-
margin-bottom: 0;
|
112 |
-
max-width: none;
|
113 |
-
*zoom: 1; }
|
114 |
-
.row .row:before, .row .row:after {
|
115 |
-
content: " ";
|
116 |
-
display: table; }
|
117 |
-
.row .row:after {
|
118 |
-
clear: both; }
|
119 |
-
.row .row.collapse {
|
120 |
-
width: auto;
|
121 |
-
margin: 0;
|
122 |
-
max-width: none;
|
123 |
-
*zoom: 1; }
|
124 |
-
.row .row.collapse:before, .row .row.collapse:after {
|
125 |
-
content: " ";
|
126 |
-
display: table; }
|
127 |
-
.row .row.collapse:after {
|
128 |
-
clear: both; }
|
129 |
-
|
130 |
-
.column,
|
131 |
-
.columns {
|
132 |
-
position: relative;
|
133 |
-
padding-left: 0.9375em;
|
134 |
-
padding-right: 0.9375em;
|
135 |
-
width: 100%;
|
136 |
-
float: left; }
|
137 |
-
|
138 |
-
@media only screen {
|
139 |
-
.column,
|
140 |
-
.columns {
|
141 |
-
position: relative;
|
142 |
-
padding-left: 0.9375em;
|
143 |
-
padding-right: 0.9375em;
|
144 |
-
float: left; }
|
145 |
-
|
146 |
-
.small-1 {
|
147 |
-
position: relative;
|
148 |
-
width: 8.33333%; }
|
149 |
-
|
150 |
-
.small-2 {
|
151 |
-
position: relative;
|
152 |
-
width: 16.66667%; }
|
153 |
-
|
154 |
-
.small-3 {
|
155 |
-
position: relative;
|
156 |
-
width: 25%; }
|
157 |
-
|
158 |
-
.small-4 {
|
159 |
-
position: relative;
|
160 |
-
width: 33.33333%; }
|
161 |
-
|
162 |
-
.small-5 {
|
163 |
-
position: relative;
|
164 |
-
width: 41.66667%; }
|
165 |
-
|
166 |
-
.small-6 {
|
167 |
-
position: relative;
|
168 |
-
width: 50%; }
|
169 |
-
|
170 |
-
.small-7 {
|
171 |
-
position: relative;
|
172 |
-
width: 58.33333%; }
|
173 |
-
|
174 |
-
.small-8 {
|
175 |
-
position: relative;
|
176 |
-
width: 66.66667%; }
|
177 |
-
|
178 |
-
.small-9 {
|
179 |
-
position: relative;
|
180 |
-
width: 75%; }
|
181 |
-
|
182 |
-
.small-10 {
|
183 |
-
position: relative;
|
184 |
-
width: 83.33333%; }
|
185 |
-
|
186 |
-
.small-11 {
|
187 |
-
position: relative;
|
188 |
-
width: 91.66667%; }
|
189 |
-
|
190 |
-
.small-12 {
|
191 |
-
position: relative;
|
192 |
-
width: 100%; }
|
193 |
-
|
194 |
-
.small-offset-0 {
|
195 |
-
position: relative;
|
196 |
-
margin-left: 0%; }
|
197 |
-
|
198 |
-
.small-offset-1 {
|
199 |
-
position: relative;
|
200 |
-
margin-left: 8.33333%; }
|
201 |
-
|
202 |
-
.small-offset-2 {
|
203 |
-
position: relative;
|
204 |
-
margin-left: 16.66667%; }
|
205 |
-
|
206 |
-
.small-offset-3 {
|
207 |
-
position: relative;
|
208 |
-
margin-left: 25%; }
|
209 |
-
|
210 |
-
.small-offset-4 {
|
211 |
-
position: relative;
|
212 |
-
margin-left: 33.33333%; }
|
213 |
-
|
214 |
-
.small-offset-5 {
|
215 |
-
position: relative;
|
216 |
-
margin-left: 41.66667%; }
|
217 |
-
|
218 |
-
.small-offset-6 {
|
219 |
-
position: relative;
|
220 |
-
margin-left: 50%; }
|
221 |
-
|
222 |
-
.small-offset-7 {
|
223 |
-
position: relative;
|
224 |
-
margin-left: 58.33333%; }
|
225 |
-
|
226 |
-
.small-offset-8 {
|
227 |
-
position: relative;
|
228 |
-
margin-left: 66.66667%; }
|
229 |
-
|
230 |
-
.small-offset-9 {
|
231 |
-
position: relative;
|
232 |
-
margin-left: 75%; }
|
233 |
-
|
234 |
-
.small-offset-10 {
|
235 |
-
position: relative;
|
236 |
-
margin-left: 83.33333%; }
|
237 |
-
|
238 |
-
[class*="column"] + [class*="column"]:last-child {
|
239 |
-
float: right; }
|
240 |
-
|
241 |
-
[class*="column"] + [class*="column"].end {
|
242 |
-
float: left; }
|
243 |
-
|
244 |
-
.column.small-centered,
|
245 |
-
.columns.small-centered {
|
246 |
-
position: relative;
|
247 |
-
margin-left: auto;
|
248 |
-
margin-right: auto;
|
249 |
-
float: none !important; } }
|
250 |
-
/* Styles for screens that are atleast 768px; */
|
251 |
-
@media only screen and (min-width: 768px) {
|
252 |
-
.large-1 {
|
253 |
-
position: relative;
|
254 |
-
width: 8.33333%; }
|
255 |
-
|
256 |
-
.large-2 {
|
257 |
-
position: relative;
|
258 |
-
width: 16.66667%; }
|
259 |
-
|
260 |
-
.large-3 {
|
261 |
-
position: relative;
|
262 |
-
width: 25%; }
|
263 |
-
|
264 |
-
.large-4 {
|
265 |
-
position: relative;
|
266 |
-
width: 33.33333%; }
|
267 |
-
|
268 |
-
.large-5 {
|
269 |
-
position: relative;
|
270 |
-
width: 41.66667%; }
|
271 |
-
|
272 |
-
.large-6 {
|
273 |
-
position: relative;
|
274 |
-
width: 50%; }
|
275 |
-
|
276 |
-
.large-7 {
|
277 |
-
position: relative;
|
278 |
-
width: 58.33333%; }
|
279 |
-
|
280 |
-
.large-8 {
|
281 |
-
position: relative;
|
282 |
-
width: 66.66667%; }
|
283 |
-
|
284 |
-
.large-9 {
|
285 |
-
position: relative;
|
286 |
-
width: 75%; }
|
287 |
-
|
288 |
-
.large-10 {
|
289 |
-
position: relative;
|
290 |
-
width: 83.33333%; }
|
291 |
-
|
292 |
-
.large-11 {
|
293 |
-
position: relative;
|
294 |
-
width: 91.66667%; }
|
295 |
-
|
296 |
-
.large-12 {
|
297 |
-
position: relative;
|
298 |
-
width: 100%; }
|
299 |
-
|
300 |
-
.row .large-offset-0 {
|
301 |
-
position: relative;
|
302 |
-
margin-left: 0%; }
|
303 |
-
|
304 |
-
.row .large-offset-1 {
|
305 |
-
position: relative;
|
306 |
-
margin-left: 8.33333%; }
|
307 |
-
|
308 |
-
.row .large-offset-2 {
|
309 |
-
position: relative;
|
310 |
-
margin-left: 16.66667%; }
|
311 |
-
|
312 |
-
.row .large-offset-3 {
|
313 |
-
position: relative;
|
314 |
-
margin-left: 25%; }
|
315 |
-
|
316 |
-
.row .large-offset-4 {
|
317 |
-
position: relative;
|
318 |
-
margin-left: 33.33333%; }
|
319 |
-
|
320 |
-
.row .large-offset-5 {
|
321 |
-
position: relative;
|
322 |
-
margin-left: 41.66667%; }
|
323 |
-
|
324 |
-
.row .large-offset-6 {
|
325 |
-
position: relative;
|
326 |
-
margin-left: 50%; }
|
327 |
-
|
328 |
-
.row .large-offset-7 {
|
329 |
-
position: relative;
|
330 |
-
margin-left: 58.33333%; }
|
331 |
-
|
332 |
-
.row .large-offset-8 {
|
333 |
-
position: relative;
|
334 |
-
margin-left: 66.66667%; }
|
335 |
-
|
336 |
-
.row .large-offset-9 {
|
337 |
-
position: relative;
|
338 |
-
margin-left: 75%; }
|
339 |
-
|
340 |
-
.row .large-offset-10 {
|
341 |
-
position: relative;
|
342 |
-
margin-left: 83.33333%; }
|
343 |
-
|
344 |
-
.row .large-offset-11 {
|
345 |
-
position: relative;
|
346 |
-
margin-left: 91.66667%; }
|
347 |
-
|
348 |
-
.push-1 {
|
349 |
-
position: relative;
|
350 |
-
left: 8.33333%;
|
351 |
-
right: auto; }
|
352 |
-
|
353 |
-
.pull-1 {
|
354 |
-
position: relative;
|
355 |
-
right: 8.33333%;
|
356 |
-
left: auto; }
|
357 |
-
|
358 |
-
.push-2 {
|
359 |
-
position: relative;
|
360 |
-
left: 16.66667%;
|
361 |
-
right: auto; }
|
362 |
-
|
363 |
-
.pull-2 {
|
364 |
-
position: relative;
|
365 |
-
right: 16.66667%;
|
366 |
-
left: auto; }
|
367 |
-
|
368 |
-
.push-3 {
|
369 |
-
position: relative;
|
370 |
-
left: 25%;
|
371 |
-
right: auto; }
|
372 |
-
|
373 |
-
.pull-3 {
|
374 |
-
position: relative;
|
375 |
-
right: 25%;
|
376 |
-
left: auto; }
|
377 |
-
|
378 |
-
.push-4 {
|
379 |
-
position: relative;
|
380 |
-
left: 33.33333%;
|
381 |
-
right: auto; }
|
382 |
-
|
383 |
-
.pull-4 {
|
384 |
-
position: relative;
|
385 |
-
right: 33.33333%;
|
386 |
-
left: auto; }
|
387 |
-
|
388 |
-
.push-5 {
|
389 |
-
position: relative;
|
390 |
-
left: 41.66667%;
|
391 |
-
right: auto; }
|
392 |
-
|
393 |
-
.pull-5 {
|
394 |
-
position: relative;
|
395 |
-
right: 41.66667%;
|
396 |
-
left: auto; }
|
397 |
-
|
398 |
-
.push-6 {
|
399 |
-
position: relative;
|
400 |
-
left: 50%;
|
401 |
-
right: auto; }
|
402 |
-
|
403 |
-
.pull-6 {
|
404 |
-
position: relative;
|
405 |
-
right: 50%;
|
406 |
-
left: auto; }
|
407 |
-
|
408 |
-
.push-7 {
|
409 |
-
position: relative;
|
410 |
-
left: 58.33333%;
|
411 |
-
right: auto; }
|
412 |
-
|
413 |
-
.pull-7 {
|
414 |
-
position: relative;
|
415 |
-
right: 58.33333%;
|
416 |
-
left: auto; }
|
417 |
-
|
418 |
-
.push-8 {
|
419 |
-
position: relative;
|
420 |
-
left: 66.66667%;
|
421 |
-
right: auto; }
|
422 |
-
|
423 |
-
.pull-8 {
|
424 |
-
position: relative;
|
425 |
-
right: 66.66667%;
|
426 |
-
left: auto; }
|
427 |
-
|
428 |
-
.push-9 {
|
429 |
-
position: relative;
|
430 |
-
left: 75%;
|
431 |
-
right: auto; }
|
432 |
-
|
433 |
-
.pull-9 {
|
434 |
-
position: relative;
|
435 |
-
right: 75%;
|
436 |
-
left: auto; }
|
437 |
-
|
438 |
-
.push-10 {
|
439 |
-
position: relative;
|
440 |
-
left: 83.33333%;
|
441 |
-
right: auto; }
|
442 |
-
|
443 |
-
.pull-10 {
|
444 |
-
position: relative;
|
445 |
-
right: 83.33333%;
|
446 |
-
left: auto; }
|
447 |
-
|
448 |
-
.push-11 {
|
449 |
-
position: relative;
|
450 |
-
left: 91.66667%;
|
451 |
-
right: auto; }
|
452 |
-
|
453 |
-
.pull-11 {
|
454 |
-
position: relative;
|
455 |
-
right: 91.66667%;
|
456 |
-
left: auto; }
|
457 |
-
|
458 |
-
.column.large-centered,
|
459 |
-
.columns.large-centered {
|
460 |
-
position: relative;
|
461 |
-
margin-left: auto;
|
462 |
-
margin-right: auto;
|
463 |
-
float: none !important; }
|
464 |
-
|
465 |
-
.column.large-uncentered,
|
466 |
-
.columns.large-uncentered {
|
467 |
-
margin-left: 0;
|
468 |
-
margin-right: 0;
|
469 |
-
float: left !important; }
|
470 |
-
|
471 |
-
.column.large-uncentered.opposite,
|
472 |
-
.columns.large-uncentered.opposite {
|
473 |
-
float: right !important; } }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inc/core.php
CHANGED
@@ -68,7 +68,6 @@ function frontend_scripts() {
|
|
68 |
wp_enqueue_style('bootstrap', plugins_url( 'assets/bootstrap/css/bootstrap.min.css',MAGEE_SHORTCODES_PATH ), '', '3.3.4', false );
|
69 |
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
70 |
|
71 |
-
wp_enqueue_style('foundation', plugins_url( 'assets/css/foundation.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
72 |
wp_enqueue_style('twentytwenty', plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
73 |
|
74 |
wp_enqueue_style('animate', plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
68 |
wp_enqueue_style('bootstrap', plugins_url( 'assets/bootstrap/css/bootstrap.min.css',MAGEE_SHORTCODES_PATH ), '', '3.3.4', false );
|
69 |
wp_enqueue_style('prettyPhoto', plugins_url( 'assets/css/prettyPhoto.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
70 |
|
|
|
71 |
wp_enqueue_style('twentytwenty', plugins_url( 'assets/css/twentytwenty.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
72 |
|
73 |
wp_enqueue_style('animate', plugins_url( 'assets/css/animate.css',MAGEE_SHORTCODES_PATH ), '', '', false );
|
languages/magee-shortcodes.mo
CHANGED
Binary file
|
languages/magee-shortcodes.pot
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2016-03-
|
6 |
-
"PO-Revision-Date: 2016-03-
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
@@ -17,39 +17,39 @@ msgstr ""
|
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: inc/core.php:
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: inc/core.php:
|
25 |
msgid "Shortcodes List"
|
26 |
msgstr ""
|
27 |
|
28 |
-
#: inc/core.php:
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
-
#: inc/core.php:
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
-
#: inc/core.php:
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
-
#: inc/core.php:
|
41 |
#: inc/options.php:913 inc/options.php:958 inc/options.php:3306
|
42 |
#: inc/options.php:3389 inc/options.php:3469
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
-
#: inc/core.php:
|
47 |
#: inc/options.php:964 inc/options.php:2403 inc/options.php:3312
|
48 |
#: inc/options.php:3395 inc/options.php:3475
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: inc/core.php:
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Magee Shortcodes\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2016-03-07 09:10+0800\n"
|
6 |
+
"PO-Revision-Date: 2016-03-07 09:10+0800\n"
|
7 |
"Last-Translator: shijun quan <support@mageewp.com>\n"
|
8 |
"Language-Team: MageeWP\n"
|
9 |
"Language: en_US\n"
|
17 |
"Plural-Forms: nplurals=1; plural=0;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: inc/core.php:97 inc/core.php:100
|
21 |
msgid "Magee Shortcodes"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: inc/core.php:251
|
25 |
msgid "Shortcodes List"
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: inc/core.php:251
|
29 |
msgid "Insert shortcode"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: inc/core.php:514
|
33 |
msgid "Upload"
|
34 |
msgstr ""
|
35 |
|
36 |
+
#: inc/core.php:531
|
37 |
msgid "Attach Images to Gallery"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: inc/core.php:595 inc/options.php:672 inc/options.php:799
|
41 |
#: inc/options.php:913 inc/options.php:958 inc/options.php:3306
|
42 |
#: inc/options.php:3389 inc/options.php:3469
|
43 |
msgid "Width"
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: inc/core.php:599 inc/options.php:805 inc/options.php:919
|
47 |
#: inc/options.php:964 inc/options.php:2403 inc/options.php:3312
|
48 |
#: inc/options.php:3395 inc/options.php:3475
|
49 |
msgid "Height"
|
50 |
msgstr ""
|
51 |
|
52 |
+
#: inc/core.php:837
|
53 |
msgid "Select a slider"
|
54 |
msgstr ""
|
55 |
|
readme.txt
CHANGED
@@ -68,6 +68,9 @@ Activate plugin at "Plugins" administration page.
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.4.0 - 04/03/2016 =
|
72 |
* Added: New shortcode -- Quote
|
73 |
* Added: New shortcode -- Pullquote
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.4.1 - 07/03/2016 =
|
72 |
+
* Fix - Fixed CSS issues
|
73 |
+
|
74 |
= 1.4.0 - 04/03/2016 =
|
75 |
* Added: New shortcode -- Quote
|
76 |
* Added: New shortcode -- Pullquote
|