Releases: Rundiz-WP/bootstrap-basic
Releases · Rundiz-WP/bootstrap-basic
v1.3.4
v1.3.3
Fix
v1.3.2
- Deleted files that is no longer use. (html5shiv.js, html5shiv.min.js, respond.min.js, fix-bootstrap.css).
- Moved css, fonts, img, js into assets folder. Make file structure clean and related.
- Update PHP register common scripts/styles in one method.
- Add modern Bootstrap3 for alternative. ( Source code ). Use filter
bootstrap_basic_use_modern_bootstrapto set that modern or original will be use. Default is still use original Bootstrap 3.
Example code to use in your theme or plugin:add_filter('bootstrap_basic_use_modern_bootstrap', '__return_true');.
CSS not loaded?
If you create child theme and previously do something like this.
wp_dequeue_style('bootstrap-style');
wp_enqueue_style('bootstrap-3', trailingslashit(get_template_directory_uri()) . 'css/bootstrap.min.css');
wp_enqueue_style('my-theme-main-style', trailingslashit(get_stylesheet_directory_uri()) . 'assets/css/main.min.css', ['bootstrap-3']);You are doing it wrong and it will cause your theme breaks!
Replace with this.
// the commented out code below can be remove them entirely.
//wp_dequeue_style('bootstrap-style');
//wp_enqueue_style('bootstrap-3', trailingslashit(get_template_directory_uri()) . 'css/bootstrap.min.css');
wp_enqueue_style('my-theme-main-style', trailingslashit(get_stylesheet_directory_uri()) . 'assets/css/main.min.css', ['bootstrap-style']);v1.3.1
Fix
- Fix prevent call
the_widget()while certain widget is not registered.
v1.3.0
Update
- Remove Internet Explorer supported.
v1.2.6
Update
- Update style.css on these classes (
.screen-reader-text,.aligncenter).
v1.2.5
Add
- Add dropdown header supported in navbar.
Update
- Update BootstrapBasic help message.
v1.2.4
Update
Fix
- Fix "Warning: Missing singular placeholder" error.
- Fix missing active class on parent menu item that have child item active.
v1.2.3
Fix
- Fix incorrect check type scalar.
- Fix "Overriding WordPress globals is prohibited" error.
- Fix using
var_export().
v1.2.2
Fix
v1.2.1
Add
- Add more condition to check calendar widget block. (7cf5332)
- Add check function exists in inc/BootstrapBasicWp5.php. (07d62b6)
Remove
- Removed fixed Bootstrap CSS. (44c0061)
v1.2.0
Add
- Add legacy search widget to use on sidebar. (76c8708)
- Add CSS to override widget block calendar to its original style. (d4e0727)
Update
v1.1.7
Update
- Prevent PHP 8.1 non-string argument errors. (952cfee)
- Update
Tested up totomajor.minorversion only as suggested by theme check plugin. (b43a9aa)
v1.1.5
Fix
- Fix missing
wp_body_open()function.
v1.1.4
Fix
- Fix errors in PHP 8.0.
- Minor bugs fix.
- Now supported PHP 8.0.
v1.1.3
Fix
- Fix comment-reply does not enqueue. (8c596f6)
v1.1.2
Update
- Un-depreacated
wp_title(a345d63) - Update Bootstrap, Modernizr
v1.1.1
Update
- Update to Bootstrap 3.4.0.
- Update Modernizr.
Remove
- Removed old, outdated, unnecessary document.
v1.1
This release is for WordPress 5.0+. It is still support older version of WordPress.
Add
- Make better Gutenberg support.
- Add more help text.
- Add translators help message.
/* translators: xxx */ - Add translation template file (.POT).