Changeset 1997170
- Timestamp:
- 12/18/2018 11:16:57 AM (7 years ago)
- Location:
- basepress/trunk
- Files:
-
- 3 edited
-
basepress.php (modified) (2 diffs)
-
public/class-basepress-search.php (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
basepress/trunk/basepress.php
r1977295 r1997170 5 5 * Plug URI: http://www.8bitsinarow.com 6 6 * Description: The perfect Knowledge Base plugin for WordPress 7 * Version: 2.0. 17 * Version: 2.0.2 8 8 * Author: 8Bits in a row 9 9 * Author URI: http://www.8bitsinarow.com … … 73 73 * @var string 74 74 */ 75 public $ver = '2.0. 1' ;75 public $ver = '2.0.2' ; 76 76 /** 77 77 * Database version -
basepress/trunk/public/class-basepress-search.php
r1975463 r1997170 657 657 * @param $content 658 658 * @param $tag 659 * @return false|string|void 659 660 */ 660 661 public function do_shortcode( $atts, $content, $tag ) { … … 667 668 $width = isset( $atts['width'] ) ? ' style="max-width:' . $atts['width'] . '"' : ''; 668 669 670 ob_start(); 669 671 echo '<div class="bpress-search-shortcode"' . $width . '>'; 670 672 $this->render_searchbar( $product ); 671 673 echo '</div>'; 672 } 673 674 675 return ob_get_clean(); 676 } 677 678 return; 674 679 } 675 680 -
basepress/trunk/readme.txt
r1991032 r1997170 5 5 Requires at least: 4.5 6 6 Tested up to: 5.0 7 Stable tag: 2.0. 17 Stable tag: 2.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 140 140 == Changelog == 141 141 142 = 2.0.2 = 143 * Fixed search bar shortcode which made bar always appear at the top of the page 144 142 145 = 2.0.1 = 143 146 * Added option to order articles alphabetically
Note: See TracChangeset
for help on using the changeset viewer.