Version Description
- Boostify Theme Upsale Links Added
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 7.6 |
Comparing to | |
See all releases |
Code changes from version 7.5 to 7.6
- clever-fox.php +1 -1
- inc/boostify/extras.php +1 -1
- inc/boostify/features/boostify-features.php +45 -1
- inc/boostify/features/boostify-header.php +1 -1
- inc/boostify/features/boostify-info.php +44 -1
- inc/boostify/features/boostify-service.php +45 -1
- inc/boostify/features/boostify-slider.php +1 -1
- inc/boostify/features/boostify-testimonial.php +45 -1
- inc/boostify/images/logo.png +0 -0
- inc/boostify/sections/section-features.php +3 -1
- inc/boostify/sections/section-info.php +4 -2
- inc/boostify/sections/section-service.php +3 -1
- inc/boostify/sections/section-testimonial.php +3 -1
- readme.txt +4 -1
clever-fox.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Clever Fox
|
4 |
Plugin URI:
|
5 |
Description: Clever Fox plugin to enhance the functionality of free themes made by Nayra Themes. More than 50000+ trusted websites with Nayra Themes. It provides intuitive features to your website. 20+ Themes compatible with Clever Fox. See below free themes listed here. Avril is one of Popular themes in our collections.
|
6 |
-
Version: 7.
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
3 |
Plugin Name: Clever Fox
|
4 |
Plugin URI:
|
5 |
Description: Clever Fox plugin to enhance the functionality of free themes made by Nayra Themes. More than 50000+ trusted websites with Nayra Themes. It provides intuitive features to your website. 20+ Themes compatible with Clever Fox. See below free themes listed here. Avril is one of Popular themes in our collections.
|
6 |
+
Version: 7.6
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/boostify/extras.php
CHANGED
@@ -71,7 +71,7 @@ function boostify_get_social_icon_default() {
|
|
71 |
)
|
72 |
);
|
73 |
}
|
74 |
-
add_action('boostify_get_contact_info_default','
|
75 |
|
76 |
/*
|
77 |
*
|
71 |
)
|
72 |
);
|
73 |
}
|
74 |
+
add_action('boostify_get_contact_info_default','boostify_get_contact_info_default');
|
75 |
|
76 |
/*
|
77 |
*
|
inc/boostify/features/boostify-features.php
CHANGED
@@ -12,6 +12,50 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
12 |
)
|
13 |
);
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
// Features Header Section //
|
16 |
$wp_customize->add_setting(
|
17 |
'feature_headings'
|
@@ -128,7 +172,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
128 |
class Boostify_feature__section_upgrade extends WP_Customize_Control {
|
129 |
public function render_content() {
|
130 |
?>
|
131 |
-
<a class="customizer_feature_upgrade_section up-to-pro" href="
|
132 |
style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
133 |
<?php
|
134 |
}
|
12 |
)
|
13 |
);
|
14 |
|
15 |
+
|
16 |
+
/*=========================================
|
17 |
+
Settings
|
18 |
+
=========================================*/
|
19 |
+
|
20 |
+
// Settings
|
21 |
+
$wp_customize->add_setting(
|
22 |
+
'features_setting_head'
|
23 |
+
,array(
|
24 |
+
'capability' => 'edit_theme_options',
|
25 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
26 |
+
'priority' => 1,
|
27 |
+
)
|
28 |
+
);
|
29 |
+
|
30 |
+
$wp_customize->add_control(
|
31 |
+
'features_setting_head',
|
32 |
+
array(
|
33 |
+
'type' => 'hidden',
|
34 |
+
'label' => __('Setting','clever-fox'),
|
35 |
+
'section' => 'feature_setting',
|
36 |
+
)
|
37 |
+
);
|
38 |
+
|
39 |
+
// Hide / Show
|
40 |
+
$wp_customize->add_setting(
|
41 |
+
'hs_features'
|
42 |
+
,array(
|
43 |
+
'default' => '1',
|
44 |
+
'capability' => 'edit_theme_options',
|
45 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
46 |
+
'priority' => 2,
|
47 |
+
)
|
48 |
+
);
|
49 |
+
|
50 |
+
$wp_customize->add_control(
|
51 |
+
'hs_features',
|
52 |
+
array(
|
53 |
+
'type' => 'checkbox',
|
54 |
+
'label' => __('Hide / Show Section','clever-fox'),
|
55 |
+
'section' => 'feature_setting',
|
56 |
+
)
|
57 |
+
);
|
58 |
+
|
59 |
// Features Header Section //
|
60 |
$wp_customize->add_setting(
|
61 |
'feature_headings'
|
172 |
class Boostify_feature__section_upgrade extends WP_Customize_Control {
|
173 |
public function render_content() {
|
174 |
?>
|
175 |
+
<a class="customizer_feature_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank"
|
176 |
style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
177 |
<?php
|
178 |
}
|
inc/boostify/features/boostify-header.php
CHANGED
@@ -325,7 +325,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
325 |
class Boostify_social__section_upgrade extends WP_Customize_Control {
|
326 |
public function render_content() {
|
327 |
?>
|
328 |
-
<a class="customizer_social_upgrade_section up-to-pro" href="
|
329 |
<?php
|
330 |
}
|
331 |
}
|
325 |
class Boostify_social__section_upgrade extends WP_Customize_Control {
|
326 |
public function render_content() {
|
327 |
?>
|
328 |
+
<a class="customizer_social_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank" style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
329 |
<?php
|
330 |
}
|
331 |
}
|
inc/boostify/features/boostify-info.php
CHANGED
@@ -13,6 +13,49 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
13 |
)
|
14 |
);
|
15 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
16 |
/*=========================================
|
17 |
Info contents
|
18 |
=========================================*/
|
@@ -71,7 +114,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
71 |
class Boostify_info__section_upgrade extends WP_Customize_Control {
|
72 |
public function render_content() {
|
73 |
?>
|
74 |
-
<a class="customizer_info_upgrade_section up-to-pro" href="
|
75 |
<?php
|
76 |
}
|
77 |
}
|
13 |
)
|
14 |
);
|
15 |
|
16 |
+
/*=========================================
|
17 |
+
Settings
|
18 |
+
=========================================*/
|
19 |
+
|
20 |
+
// Settings
|
21 |
+
$wp_customize->add_setting(
|
22 |
+
'info_setting_head'
|
23 |
+
,array(
|
24 |
+
'capability' => 'edit_theme_options',
|
25 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
26 |
+
'priority' => 1,
|
27 |
+
)
|
28 |
+
);
|
29 |
+
|
30 |
+
$wp_customize->add_control(
|
31 |
+
'info_setting_head',
|
32 |
+
array(
|
33 |
+
'type' => 'hidden',
|
34 |
+
'label' => __('Setting','clever-fox'),
|
35 |
+
'section' => 'info_setting',
|
36 |
+
)
|
37 |
+
);
|
38 |
+
|
39 |
+
// Hide / Show
|
40 |
+
$wp_customize->add_setting(
|
41 |
+
'hs_info'
|
42 |
+
,array(
|
43 |
+
'default' => '1',
|
44 |
+
'capability' => 'edit_theme_options',
|
45 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
46 |
+
'priority' => 2,
|
47 |
+
)
|
48 |
+
);
|
49 |
+
|
50 |
+
$wp_customize->add_control(
|
51 |
+
'hs_info',
|
52 |
+
array(
|
53 |
+
'type' => 'checkbox',
|
54 |
+
'label' => __('Hide / Show Section','clever-fox'),
|
55 |
+
'section' => 'info_setting',
|
56 |
+
)
|
57 |
+
);
|
58 |
+
|
59 |
/*=========================================
|
60 |
Info contents
|
61 |
=========================================*/
|
114 |
class Boostify_info__section_upgrade extends WP_Customize_Control {
|
115 |
public function render_content() {
|
116 |
?>
|
117 |
+
<a class="customizer_info_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank" style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
118 |
<?php
|
119 |
}
|
120 |
}
|
inc/boostify/features/boostify-service.php
CHANGED
@@ -12,6 +12,50 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
12 |
)
|
13 |
);
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
// Service Header Section //
|
16 |
$wp_customize->add_setting(
|
17 |
'service_headings'
|
@@ -128,7 +172,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
128 |
class Boostify_service__section_upgrade extends WP_Customize_Control {
|
129 |
public function render_content() {
|
130 |
?>
|
131 |
-
<a class="customizer_service_upgrade_section up-to-pro" href="
|
132 |
<?php
|
133 |
}
|
134 |
}
|
12 |
)
|
13 |
);
|
14 |
|
15 |
+
|
16 |
+
/*=========================================
|
17 |
+
Settings
|
18 |
+
=========================================*/
|
19 |
+
|
20 |
+
// Settings
|
21 |
+
$wp_customize->add_setting(
|
22 |
+
'service_setting_head'
|
23 |
+
,array(
|
24 |
+
'capability' => 'edit_theme_options',
|
25 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
26 |
+
'priority' => 1,
|
27 |
+
)
|
28 |
+
);
|
29 |
+
|
30 |
+
$wp_customize->add_control(
|
31 |
+
'service_setting_head',
|
32 |
+
array(
|
33 |
+
'type' => 'hidden',
|
34 |
+
'label' => __('Setting','clever-fox'),
|
35 |
+
'section' => 'service_setting',
|
36 |
+
)
|
37 |
+
);
|
38 |
+
|
39 |
+
// Hide / Show
|
40 |
+
$wp_customize->add_setting(
|
41 |
+
'hs_service'
|
42 |
+
,array(
|
43 |
+
'default' => '1',
|
44 |
+
'capability' => 'edit_theme_options',
|
45 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
46 |
+
'priority' => 2,
|
47 |
+
)
|
48 |
+
);
|
49 |
+
|
50 |
+
$wp_customize->add_control(
|
51 |
+
'hs_service',
|
52 |
+
array(
|
53 |
+
'type' => 'checkbox',
|
54 |
+
'label' => __('Hide / Show Section','clever-fox'),
|
55 |
+
'section' => 'service_setting',
|
56 |
+
)
|
57 |
+
);
|
58 |
+
|
59 |
// Service Header Section //
|
60 |
$wp_customize->add_setting(
|
61 |
'service_headings'
|
172 |
class Boostify_service__section_upgrade extends WP_Customize_Control {
|
173 |
public function render_content() {
|
174 |
?>
|
175 |
+
<a class="customizer_service_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank" style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
176 |
<?php
|
177 |
}
|
178 |
}
|
inc/boostify/features/boostify-slider.php
CHANGED
@@ -78,7 +78,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
78 |
class Boostify_slider__section_upgrade extends WP_Customize_Control {
|
79 |
public function render_content() {
|
80 |
?>
|
81 |
-
<a class="customizer_slider_upgrade_section up-to-pro" href="
|
82 |
|
83 |
<?php
|
84 |
}
|
78 |
class Boostify_slider__section_upgrade extends WP_Customize_Control {
|
79 |
public function render_content() {
|
80 |
?>
|
81 |
+
<a class="customizer_slider_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank" style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
82 |
|
83 |
<?php
|
84 |
}
|
inc/boostify/features/boostify-testimonial.php
CHANGED
@@ -12,6 +12,50 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
12 |
)
|
13 |
);
|
14 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
// Testimnial Header Section //
|
16 |
$wp_customize->add_setting(
|
17 |
'testimonial_headings'
|
@@ -126,7 +170,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
126 |
class Boostify_testimonial__section_upgrade extends WP_Customize_Control {
|
127 |
public function render_content() {
|
128 |
?>
|
129 |
-
<a class="customizer_testimonial_upgrade_section up-to-pro" href="
|
130 |
<?php
|
131 |
}
|
132 |
}
|
12 |
)
|
13 |
);
|
14 |
|
15 |
+
|
16 |
+
/*=========================================
|
17 |
+
Settings
|
18 |
+
=========================================*/
|
19 |
+
|
20 |
+
// Settings
|
21 |
+
$wp_customize->add_setting(
|
22 |
+
'testimonial_setting_head'
|
23 |
+
,array(
|
24 |
+
'capability' => 'edit_theme_options',
|
25 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
26 |
+
'priority' => 1,
|
27 |
+
)
|
28 |
+
);
|
29 |
+
|
30 |
+
$wp_customize->add_control(
|
31 |
+
'testimonial_setting_head',
|
32 |
+
array(
|
33 |
+
'type' => 'hidden',
|
34 |
+
'label' => __('Setting','clever-fox'),
|
35 |
+
'section' => 'testimonial_setting',
|
36 |
+
)
|
37 |
+
);
|
38 |
+
|
39 |
+
// Hide / Show
|
40 |
+
$wp_customize->add_setting(
|
41 |
+
'hs_testimonial'
|
42 |
+
,array(
|
43 |
+
'default' => '1',
|
44 |
+
'capability' => 'edit_theme_options',
|
45 |
+
'sanitize_callback' => 'boostify_sanitize_text',
|
46 |
+
'priority' => 2,
|
47 |
+
)
|
48 |
+
);
|
49 |
+
|
50 |
+
$wp_customize->add_control(
|
51 |
+
'hs_testimonial',
|
52 |
+
array(
|
53 |
+
'type' => 'checkbox',
|
54 |
+
'label' => __('Hide / Show Section','clever-fox'),
|
55 |
+
'section' => 'testimonial_setting',
|
56 |
+
)
|
57 |
+
);
|
58 |
+
|
59 |
// Testimnial Header Section //
|
60 |
$wp_customize->add_setting(
|
61 |
'testimonial_headings'
|
170 |
class Boostify_testimonial__section_upgrade extends WP_Customize_Control {
|
171 |
public function render_content() {
|
172 |
?>
|
173 |
+
<a class="customizer_testimonial_upgrade_section up-to-pro" href="https://www.nayrathemes.com/boostify-pro/" target="_blank" style="display: none;"><?php _e('Upgrade to Pro','clever-fox'); ?></a>
|
174 |
<?php
|
175 |
}
|
176 |
}
|
inc/boostify/images/logo.png
CHANGED
Binary file
|
inc/boostify/sections/section-features.php
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_features' ) ) :
|
3 |
function cleverfox_boostify_lite_features() {
|
|
|
4 |
$feature_title = get_theme_mod('feature_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Features</b> <b>Features</b><b>Features</b></span></span>');
|
5 |
$feature_description = get_theme_mod('feature_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
6 |
$features_contents = get_theme_mod('features_contents',boostify_get_features_default());
|
|
|
7 |
?>
|
8 |
<section id="our-feature" class="our-feature home-feature section-padding-top">
|
9 |
<div class="container">
|
@@ -63,7 +65,7 @@ if ( ! function_exists( 'cleverfox_boostify_lite_features' ) ) :
|
|
63 |
</div>
|
64 |
</section>
|
65 |
<?php
|
66 |
-
}
|
67 |
endif;
|
68 |
if ( function_exists( 'cleverfox_boostify_lite_features' ) ) {
|
69 |
$section_priority = apply_filters( 'boostify_section_priority', 13, 'cleverfox_boostify_lite_features' );
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_features' ) ) :
|
3 |
function cleverfox_boostify_lite_features() {
|
4 |
+
$hs_features = get_theme_mod('hs_features','1');
|
5 |
$feature_title = get_theme_mod('feature_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Features</b> <b>Features</b><b>Features</b></span></span>');
|
6 |
$feature_description = get_theme_mod('feature_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
7 |
$features_contents = get_theme_mod('features_contents',boostify_get_features_default());
|
8 |
+
if($hs_features=='1'){
|
9 |
?>
|
10 |
<section id="our-feature" class="our-feature home-feature section-padding-top">
|
11 |
<div class="container">
|
65 |
</div>
|
66 |
</section>
|
67 |
<?php
|
68 |
+
}}
|
69 |
endif;
|
70 |
if ( function_exists( 'cleverfox_boostify_lite_features' ) ) {
|
71 |
$section_priority = apply_filters( 'boostify_section_priority', 13, 'cleverfox_boostify_lite_features' );
|
inc/boostify/sections/section-info.php
CHANGED
@@ -1,7 +1,9 @@
|
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_info' ) ) :
|
3 |
function cleverfox_boostify_lite_info() {
|
|
|
4 |
$info_contents = get_theme_mod('info_contents',boostify_get_info_default());
|
|
|
5 |
?>
|
6 |
<section id="contact-info-section" class="contact-info-section">
|
7 |
<div class="container">
|
@@ -31,7 +33,7 @@ if ( ! function_exists( 'cleverfox_boostify_lite_info' ) ) :
|
|
31 |
<?php if(!empty($title) || !empty($subtitle)):?>
|
32 |
<div class="contact-info">
|
33 |
<?php if(!empty($title)):?>
|
34 |
-
<h6><?php echo esc_html($title); ?></h6>
|
35 |
<?php endif; ?>
|
36 |
|
37 |
<?php if(!empty($subtitle)):?>
|
@@ -48,7 +50,7 @@ if ( ! function_exists( 'cleverfox_boostify_lite_info' ) ) :
|
|
48 |
</div>
|
49 |
</section>
|
50 |
<?php
|
51 |
-
}
|
52 |
endif;
|
53 |
if ( function_exists( 'cleverfox_boostify_lite_info' ) ) {
|
54 |
$section_priority = apply_filters( 'boostify_section_priority', 12, 'cleverfox_boostify_lite_info' );
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_info' ) ) :
|
3 |
function cleverfox_boostify_lite_info() {
|
4 |
+
$hs_info = get_theme_mod('hs_info','1');
|
5 |
$info_contents = get_theme_mod('info_contents',boostify_get_info_default());
|
6 |
+
if($hs_info == '1'){
|
7 |
?>
|
8 |
<section id="contact-info-section" class="contact-info-section">
|
9 |
<div class="container">
|
33 |
<?php if(!empty($title) || !empty($subtitle)):?>
|
34 |
<div class="contact-info">
|
35 |
<?php if(!empty($title)):?>
|
36 |
+
<h6><a href="<?php echo esc_url($link); ?>"><?php echo esc_html($title); ?></a></h6>
|
37 |
<?php endif; ?>
|
38 |
|
39 |
<?php if(!empty($subtitle)):?>
|
50 |
</div>
|
51 |
</section>
|
52 |
<?php
|
53 |
+
}}
|
54 |
endif;
|
55 |
if ( function_exists( 'cleverfox_boostify_lite_info' ) ) {
|
56 |
$section_priority = apply_filters( 'boostify_section_priority', 12, 'cleverfox_boostify_lite_info' );
|
inc/boostify/sections/section-service.php
CHANGED
@@ -1,9 +1,11 @@
|
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_service' ) ) :
|
3 |
function cleverfox_boostify_lite_service() {
|
|
|
4 |
$service_title = get_theme_mod('service_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Services</b> <b>Services</b><b>Services</b></span></span>');
|
5 |
$service_description = get_theme_mod('service_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
6 |
$service_contents = get_theme_mod('service_contents',boostify_get_service_default());
|
|
|
7 |
?>
|
8 |
<section id="our-service" class="themes-bottom section-padding service-home">
|
9 |
<div class="container">
|
@@ -60,7 +62,7 @@ if ( ! function_exists( 'cleverfox_boostify_lite_service' ) ) :
|
|
60 |
</div>
|
61 |
</section>
|
62 |
<?php
|
63 |
-
}
|
64 |
endif;
|
65 |
if ( function_exists( 'cleverfox_boostify_lite_service' ) ) {
|
66 |
$section_priority = apply_filters( 'boostify_section_priority', 14, 'cleverfox_boostify_lite_service' );
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_service' ) ) :
|
3 |
function cleverfox_boostify_lite_service() {
|
4 |
+
$hs_service = get_theme_mod('hs_service','1');
|
5 |
$service_title = get_theme_mod('service_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Services</b> <b>Services</b><b>Services</b></span></span>');
|
6 |
$service_description = get_theme_mod('service_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
7 |
$service_contents = get_theme_mod('service_contents',boostify_get_service_default());
|
8 |
+
if($hs_service == '1'){
|
9 |
?>
|
10 |
<section id="our-service" class="themes-bottom section-padding service-home">
|
11 |
<div class="container">
|
62 |
</div>
|
63 |
</section>
|
64 |
<?php
|
65 |
+
}}
|
66 |
endif;
|
67 |
if ( function_exists( 'cleverfox_boostify_lite_service' ) ) {
|
68 |
$section_priority = apply_filters( 'boostify_section_priority', 14, 'cleverfox_boostify_lite_service' );
|
inc/boostify/sections/section-testimonial.php
CHANGED
@@ -1,11 +1,13 @@
|
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_testimonial' ) ) :
|
3 |
function cleverfox_boostify_lite_testimonial() {
|
|
|
4 |
$testimonial_title = get_theme_mod('testimonial_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Testimonial</b><b>Testimonial</b><b>Testimonial</b></span></span>');
|
5 |
$testimonial_description = get_theme_mod('testimonial_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
6 |
$testimonials_content = get_theme_mod('testimonials_content',boostify_get_testimonial_default());
|
7 |
$testimonial_bg_setting = get_theme_mod('testimonial_bg_setting',esc_url(CLEVERFOX_PLUGIN_URL .'inc/boostify/images/patternshape-bg.jpg'));
|
8 |
$testimonial_bg_position = get_theme_mod('testimonial_bg_position','scroll');
|
|
|
9 |
?>
|
10 |
<section id="testimonial" class="testimonial section-padding">
|
11 |
<div class="testimonial-overlay" style="background-image:url(<?php echo esc_url($testimonial_bg_setting); ?>);background-attachment: <?php echo esc_attr($testimonial_bg_position); ?>;"></div>
|
@@ -68,7 +70,7 @@ if ( ! function_exists( 'cleverfox_boostify_lite_testimonial' ) ) :
|
|
68 |
</div>
|
69 |
</section>
|
70 |
<?php
|
71 |
-
}
|
72 |
endif;
|
73 |
if ( function_exists( 'cleverfox_boostify_lite_testimonial' ) ) {
|
74 |
$section_priority = apply_filters( 'boostify_section_priority', 15, 'cleverfox_boostify_lite_testimonial' );
|
1 |
<?php
|
2 |
if ( ! function_exists( 'cleverfox_boostify_lite_testimonial' ) ) :
|
3 |
function cleverfox_boostify_lite_testimonial() {
|
4 |
+
$hs_testimonial = get_theme_mod('hs_testimonial','1');
|
5 |
$testimonial_title = get_theme_mod('testimonial_title','Outstanding <span class="av-heading animate-7"><span class="av-text-wrapper"><b class="is-show">Testimonial</b><b>Testimonial</b><b>Testimonial</b></span></span>');
|
6 |
$testimonial_description = get_theme_mod('testimonial_description','Lorem Ipsum is simply dummy of printing and typesetting and industry. Lorem Ipsum been.');
|
7 |
$testimonials_content = get_theme_mod('testimonials_content',boostify_get_testimonial_default());
|
8 |
$testimonial_bg_setting = get_theme_mod('testimonial_bg_setting',esc_url(CLEVERFOX_PLUGIN_URL .'inc/boostify/images/patternshape-bg.jpg'));
|
9 |
$testimonial_bg_position = get_theme_mod('testimonial_bg_position','scroll');
|
10 |
+
if($hs_testimonial == '1'){
|
11 |
?>
|
12 |
<section id="testimonial" class="testimonial section-padding">
|
13 |
<div class="testimonial-overlay" style="background-image:url(<?php echo esc_url($testimonial_bg_setting); ?>);background-attachment: <?php echo esc_attr($testimonial_bg_position); ?>;"></div>
|
70 |
</div>
|
71 |
</section>
|
72 |
<?php
|
73 |
+
}}
|
74 |
endif;
|
75 |
if ( function_exists( 'cleverfox_boostify_lite_testimonial' ) ) {
|
76 |
$section_priority = apply_filters( 'boostify_section_priority', 15, 'cleverfox_boostify_lite_testimonial' );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: demo, sections, customizer, widget, settings
|
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 7.
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
@@ -106,6 +106,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
109 |
= 7.5 =
|
110 |
* Boostify Theme Functionality Added
|
111 |
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 7.6
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 7.6 =
|
110 |
+
* Boostify Theme Upsale Links Added
|
111 |
+
|
112 |
= 7.5 =
|
113 |
* Boostify Theme Functionality Added
|
114 |
|