Version Description
- Hantus Features Improved
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 1.1.34 |
Comparing to | |
See all releases |
Code changes from version 1.1.33 to 1.1.34
- clever-fox.php +1 -1
- inc/hantus/dynamic-style.php +5 -5
- inc/hantus/features/section-slider.php +5 -5
- readme.txt +4 -1
clever-fox.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Clever Fox
|
4 |
Plugin URI:
|
5 |
Description: The Clever Fox plugin adds sections functionality to the Startkit theme and Others Nayra's Themes. This plugin for only startkit themes. Clever Fox is a plugin build to enhance the functionality of WordPress Theme made by Nayra Themes.
|
6 |
-
Version: 1.1.
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
3 |
Plugin Name: Clever Fox
|
4 |
Plugin URI:
|
5 |
Description: The Clever Fox plugin adds sections functionality to the Startkit theme and Others Nayra's Themes. This plugin for only startkit themes. Clever Fox is a plugin build to enhance the functionality of WordPress Theme made by Nayra Themes.
|
6 |
+
Version: 1.1.34
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/hantus/dynamic-style.php
CHANGED
@@ -1,12 +1,12 @@
|
|
1 |
<?php
|
2 |
if( ! function_exists( 'hantus_customizer_options' ) ):
|
3 |
function hantus_customizer_options() {
|
4 |
-
$slider_overlay_enable = get_theme_mod('slider_overlay_enable');
|
5 |
-
$slide_overlay_color = get_theme_mod('slide_overlay_color','#
|
6 |
-
$slider_opacity = get_theme_mod('slider_opacity','0.
|
7 |
-
$slide_title_color = get_theme_mod('slide_title_color','#
|
8 |
$slide_sbtitle_color = get_theme_mod('slide_sbtitle_color','#f22853');
|
9 |
-
$slide_desc_color = get_theme_mod('slide_desc_color','#
|
10 |
$output_css = '';
|
11 |
if($slider_overlay_enable == '1') {
|
12 |
$output_css .=".header-single-slider:after {
|
1 |
<?php
|
2 |
if( ! function_exists( 'hantus_customizer_options' ) ):
|
3 |
function hantus_customizer_options() {
|
4 |
+
$slider_overlay_enable = get_theme_mod('slider_overlay_enable','1');
|
5 |
+
$slide_overlay_color = get_theme_mod('slide_overlay_color','#000000');
|
6 |
+
$slider_opacity = get_theme_mod('slider_opacity','0.4');
|
7 |
+
$slide_title_color = get_theme_mod('slide_title_color','#fff');
|
8 |
$slide_sbtitle_color = get_theme_mod('slide_sbtitle_color','#f22853');
|
9 |
+
$slide_desc_color = get_theme_mod('slide_desc_color','#fff');
|
10 |
$output_css = '';
|
11 |
if($slider_overlay_enable == '1') {
|
12 |
$output_css .=".header-single-slider:after {
|
inc/hantus/features/section-slider.php
CHANGED
@@ -96,7 +96,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
96 |
$wp_customize->add_setting(
|
97 |
'slider_opacity' ,
|
98 |
array(
|
99 |
-
'default' => '0.
|
100 |
'capability' => 'edit_theme_options',
|
101 |
)
|
102 |
);
|
@@ -120,7 +120,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
120 |
$wp_customize->add_setting(
|
121 |
'slider_overlay_enable' ,
|
122 |
array(
|
123 |
-
'default' =>
|
124 |
'capability' => 'edit_theme_options',
|
125 |
)
|
126 |
);
|
@@ -141,7 +141,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
141 |
array(
|
142 |
'capability' => 'edit_theme_options',
|
143 |
'sanitize_callback' => 'sanitize_text_field',
|
144 |
-
'default' => '#
|
145 |
));
|
146 |
|
147 |
$wp_customize->add_control(
|
@@ -161,7 +161,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
161 |
array(
|
162 |
'capability' => 'edit_theme_options',
|
163 |
'sanitize_callback' => 'sanitize_text_field',
|
164 |
-
'default' => '#
|
165 |
));
|
166 |
|
167 |
$wp_customize->add_control(
|
@@ -201,7 +201,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
201 |
array(
|
202 |
'capability' => 'edit_theme_options',
|
203 |
'sanitize_callback' => 'sanitize_text_field',
|
204 |
-
'default' => '#
|
205 |
));
|
206 |
|
207 |
$wp_customize->add_control(
|
96 |
$wp_customize->add_setting(
|
97 |
'slider_opacity' ,
|
98 |
array(
|
99 |
+
'default' => '0.4',
|
100 |
'capability' => 'edit_theme_options',
|
101 |
)
|
102 |
);
|
120 |
$wp_customize->add_setting(
|
121 |
'slider_overlay_enable' ,
|
122 |
array(
|
123 |
+
'default' => 1,
|
124 |
'capability' => 'edit_theme_options',
|
125 |
)
|
126 |
);
|
141 |
array(
|
142 |
'capability' => 'edit_theme_options',
|
143 |
'sanitize_callback' => 'sanitize_text_field',
|
144 |
+
'default' => '#000000'
|
145 |
));
|
146 |
|
147 |
$wp_customize->add_control(
|
161 |
array(
|
162 |
'capability' => 'edit_theme_options',
|
163 |
'sanitize_callback' => 'sanitize_text_field',
|
164 |
+
'default' => '#fff'
|
165 |
));
|
166 |
|
167 |
$wp_customize->add_control(
|
201 |
array(
|
202 |
'capability' => 'edit_theme_options',
|
203 |
'sanitize_callback' => 'sanitize_text_field',
|
204 |
+
'default' => '#fff'
|
205 |
));
|
206 |
|
207 |
$wp_customize->add_control(
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Contributors: nayrathemes
|
4 |
Tags: startkit, startbiz, arowana, section
|
5 |
Requires at least: 4.0
|
6 |
-
Tested up to: 5.4.
|
7 |
License: GPLv3 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
9 |
|
@@ -39,6 +39,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
|
|
39 |
|
40 |
== Changelog ==
|
41 |
|
|
|
|
|
|
|
42 |
= 1.1.33 =
|
43 |
* Notice Added
|
44 |
* Footer Widget Added
|
3 |
Contributors: nayrathemes
|
4 |
Tags: startkit, startbiz, arowana, section
|
5 |
Requires at least: 4.0
|
6 |
+
Tested up to: 5.4.2
|
7 |
License: GPLv3 or later
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
9 |
|
39 |
|
40 |
== Changelog ==
|
41 |
|
42 |
+
= 1.1.34 =
|
43 |
+
* Hantus Features Improved
|
44 |
+
|
45 |
= 1.1.33 =
|
46 |
* Notice Added
|
47 |
* Footer Widget Added
|