Rating: 5 stars
It’s fantastic, for text anyway.
I tried using the accordion or toggles with shortcodes of maps and forms. Without success unfortunatly. Maybe I did something wrong or it might be an idea for furthrt developement.
Kind regards:
Rolf
Rating: 5 stars
THIS IS FREAKING AWESOME!!! I COULD CRY MY EYES OUT BECAUSE THIS IS JUST THE RIGHT PLUGIN FOR ALL. THANK YOU. *hugs the plugin maker*
]]>Rating: 5 stars
I have tried other plugins to give my pages an attractive accordion method of displaying content. After trying three others, I found Simnon Shortcodes by Googing “best wordpress accordion plugins.” A the wpmudev.org website rated this as one of their top two. I tried it and love it. The only drawback I have found is that you have to run all of the text and shortcodes together. This makes editing after the fact like looking for a needle in a haystack.
]]>Rating: 5 stars
This is the best set of shortcodes that I found to use with my own themes. They are on par with the Elegant Themes shortcodes, but those are commercial.
]]>Rating: 5 stars
CODE IS POETRY, and every software has a “feel” to it.
At least for me.
I haven’t looked at the code of this plugin, and I haven’t explored every nook and cranny; yet I am very happy having found this plugin ??
]]>Rating: 5 stars
Ok, i installed your plugin with the twentytwelve theme and saw that when viewing it in a mobile resolution the columns skews accordingly and honestly this is not the expected behaviour (IMHO) so i found a solution, may be a not-so-clean one but it works pretty well.
For having the columns stacked when you are on mobile simply add these lines on the shortcodes.css file after line 90 and before /* Media */ :
* STACKABLE COLUMNS FOR TWENTY TWELVE */
@media only screen and (max-width:481px) {
body .simnor-shortcode-cols {
display: block;
overflow: hidden;
clear: both;
margin: 0 0 20px 0;
}
body .simnor-shortcode-col {
float: left;
display: block;
}
body .simnor-shortcode-col-inner {
margin: 0 15px 0 0;
}
body .simnor-shortcode-cols-half-half .simnor-shortcode-col-a,
body .simnor-shortcode-cols-half-half .simnor-shortcode-col-b { width: 100%; }
body .simnor-shortcode-cols-third-third-third .simnor-shortcode-col-a,
body .simnor-shortcode-cols-third-third-third .simnor-shortcode-col-b,
body .simnor-shortcode-cols-third-third-third .simnor-shortcode-col-c { width: 100%; }
body .simnor-shortcode-cols-twothirds-third .simnor-shortcode-col-a { width: 100%; }
body .simnor-shortcode-cols-twothirds-third .simnor-shortcode-col-b { width: 100%; }
body .simnor-shortcode-cols-third-twothirds .simnor-shortcode-col-a { width: 100%; }
body .simnor-shortcode-cols-third-twothirds .simnor-shortcode-col-b { width: 100%; }
body .simnor-shortcode-cols-quarter-quarter-quarter-quarter .simnor-shortcode-col-a,
body .simnor-shortcode-cols-quarter-quarter-quarter-quarter .simnor-shortcode-col-b,
body .simnor-shortcode-cols-quarter-quarter-quarter-quarter .simnor-shortcode-col-c,
body .simnor-shortcode-cols-quarter-quarter-quarter-quarter .simnor-shortcode-col-d { width: 100%; }
body .simnor-shortcode-cols-half-quarter-quarter .simnor-shortcode-col-a { width: 100%; }
body .simnor-shortcode-cols-half-quarter-quarter .simnor-shortcode-col-b,
body .simnor-shortcode-cols-half-quarter-quarter .simnor-shortcode-col-c { width: 100%; }
body .simnor-shortcode-cols-quarter-quarter-half .simnor-shortcode-col-a,
body .simnor-shortcode-cols-quarter-quarter-half .simnor-shortcode-col-b { width: 100%; }
body .simnor-shortcode-cols-quarter-quarter-half .simnor-shortcode-col-c { width: 100%; }
body .simnor-shortcode-cols-quarter-half-quarter .simnor-shortcode-col-a,
body .simnor-shortcode-cols-quarter-half-quarter .simnor-shortcode-col-c { width: 100%; }
body .simnor-shortcode-cols-quarter-half-quarter .simnor-shortcode-col-b { width: 100%; }
}
]]>