Skip to content

Commit

Permalink
Merge pull request #10 from siteorigin/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
gregpriday committed Dec 16, 2014
2 parents 747db08 + fc8f287 commit f3615ac
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions inc/styles.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function siteorigin_panels_render_styles_fields( $section, $before = '', $after

// Check if we need a default group
foreach($fields as $field_id => $field) {
if( empty($field['group']) ) {
if( empty($field['group']) || $field['group'] == 'theme' ) {
if( empty($groups['theme']) ) {
$groups['theme'] = array(
'name' => __('Theme', 'siteorigin-panels'),
Expand Down Expand Up @@ -172,7 +172,7 @@ function siteorigin_panels_render_style_field( $field, $current, $field_id ){
break;

case 'checkbox' :
$current = boolval($current);
$current = (bool) $current;
?>
<label class="so-checkbox-label">
<input type="checkbox" name="<?php echo esc_attr($field_name) ?>" <?php checked($current) ?> />
Expand Down
7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Tags: page builder, responsive, widget, widgets, builder, page, admin, gallery, content, cms, pages, post, css, layout, grid
Requires at least: 3.7
Tested up to: 4.1
Stable tag: 2.0.1
Stable tag: 2.0.2
License: GPLv3
License URI: http://www.gnu.org/licenses/gpl.html
Donate link: http://siteorigin.com/page-builder/#donate
Expand All @@ -14,7 +14,7 @@ Build responsive page layouts using the widgets you know and love using this sim

[vimeo https://vimeo.com/114529361]

Page Builder by SiteOrigin is the most popular page creation plugin for WordPress. It makes it easy to create responsive column based content, using the widgets you know and love. Your content will accurately adapt to all mobile devices, ensuring your site is mobile-ready. Read more on [SiteOrigin](https://siteorigin.com/thread/).
Page Builder by SiteOrigin is the most popular page creation plugin for WordPress. It makes it easy to create responsive column based content, using the widgets you know and love. Your content will accurately adapt to all mobile devices, ensuring your site is mobile-ready. Read more on [SiteOrigin](https://siteorigin.com/page-builder/).

We've created an intuitive interface that looks just like WordPress itself. It's easy to learn, so you'll be building beautiful, responsive content in no time.

Expand Down Expand Up @@ -89,6 +89,9 @@ I've tried to ensure that Page Builder is compatible with most plugin widgets. I

== Changelog ==

= 2.0.2 =
* Fixed fatal error in validation for PHP < 5.5

= 2.0.1 =
* Fixed issue with preview causing content loss in standard editor.
* Fixed issue with Black Studio TinyMCE
Expand Down
4 changes: 2 additions & 2 deletions siteorigin-panels.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
Plugin Name: Page Builder by SiteOrigin
Plugin URI: http://siteorigin.com/page-builder/
Description: A drag and drop, responsive page builder that simplifies building your website.
Version: 2.0.1
Version: 2.0.2
Author: SiteOrigin
Author URI: http://siteorigin.com
License: GPL3
License URI: http://www.gnu.org/licenses/gpl.html
Donate link: http://siteorigin.com/page-builder/#donate
*/

define('SITEORIGIN_PANELS_VERSION', '2.0.1');
define('SITEORIGIN_PANELS_VERSION', '2.0.2');
define('SITEORIGIN_PANELS_BASE_FILE', __FILE__);

require_once plugin_dir_path(__FILE__) . 'widgets/basic.php';
Expand Down

0 comments on commit f3615ac

Please sign in to comment.