Clever Fox - Version 1.1.27

Version Description

  • Made Info Section Seprately For All Theme
Download this release

Release Info

Developer nayrathemes
Plugin Icon 128x128 Clever Fox
Version 1.1.27
Comparing to
See all releases

Code changes from version 1.1.26 to 1.1.27

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.26
7
  Author: nayrathemes
8
  Author URI: https://nayrathemes.com
9
  Text Domain: clever-fox
@@ -46,7 +46,7 @@ function cleverfox_activate() {
46
  require_once('inc/startkit/features/section-testimonial.php');
47
  require_once('inc/startkit/features/navigation.php');
48
  require_once('inc/startbiz/sections/section-slider.php');
49
- require_once('inc/startkit/sections/section-flash.php');
50
  require_once('inc/startbiz/sections/section-service.php');
51
  require_once('inc/startkit/sections/section-testimonial.php');
52
  require_once('inc/startkit/typography_style.php');
@@ -60,7 +60,7 @@ function cleverfox_activate() {
60
  require_once('inc/startkit/features/section-testimonial.php');
61
  require_once('inc/startkit/features/navigation.php');
62
  require_once('inc/startkit/sections/section-slider.php');
63
- require_once('inc/startkit/sections/section-flash.php');
64
  require_once('inc/arowana/sections/section-service.php');
65
  require_once('inc/startkit/sections/section-testimonial.php');
66
  require_once('inc/startkit/typography_style.php');
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.27
7
  Author: nayrathemes
8
  Author URI: https://nayrathemes.com
9
  Text Domain: clever-fox
46
  require_once('inc/startkit/features/section-testimonial.php');
47
  require_once('inc/startkit/features/navigation.php');
48
  require_once('inc/startbiz/sections/section-slider.php');
49
+ require_once('inc/startbiz/sections/section-flash.php');
50
  require_once('inc/startbiz/sections/section-service.php');
51
  require_once('inc/startkit/sections/section-testimonial.php');
52
  require_once('inc/startkit/typography_style.php');
60
  require_once('inc/startkit/features/section-testimonial.php');
61
  require_once('inc/startkit/features/navigation.php');
62
  require_once('inc/startkit/sections/section-slider.php');
63
+ require_once('inc/arowana/sections/section-flash.php');
64
  require_once('inc/arowana/sections/section-service.php');
65
  require_once('inc/startkit/sections/section-testimonial.php');
66
  require_once('inc/startkit/typography_style.php');
inc/arowana/sections/section-flash.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! function_exists( 'startkit_info_plu' ) ) :
3
+
4
+ function startkit_info_plu() {
5
+ $hide_show_info = get_theme_mod('hide_show_info','1');
6
+ $info_icons = get_theme_mod('info_icons','fa-envelope');
7
+ $info_title = get_theme_mod('info_title','Design For Business');
8
+ $info_description = get_theme_mod('info_description','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
9
+ $info_icons2 = get_theme_mod('info_icons2','fa-cart-plus');
10
+ $info_title2 = get_theme_mod('info_title2','Develop For Work');
11
+ $info_description2 = get_theme_mod('info_description2','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
12
+ $info_icons3 = get_theme_mod('info_icons3','fa-life-saver');
13
+ $info_title3 = get_theme_mod('info_title3','Maketing For Blast');
14
+ $info_description3 = get_theme_mod('info_description3','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
15
+ ?>
16
+ <!-- Start: Features List
17
+ ============================= -->
18
+ <?php if($hide_show_info == '1') { ?>
19
+ <section id="features-list">
20
+ <div class="container">
21
+ <div class="row text-lg-left text-md-center">
22
+ <div class="col-md-4 mb-lg-0 mb-3">
23
+ <div class="features-list-item first wow fadeInUp" data-wow-delay="0.1s">
24
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons ); ?>"></i></span>
25
+ <h4><?php echo esc_html( $info_title ); ?></h4>
26
+ <p class="small"><?php echo wp_kses_post( $info_description ); ?></p>
27
+ </div>
28
+ </div>
29
+ <div class="col-md-4 mb-md-0 mb-3">
30
+ <div class="features-list-item second wow fadeInUp" data-wow-delay="0.2s">
31
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons2 ); ?>"></i></span>
32
+ <h4><?php echo esc_html( $info_title2 ); ?></h4>
33
+ <p class="small"><?php echo wp_kses_post( $info_description2 ); ?></p>
34
+ </div>
35
+ </div>
36
+ <div class="col-md-4">
37
+ <div class="features-list-item third wow fadeInUp" data-wow-delay="0.3s">
38
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons3 ); ?>"></i></span>
39
+ <h4><?php echo esc_html( $info_title3 ); ?></h4>
40
+ <p class="small"><?php echo wp_kses_post( $info_description3 ); ?></p>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </section>
46
+ <?php }
47
+ }
48
+
49
+ endif;
50
+
51
+
52
+ if ( function_exists( 'startkit_info_plu' ) ) {
53
+ $section_priority = apply_filters( 'startkit_section_priority', 12, 'startkit_info_plu' );
54
+ add_action( 'startkit_sections', 'startkit_info_plu', absint( $section_priority ) );
55
+
56
+ }
57
+ ?>
inc/startbiz/sections/section-flash.php ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if ( ! function_exists( 'startkit_info_plu' ) ) :
3
+
4
+ function startkit_info_plu() {
5
+ $hide_show_info = get_theme_mod('hide_show_info','1');
6
+ $info_icons = get_theme_mod('info_icons','fa-envelope');
7
+ $info_title = get_theme_mod('info_title','Design For Business');
8
+ $info_description = get_theme_mod('info_description','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
9
+ $info_icons2 = get_theme_mod('info_icons2','fa-cart-plus');
10
+ $info_title2 = get_theme_mod('info_title2','Develop For Work');
11
+ $info_description2 = get_theme_mod('info_description2','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
12
+ $info_icons3 = get_theme_mod('info_icons3','fa-life-saver');
13
+ $info_title3 = get_theme_mod('info_title3','Maketing For Blast');
14
+ $info_description3 = get_theme_mod('info_description3','The chunk standard of Lorem Ipsum used since the 900s is reproduced below');
15
+ ?>
16
+ <!-- Start: Features List
17
+ ============================= -->
18
+ <?php if($hide_show_info == '1') { ?>
19
+ <section id="features-list">
20
+ <div class="container">
21
+ <div class="row text-lg-left text-md-center">
22
+ <div class="col-md-4 mb-lg-0 mb-3">
23
+ <div class="features-list-item first wow fadeInUp" data-wow-delay="0.1s">
24
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons ); ?>"></i></span>
25
+ <h4><?php echo esc_html( $info_title ); ?></h4>
26
+ <p class="small"><?php echo wp_kses_post( $info_description ); ?></p>
27
+ </div>
28
+ </div>
29
+ <div class="col-md-4 mb-md-0 mb-3">
30
+ <div class="features-list-item second wow fadeInUp" data-wow-delay="0.2s">
31
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons2 ); ?>"></i></span>
32
+ <h4><?php echo esc_html( $info_title2 ); ?></h4>
33
+ <p class="small"><?php echo wp_kses_post( $info_description2 ); ?></p>
34
+ </div>
35
+ </div>
36
+ <div class="col-md-4">
37
+ <div class="features-list-item third wow fadeInUp" data-wow-delay="0.3s">
38
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons3 ); ?>"></i></span>
39
+ <h4><?php echo esc_html( $info_title3 ); ?></h4>
40
+ <p class="small"><?php echo wp_kses_post( $info_description3 ); ?></p>
41
+ </div>
42
+ </div>
43
+ </div>
44
+ </div>
45
+ </section>
46
+ <?php }
47
+ }
48
+
49
+ endif;
50
+
51
+
52
+ if ( function_exists( 'startkit_info_plu' ) ) {
53
+ $section_priority = apply_filters( 'startkit_section_priority', 12, 'startkit_info_plu' );
54
+ add_action( 'startkit_sections', 'startkit_info_plu', absint( $section_priority ) );
55
+
56
+ }
57
+ ?>
inc/startkit/sections/section-flash.php CHANGED
@@ -18,27 +18,25 @@ if ( ! function_exists( 'startkit_info_plu' ) ) :
18
  <?php if($hide_show_info == '1') { ?>
19
  <section id="features-list">
20
  <div class="container">
21
- <div class="row text-lg-left text-md-center">
22
- <div class="col-md-4 mb-lg-0 mb-3">
23
- <div class="features-list-item first wow fadeInUp" data-wow-delay="0.1s">
24
- <span class="icon"><i class="fa <?php echo esc_attr( $info_icons ); ?>"></i></span>
25
- <h4><?php echo esc_html( $info_title ); ?></h4>
26
- <p class="small"><?php echo wp_kses_post( $info_description ); ?></p>
27
- </div>
28
- </div>
29
- <div class="col-md-4 mb-md-0 mb-3">
30
- <div class="features-list-item second wow fadeInUp" data-wow-delay="0.2s">
31
- <span class="icon"><i class="fa <?php echo esc_attr( $info_icons2 ); ?>"></i></span>
32
- <h4><?php echo esc_html( $info_title2 ); ?></h4>
33
- <p class="small"><?php echo wp_kses_post( $info_description2 ); ?></p>
34
- </div>
35
- </div>
36
- <div class="col-md-4">
37
- <div class="features-list-item third wow fadeInUp" data-wow-delay="0.3s">
38
- <span class="icon"><i class="fa <?php echo esc_attr( $info_icons3 ); ?>"></i></span>
39
- <h4><?php echo esc_html( $info_title3 ); ?></h4>
40
- <p class="small"><?php echo wp_kses_post( $info_description3 ); ?></p>
41
- </div>
42
  </div>
43
  </div>
44
  </div>
18
  <?php if($hide_show_info == '1') { ?>
19
  <section id="features-list">
20
  <div class="container">
21
+ <div class="row">
22
+ <div class="col-md-12 mb-lg-0 mb-3">
23
+ <div class="d-flex flex-lg-nowrap flex-wrap justify-content-lg-start justify-content-center">
24
+ <div class="features-list-item features-touch first wow fadeInUp" data-wow-delay="0.1s">
25
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons ); ?>"></i></span>
26
+ <h4><?php echo esc_html( $info_title ); ?></h4>
27
+ <p class="small"><?php echo wp_kses_post( $info_description ); ?></p>
28
+ </div>
29
+ <div class="features-list-item features-touch second wow fadeInUp" data-wow-delay="0.2s">
30
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons2 ); ?>"></i></span>
31
+ <h4><?php echo esc_html( $info_title2 ); ?></h4>
32
+ <p class="small"><?php echo wp_kses_post( $info_description2 ); ?></p>
33
+ </div>
34
+ <div class="features-list-item features-touch third wow fadeInUp" data-wow-delay="0.3s">
35
+ <span class="icon"><i class="fa <?php echo esc_attr( $info_icons3 ); ?>"></i></span>
36
+ <h4><?php echo esc_html( $info_title3 ); ?></h4>
37
+ <p class="small"><?php echo wp_kses_post( $info_description3 ); ?></p>
38
+ </div>
39
+ </div>
 
 
40
  </div>
41
  </div>
42
  </div>
readme.txt CHANGED
@@ -31,6 +31,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
31
 
32
 
33
  == Changelog ==
 
 
 
34
  = 1.1.26 =
35
  * Code Improvement
36
 
31
 
32
 
33
  == Changelog ==
34
+ = 1.1.27 =
35
+ * Made Info Section Seprately For All Theme
36
+
37
  = 1.1.26 =
38
  * Code Improvement
39