Clever Fox - Version 15.1

Version Description

  • Varuda Theme Files Added
Download this release

Release Info

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

Code changes from version 15.0 to 15.1

Files changed (3) hide show
  1. clever-fox.php +5 -1
  2. inc/varuda/varuda.php +36 -0
  3. 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: 15.0
7
  Author: nayrathemes
8
  Author URI: https://nayrathemes.com
9
  Text Domain: clever-fox
@@ -152,6 +152,10 @@ function cleverfox_activate() {
152
  require_once('inc/eduvert/eduvert.php');
153
  }
154
 
 
 
 
 
155
  }
156
  add_action( 'init', 'cleverfox_activate' );
157
 
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: 15.1
7
  Author: nayrathemes
8
  Author URI: https://nayrathemes.com
9
  Text Domain: clever-fox
152
  require_once('inc/eduvert/eduvert.php');
153
  }
154
 
155
+ if( 'Varuda' == $theme->name){
156
+ require_once('inc/varuda/varuda.php');
157
+ }
158
+
159
  }
160
  add_action( 'init', 'cleverfox_activate' );
161
 
inc/varuda/varuda.php ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * @package Avril
4
+ */
5
+
6
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/extras.php';
7
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/dynamic-style.php';
8
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/sections/above-header.php';
9
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-header.php';
10
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-features.php';
11
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-info.php';
12
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-service.php';
13
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-slider.php';
14
+ require CLEVERFOX_PLUGIN_DIR . 'inc/axtria/features/avril-team.php';
15
+ require CLEVERFOX_PLUGIN_DIR . 'inc/axtria/features/avril-funfact.php';
16
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/features/avril-typography.php';
17
+
18
+ if ( ! function_exists( 'cleverfox_avril_frontpage_sections' ) ) :
19
+ function cleverfox_avril_frontpage_sections() {
20
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/sections/section-slider.php';
21
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/sections/section-info.php';
22
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/sections/section-service.php';
23
+ require CLEVERFOX_PLUGIN_DIR . 'inc/avril/sections/section-features.php';
24
+ require CLEVERFOX_PLUGIN_DIR . 'inc/axtria/sections/section-team.php';
25
+ require CLEVERFOX_PLUGIN_DIR . 'inc/axtria/sections/section-funfact.php';
26
+ }
27
+ add_action( 'avril_sections', 'cleverfox_avril_frontpage_sections' );
28
+ endif;
29
+
30
+ function cleverfox_avril_enqueue_scripts() {
31
+ wp_enqueue_script( 'counterup', CLEVERFOX_PLUGIN_URL .'/inc/assets/js/jquery.counterup.min.js', array('jquery'), false, true);
32
+ wp_enqueue_style('animate',CLEVERFOX_PLUGIN_URL .'/inc/assets/css/animate.css');
33
+ wp_enqueue_style('owl-carousel-min',CLEVERFOX_PLUGIN_URL .'/inc/assets/css/owl.carousel.min.css');
34
+ wp_enqueue_script( 'owl-carousel', CLEVERFOX_PLUGIN_URL . 'inc/assets/js/owl.carousel.min.js', array('jquery'), false, true);
35
+ }
36
+ add_action( 'wp_enqueue_scripts', 'cleverfox_avril_enqueue_scripts' );
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: homepage, companion, demo, sections, customizer, widget, settings
4
  Requires at least: 4.0
5
  Tested up to: 6.0
6
  Requires PHP: 5.6
7
- Stable tag: 15.0
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
@@ -136,6 +136,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
136
 
137
  == Changelog ==
138
 
 
 
 
139
  = 15.0 =
140
  * Fixed Sainitization Issue in Conceptly Theme
141
 
4
  Requires at least: 4.0
5
  Tested up to: 6.0
6
  Requires PHP: 5.6
7
+ Stable tag: 15.1
8
  License: GPLv3 or later
9
  License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
10
 
136
 
137
  == Changelog ==
138
 
139
+ = 15.1 =
140
+ * Varuda Theme Files Added
141
+
142
  = 15.0 =
143
  * Fixed Sainitization Issue in Conceptly Theme
144