Version Description
Download this release
Release Info
| Developer | themeisle |
| Plugin | |
| Version | 1.0.9 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.8 to 1.0.9
- css/style.css +1 -1
- inc/settings.php +6 -3
- llorix-one-companion.php +2 -2
css/style.css
CHANGED
|
@@ -52,7 +52,7 @@
|
|
| 52 |
clear: right;
|
| 53 |
}
|
| 54 |
|
| 55 |
-
.
|
| 56 |
font-size: 60px;
|
| 57 |
margin-bottom: 35px;
|
| 58 |
}
|
| 52 |
clear: right;
|
| 53 |
}
|
| 54 |
|
| 55 |
+
.service-icon {
|
| 56 |
font-size: 60px;
|
| 57 |
margin-bottom: 35px;
|
| 58 |
}
|
inc/settings.php
CHANGED
|
@@ -12,7 +12,8 @@ function llorix_one_companion_customize_register( $wp_customize ) {
|
|
| 12 |
$wp_customize->add_section( 'llorix_one_lite_services_section' , array(
|
| 13 |
'title' => esc_html__( 'Services section', 'llorix-one-companion' ),
|
| 14 |
'priority' => 40,
|
| 15 |
-
'panel' => 'llorix_one_lite_front_page_sections'
|
|
|
|
| 16 |
));
|
| 17 |
|
| 18 |
/* Services show/hide */
|
|
@@ -82,7 +83,8 @@ function llorix_one_companion_customize_register( $wp_customize ) {
|
|
| 82 |
$wp_customize->add_section( 'llorix_one_lite_team_section' , array(
|
| 83 |
'title' => esc_html__( 'Team section', 'llorix-one-companion' ),
|
| 84 |
'priority' => 60,
|
| 85 |
-
'panel' => 'llorix_one_lite_front_page_sections'
|
|
|
|
| 86 |
));
|
| 87 |
|
| 88 |
/* Team show/hide */
|
|
@@ -160,7 +162,8 @@ function llorix_one_companion_customize_register( $wp_customize ) {
|
|
| 160 |
$wp_customize->add_section( 'llorix_one_lite_testimonials_section' , array(
|
| 161 |
'title' => esc_html__( 'Testimonials section', 'llorix-one-companion' ),
|
| 162 |
'priority' => 70,
|
| 163 |
-
'panel' => 'llorix_one_lite_front_page_sections'
|
|
|
|
| 164 |
));
|
| 165 |
|
| 166 |
/* Testimonials show/hide */
|
| 12 |
$wp_customize->add_section( 'llorix_one_lite_services_section' , array(
|
| 13 |
'title' => esc_html__( 'Services section', 'llorix-one-companion' ),
|
| 14 |
'priority' => 40,
|
| 15 |
+
'panel' => 'llorix_one_lite_front_page_sections',
|
| 16 |
+
'active_callback' => 'llorix_one_lite_show_on_front',
|
| 17 |
));
|
| 18 |
|
| 19 |
/* Services show/hide */
|
| 83 |
$wp_customize->add_section( 'llorix_one_lite_team_section' , array(
|
| 84 |
'title' => esc_html__( 'Team section', 'llorix-one-companion' ),
|
| 85 |
'priority' => 60,
|
| 86 |
+
'panel' => 'llorix_one_lite_front_page_sections',
|
| 87 |
+
'active_callback' => 'llorix_one_lite_show_on_front',
|
| 88 |
));
|
| 89 |
|
| 90 |
/* Team show/hide */
|
| 162 |
$wp_customize->add_section( 'llorix_one_lite_testimonials_section' , array(
|
| 163 |
'title' => esc_html__( 'Testimonials section', 'llorix-one-companion' ),
|
| 164 |
'priority' => 70,
|
| 165 |
+
'panel' => 'llorix_one_lite_front_page_sections',
|
| 166 |
+
'active_callback' => 'llorix_one_lite_show_on_front',
|
| 167 |
));
|
| 168 |
|
| 169 |
/* Testimonials show/hide */
|
llorix-one-companion.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: Llorix One Companion
|
| 4 |
Plugin URI: https://github.com/Codeinwp/llorix-one-companion
|
| 5 |
Description: Add Our team, Our Services and Testimonials sections to Llorix One Lite theme.
|
| 6 |
-
Version: 1.0.
|
| 7 |
Author: Themeisle
|
| 8 |
Author URI: http://themeisle.com
|
| 9 |
Text Domain: llorix-one-companion
|
|
@@ -17,7 +17,7 @@ if ( ! function_exists( 'add_action' ) ) {
|
|
| 17 |
}
|
| 18 |
|
| 19 |
/* Important constants */
|
| 20 |
-
define( 'LLORIX_ONE_COMPANION_VERSION', '1.0.
|
| 21 |
define( 'LLORIX_ONE_COMPANION_URL', plugin_dir_url( __FILE__ ) );
|
| 22 |
define( 'LLORIX_ONE_COMPANION_PATH', plugin_dir_path( __FILE__ ) );
|
| 23 |
|
| 3 |
Plugin Name: Llorix One Companion
|
| 4 |
Plugin URI: https://github.com/Codeinwp/llorix-one-companion
|
| 5 |
Description: Add Our team, Our Services and Testimonials sections to Llorix One Lite theme.
|
| 6 |
+
Version: 1.0.9
|
| 7 |
Author: Themeisle
|
| 8 |
Author URI: http://themeisle.com
|
| 9 |
Text Domain: llorix-one-companion
|
| 17 |
}
|
| 18 |
|
| 19 |
/* Important constants */
|
| 20 |
+
define( 'LLORIX_ONE_COMPANION_VERSION', '1.0.9' );
|
| 21 |
define( 'LLORIX_ONE_COMPANION_URL', plugin_dir_url( __FILE__ ) );
|
| 22 |
define( 'LLORIX_ONE_COMPANION_PATH', plugin_dir_path( __FILE__ ) );
|
| 23 |
|
