Version Description
Download this release
Release Info
Developer | kurudrive |
Plugin | Lightning Advanced Unit |
Version | 1.3.2 |
Comparing to | |
See all releases |
Code changes from version 1.3.1 to 1.3.2
- inc/navigation/navigation.php +1 -1
- inc/sidebar-position.php +1 -1
- lightning_advanced_unit.php +1 -2
inc/navigation/navigation.php
CHANGED
@@ -57,7 +57,7 @@ function ltg_adv_insert_header_before_html(){
|
|
57 |
echo '<section id="navSection" class="navSection">';
|
58 |
echo get_search_form();
|
59 |
echo '</section>';
|
60 |
-
echo '<div id="wrap">';
|
61 |
}
|
62 |
}
|
63 |
|
57 |
echo '<section id="navSection" class="navSection">';
|
58 |
echo get_search_form();
|
59 |
echo '</section>';
|
60 |
+
echo '<div id="wrap" class="wrap">';
|
61 |
}
|
62 |
}
|
63 |
|
inc/sidebar-position.php
CHANGED
@@ -30,7 +30,7 @@ add_action( 'wp_head', 'lightning_adv_unit_sidebar_position_custom', 2 );
|
|
30 |
function lightning_adv_unit_sidebar_position_custom(){
|
31 |
$options = get_option( 'lightning_theme_options' );
|
32 |
if ( isset($options['sidebar_position'] ) && $options['sidebar_position'] === "left" ){
|
33 |
-
$custom_css = "@media (min-width: 992px) { .subSection { float:left;margin-left:0; } .mainSection { float:right; } }";
|
34 |
wp_add_inline_style( 'lightning-design-style', $custom_css );
|
35 |
}
|
36 |
}
|
30 |
function lightning_adv_unit_sidebar_position_custom(){
|
31 |
$options = get_option( 'lightning_theme_options' );
|
32 |
if ( isset($options['sidebar_position'] ) && $options['sidebar_position'] === "left" ){
|
33 |
+
$custom_css = "@media (min-width: 992px) { .siteContent .subSection { float:left;margin-left:0; } .siteContent .mainSection { float:right; } }";
|
34 |
wp_add_inline_style( 'lightning-design-style', $custom_css );
|
35 |
}
|
36 |
}
|
lightning_advanced_unit.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: Lightning Advanced Unit
|
4 |
* Plugin URI: http://lightning.vektor-inc.co.jp/
|
5 |
-
* Version: 1.3.
|
6 |
* Author: Vektor,Inc.
|
7 |
* Author URI: http://www.vektor-inc.co.jp
|
8 |
* Description: This is a plug-ins that extend the functionality of the theme "Lightning".
|
@@ -24,7 +24,6 @@ require_once( LIGHTNING_ADVANCED_DIR . 'inc/navigation/navigation.php' );
|
|
24 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/widgets/widget-new-posts.php' );
|
25 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/menu-btn-position.php' );
|
26 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/sidebar-position.php' );
|
27 |
-
// require_once( LIGHTNING_ADVANCED_DIR . 'inc/header-top/header-top.php' );
|
28 |
|
29 |
/*-------------------------------------------*/
|
30 |
/* translations
|
2 |
/**
|
3 |
* Plugin Name: Lightning Advanced Unit
|
4 |
* Plugin URI: http://lightning.vektor-inc.co.jp/
|
5 |
+
* Version: 1.3.2
|
6 |
* Author: Vektor,Inc.
|
7 |
* Author URI: http://www.vektor-inc.co.jp
|
8 |
* Description: This is a plug-ins that extend the functionality of the theme "Lightning".
|
24 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/widgets/widget-new-posts.php' );
|
25 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/menu-btn-position.php' );
|
26 |
require_once( LIGHTNING_ADVANCED_DIR . 'inc/sidebar-position.php' );
|
|
|
27 |
|
28 |
/*-------------------------------------------*/
|
29 |
/* translations
|