diff --git a/README.md b/README.md index c15ccad..9fff6d7 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ WordPress plugin that provides shortcodes for easier use of the Bootstrap styles This plugin won't do anything if you don't have WordPress theme built with the [Bootstrap](http://getbootstrap.com/) framework. **This plugin does not include the Bootstrap framework**. -The plugin is tested to work with ```Bootstrap 3``` and ```WordPress 4.5``` and **requires PHP 5.3 or later**. +The plugin is tested to work with ```Bootstrap 3``` and ```WordPress 4.9+``` and **requires PHP 5.3 or later**. ## Shortcode Reference diff --git a/bootstrap-shortcodes.php b/bootstrap-shortcodes.php index 2cabb30..fbd08b1 100644 --- a/bootstrap-shortcodes.php +++ b/bootstrap-shortcodes.php @@ -3,7 +3,7 @@ Plugin Name: Bootstrap 3 Shortcodes Plugin URI: https://github.com/MWDelaney/bootstrap-shortcodes Description: The plugin adds a shortcodes for all Bootstrap 3 elements. -Version: 3.3.11 +Version: 3.3.12 Author: Michael W. Delaney, Filip Stefansson, and Simon Yeldon Author URI: License: MIT diff --git a/includes/bootstrap-shortcodes-help.php b/includes/bootstrap-shortcodes-help.php index c2bbee3..2ba7689 100755 --- a/includes/bootstrap-shortcodes-help.php +++ b/includes/bootstrap-shortcodes-help.php @@ -127,7 +127,7 @@ function bsajustamodal() { $html = str_replace('
', '
', $html); $html = str_replace('

', '

', $html); - + $html = preg_replace("/]+\>/i", "", $html); //Insert the HTML now that we're done editing it echo $html; diff --git a/readme.txt b/readme.txt index 2dcae8a..f2abe4b 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: FoolsRun, filipstefansson, nodley Tags: bootstrap, shortcode, shortcodes, responsive, grid Requires at least: 3.8 Tested up to: 4.9.4 -Stable tag: 3.3.11 +Stable tag: 3.3.12 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -72,6 +72,12 @@ No, we assume you are already working with a WordPress theme that includes the B == Changelog == += 3.3.12 = +* Remove images from help documentation which caused slowdown for some users + += 3.3.11 = +* Tested to work with WordPress 4.9+ + = 3.3.10 = * Tested to work with WordPress 4.6 * Fixed bug in [collapse] (thanks who all who reported it)