PluginProbe
Easy Bootstrap Shortcode / 3.7
Easy Bootstrap Shortcode v3.7
trunk 2.4.0 2.5 3.4 3.5 3.6 3.7 4.0.0 4.4 4.5 4.5.4 5.0.0 5.0.1 5.0.2
easy-bootstrap-shortcodes / README.txt

README.txt in Easy Bootstrap Shortcode 3.7, at README.txt

309 lines 9.7 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 === Easy Bootstrap Shortcode ===
2 Contributors: oscitas
3 Link: http://www.osCitasthemes.com
4 Tags: Wordpress Shortcodes, Wordpress Bootstrap, Wordpress Bootstrap Shortcode, Bootstrap, Responsive pages, Editor plugin, Bootstrap Shortcode, TinyMCE
5 Requires at least: 3.0
6 Tested up to: 3.6.1
7 Stable tag: 3.7
8 License: GPLv2 or later
9 License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
11 Easy Bootstrap Shortcode enable you to add bootstrap 3.0 styles in your pages, post and custom post in simplest manner.
12
13 == Description ==
14
15 Easy Bootstrap Shortcode is bootstrap 3.0 compatible plugin which add icons to wordpress editor (tinyMCE Shortcode Buttons) and one can add bootstrap style to their website just by clicking on tinyMCE editor icon.
16
17 http://www.youtube.com/watch?v=8T0IC1PsdTw
18
19 New column hide functionality
20 http://www.youtube.com/watch?v=eSrFVAro8Nc
21
22 [Easy Bootstrap Shortcode Demo](http://demo.oscitasthemes.com/demos/easy-bootstrap-shortcode/)
23
24 [Easy Bootstrap Shortcode Documentation](http://oscitasthemes.com/documentation/easy-bootstrap-shortcodes/)
25
26
27
28 [PRO VERSION with exciting Premium SHORTCODES, Easy Bootstrap Shortcode Pro](http://oscitasthemes.com/products/easy-bootstrap-shortcodes-pro/)
29
30
31
32 Looking for parallax slider, check this [Easy Wordpress Parallax Slider](http://wordpress.org/plugins/easy-wp-parallax-slider/)
33
34 Want to implement responsive tabs to your pages, check this [Easy Responsive Tabs](http://wordpress.org/plugins/easy-responsive-tabs/)
35
36 Follow us [@Twitter](https://twitter.com/oscitasthemes), [@facebook](https://www.facebook.com/oscitasthemes), [@google+](https://plus.google.com/109122908951553852347/posts)
37
38 = For best results use with bootstrap 3.0 responsive theme =
39
40 = Features: =
41
42 * simplest bootstrap style plugin ever.
43 * IE 6+ compatible
44 * Bootstrap 3.0 compatible.
45 * No need to paste shortcode in editor.
46 * Add icons to editor.
47 * Shortcode added to editor by clicking on icon.
48 * Customize grid size on small, extra-small and medium sized screens.
49 * More control over the css, you can add your own custom class to shortcodes.
50 * Now you can use js file from CDN or disable the plugin js.
51 * You can use your own css file by disabling the plugin css, which gives you more flexibility over styling.
52
53
54
55 Easy Bootstrap Shortcode provides following styles
56
57 = Grid Columns =
58 1. Add multiple columns in a row
59 2. Choose desired column width
60 3. Add offset to columns
61 4. Provide facility to customize a column according to medium, small and extra-small sized screens.
62 5. Responsive columns
63
64 = Shortcodes for =
65
66 1. Accordion (Collapsible Menus)
67 2. Tabs
68 3. List
69 4. Notification
70 5. Popover
71 6. Tooltip
72 7. Panel
73 8. Progress Bars with labels
74 9. Icons
75 10. Labels
76 11. Buttons
77 12. Icon Heading
78 13. Tables
79 14. Responsive Image
80 15. Image Effects (Round, Thumbnail, Square)
81 16. Well
82 17. Button Dropdown
83 18. Button Group
84 19. Button Group Toolbar
85 20. Description List
86
87
88 = How to embed this plugin to your theme =
89
90 We have provided few new settings so that anybody can give inbuilt compatibility with our plugin. Such as if you are creating theme/plugin and want to use our plugin, to give your users more flexibility to add responsive content, however you like to use your own custom css/js files. So now you can do this.
91
92 Now we are supporting filters so that you can easily give inbuilt support of this plugin in your themes/plugins
93
94 You can Write these filter into your theme's functions.php to make plugin compatible to your theme, You can use any of these filters as per your requirements.
95
96
97 Filter for Custom options
98
99 `function apply_ebs_custom_option( $prevent ) {
100 return true;
101 }
102 add_filter( 'ebs_custom_option', 'apply_ebs_custom_option' );`
103
104
105
106
107 Filter for bootstrap_admin.css
108
109 `function apply_ebs_custom_bootstrap_admin_css( $prevent ) {
110 return true;
111 }
112 add_filter( 'ebs_custom_bootstrap_admin_css', 'apply_ebs_custom_bootstrap_admin_css' );`
113
114
115
116 Filter for bootstrap.min.js url this filter is only applicable if you selected js inclusion from plugin in EBS Settings
117
118
119 `function apply_ebs_bootstrap_js_url( $url ) {
120 $ebs_js_url='';// write your desired bootstrap.min.js url here
121 return $ebs_js_url;
122 }
123 add_filter( 'ebs_bootstrap_js_url', 'apply_ebs_bootstrap_js_url' );`
124
125
126
127 Filter for bootstrap.min.js CDN path this filter is only applicable if you selected js inclusion from CDN in EBS Settings
128
129 `function apply_ebs_bootstrap_js_cdn( $url ) {
130 $ebs_cdn_url='';// write your bootstrap.min.js cdn path here
131 return $ebs_cdn_url;
132 }
133 add_filter( 'ebs_bootstrap_js_cdn', 'apply_ebs_bootstrap_js_cdn' );`
134
135
136 Filter for bootstrap.min.css urlthis filter is only applicable if you selected css inclusion from plugin in EBS Settings
137
138 `function apply_ebs_bootstrap_css_url( $url ) {
139 $ebs_css_url='';// write your bootstrap.min.css url here
140 return $ebs_css_url;
141 }
142 add_filter( 'ebs_bootstrap_css_url', 'apply_ebs_bootstrap_css_url' );`
143
144
145
146 Filter for bootstrap-icon.min.css url this filter is only applicable if you selected css inclusion from plugin or theme in EBS Settings
147
148
149 `function apply_ebs_bootstrap_icon_css_url( $url ) {
150 $ebs_icon_url='';// write your bootstrap-icon.min.css url here
151 return $ebs_icon_url;
152 }
153 add_filter( 'ebs_bootstrap_icon_css_url', 'apply_ebs_bootstrap_icon_css_url' );`
154
155
156 We have removed the support of the following options
157
158
159 <blockquote>After adding this code user will not be able to change the files location for EBS plugin as user can't see the EBS Settings link of LHS menu in admin panel</blockquote>
160
161 `update_option( 'EBS_CUSTOM_OPTION', 1 );
162 update_option( 'EBS_BOOTSTRAP_JS_LOCATION', 2 );
163 update_option( 'EBS_BOOTSTRAP_CSS_LOCATION', 2 );`
164
165 To give use the custom css for icons
166 `update_option( 'EBS_CUSTOM_BOOTSTRAP_ICON_CSS', 1 );`
167
168 And to give use the custom css for admin
169 `update_option( 'EBS_CUSTOM_BOOTSTRAP_ADMIN_CSS', 1 );`
170
171
172 If you'd like to contribute to this plugin, you can find it [hosted on GitHub](https://github.com/oscitasthemes/Easy-Bootstrap-Shortcode).
173
174
175
176
177 == Installation ==
178
179 1.Upload:
180 Unzip easy_bootstrap_shortcode.zip file, and upload all files to your blog folder: <root>/wp-content/plugins/easy_bootstrap_shortcode
181
182 2.Activate:
183 In the admin panel, find Plugins->Plugins,click it, active Easy Bootstrap Shortcode.
184
185 3.Use:
186 Now you can see the few new buttons in the TinyMCE Editor in post and pages, use these buttons to create great responsive pages/posts content.
187
188 It's that simple ... just what the name suggests
189
190 == Screenshots ==
191
192 1. how it looks after installation
193 2. different shortcode options this plugin provides
194 3. columns shortcode
195 4. table shortcode
196 5. You can create this kind of page content very easily.
197 6. mobile view
198 7. few samples which can be created using this plugin
199 8. sample 2 I
200 9. sample 2 II
201 10. sample 3
202 11. sample 4 I
203 12. sample 4 II
204
205
206 == Changelog ==
207
208
209 = 2.4.0 =
210
211 * [Update] Updated to Twitter Bootstrap 3.0.3.
212 * [Update] Choose custom color option for icon in Icons Shortcode.
213 * [Update] Choose font size option for icon in Icons Shortcode.
214 * [Update] Choose custom color option for icon in Icon Heading Shortcode.
215 * [Update] Choose custom color option for icon in Button Shortcode.
216
217 = 2.3.6 =
218
219 * [fixed] Button Group, Button Group Toolbar, Description List icon issues fixed.
220
221 = 2.3.5 =
222
223 * [update] Banner of Easy Bootstrap Shortcodes PRO Version in settings page.
224
225
226 = 2.3.4 =
227
228 * [update] Implemented filter to add buttons to tinyMCE, Credit goes to Nikoya.
229 * [Fixed] Added class to Columns shortcode popup.
230 * [Fixed] Resolved issue 'Gravity Form not validating within plugin column shortcode'
231
232 = 2.3.3 =
233
234 * [update] Included respond.js to support IE 6,7,8. Of course, you can choose either you want to include it or not from settings page.
235 * [update] New Shortcode to create Button Group
236 * [update] New Shortcode to create Button Group Tool Bar
237 * [update] New Shortcode to create Description List
238 * [update] Yes, now Progress Bar shortcode supports Label too.
239
240 = 2.3.2 =
241
242
243 * [fixed] Fixed wpcolumns add class issues.
244
245
246 = 2.3.1 =
247
248
249 * [update] Clear left functionality added in responsive columns. Credit goes to Nikoya.
250 * [update] Added class to dialog box. Credit goes to Nikoya.
251 * [update] Bootstrap css and js updated to v3.0.2
252 * [fixed] Undefined index issue in toggles.
253
254
255
256 = 2.3.0 =
257
258
259 * [Update] now supports filters, so that you can easily give inbuilt support to this plugin to create responsive themes (Suggested by Swashata).
260 * [Update] Implemented support of "in" class for toggles
261
262
263 = 2.2.5 =
264
265
266 * [fixed] bootstrap icon css in frontend issue resolved.
267 * [fixed] Column col-xx-12 issue resolved, now it will add col-xx-12 to columns
268
269
270 = 2.2.4 =
271
272
273 * [fixed] On plugin activation TinyMCE visual editor disappear issue resolved.
274
275
276 = 2.2.1 =
277
278
279 * [Update] Removed the extra table dependency to save the plugin settings
280 * [fixed] css file location settings issue.
281
282
283 = 2.2.0 =
284
285
286 * [Update] now you can set the visibility of columns or full row for different screen such as large, medium, small, ex-small
287
288
289 = 2.1.1 =
290
291
292 * [Update] now use min files for bootstrap js/css files and css files for admin
293 * [fixed] Button shortcode target(Open in new window) flag not working issue.
294 * [fixed] tabs issue
295
296
297 = 2.0.0 =
298
299 * [New] New shortcodes for labels, progressbar, image effect, responsive image, well, dropdown button, icons
300 * [New] Settings option to add bootstrap.js from CDN, disable plugin js/css file.
301 * [Update] More control over the css, you can add your own custom class to shortcodes.
302 * [Update] In columns shortcode now you can add different offsets for different columns for different screen sizes such as medium, small, ex-small.
303
304
305 = 1.1 =
306 * fixed columns alternate color issue in admin panel
307
308
309