Version Description
- Fixed Escaping Issue
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 14.0 |
Comparing to | |
See all releases |
Code changes from version 13.9 to 14.0
- clever-fox.php +1 -1
- inc/hantus/sections/section-info.php +3 -3
- inc/techine/sections/above-header.php +1 -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 |
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: 14.0
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/hantus/sections/section-info.php
CHANGED
@@ -2,19 +2,19 @@
|
|
2 |
if ( ! function_exists( 'hantus_lite_info' ) ) :
|
3 |
function hantus_lite_info() {
|
4 |
$hide_show_info = get_theme_mod('hide_show_info','1');
|
5 |
-
$info_first_img_setting = get_theme_mod('info_first_img_setting',CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon01.jpg');
|
6 |
$info_title = get_theme_mod('info_title','Opening Time');
|
7 |
$info_description = get_theme_mod('info_description','Mon - Sat: 10h00 - 18h00');
|
8 |
$info_btn = get_theme_mod('info_btn','Read More');
|
9 |
$info_link = get_theme_mod('info_link','#');
|
10 |
|
11 |
-
$info_second_img_setting= get_theme_mod('info_second_img_setting',CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon02.jpg');
|
12 |
$info_title2 = get_theme_mod('info_title2','Address');
|
13 |
$info_description2 = get_theme_mod('info_description2','40 Baria Sreet, NY USAm');
|
14 |
$info_btn2 = get_theme_mod('info_btn2','Read More');
|
15 |
$info_link2 = get_theme_mod('info_link2','#');
|
16 |
|
17 |
-
$info_third_img_setting = get_theme_mod('info_third_img_setting',CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon03.jpg');
|
18 |
$info_title3 = get_theme_mod('info_title3','Telephone');
|
19 |
$info_description3 = get_theme_mod('info_description3','+12 345 678 9101');
|
20 |
$info_btn3 = get_theme_mod('info_btn3','Read More');
|
2 |
if ( ! function_exists( 'hantus_lite_info' ) ) :
|
3 |
function hantus_lite_info() {
|
4 |
$hide_show_info = get_theme_mod('hide_show_info','1');
|
5 |
+
$info_first_img_setting = get_theme_mod('info_first_img_setting',esc_url(CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon01.jpg'));
|
6 |
$info_title = get_theme_mod('info_title','Opening Time');
|
7 |
$info_description = get_theme_mod('info_description','Mon - Sat: 10h00 - 18h00');
|
8 |
$info_btn = get_theme_mod('info_btn','Read More');
|
9 |
$info_link = get_theme_mod('info_link','#');
|
10 |
|
11 |
+
$info_second_img_setting= get_theme_mod('info_second_img_setting',esc_url(CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon02.jpg'));
|
12 |
$info_title2 = get_theme_mod('info_title2','Address');
|
13 |
$info_description2 = get_theme_mod('info_description2','40 Baria Sreet, NY USAm');
|
14 |
$info_btn2 = get_theme_mod('info_btn2','Read More');
|
15 |
$info_link2 = get_theme_mod('info_link2','#');
|
16 |
|
17 |
+
$info_third_img_setting = get_theme_mod('info_third_img_setting',esc_url(CLEVERFOX_PLUGIN_URL . 'inc/hantus/images/icons/icon03.jpg'));
|
18 |
$info_title3 = get_theme_mod('info_title3','Telephone');
|
19 |
$info_description3 = get_theme_mod('info_description3','+12 345 678 9101');
|
20 |
$info_btn3 = get_theme_mod('info_btn3','Read More');
|
inc/techine/sections/above-header.php
CHANGED
@@ -88,7 +88,7 @@ if ( ! function_exists( 'conceptly_header_nav' ) ) :
|
|
88 |
<?php } ?>
|
89 |
<?php if($hide_show_faq =='1'){ ?>
|
90 |
<?php if($header_faq) {?>
|
91 |
-
<li class="tlh-faq"><a href="#"><i class="fa <?php echo esc_attr($header_faq_icon); ?>"></i><?php echo $header_faq; ?></a></li>
|
92 |
<?php } ?>
|
93 |
<?php } ?>
|
94 |
</ul>
|
88 |
<?php } ?>
|
89 |
<?php if($hide_show_faq =='1'){ ?>
|
90 |
<?php if($header_faq) {?>
|
91 |
+
<li class="tlh-faq"><a href="#"><i class="fa <?php echo esc_attr($header_faq_icon); ?>"></i><?php echo esc_html($header_faq); ?></a></li>
|
92 |
<?php } ?>
|
93 |
<?php } ?>
|
94 |
</ul>
|
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:
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
@@ -134,6 +134,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
|
|
134 |
|
135 |
== Changelog ==
|
136 |
|
|
|
|
|
|
|
137 |
= 13.9 =
|
138 |
* Ampark Theme Files Added
|
139 |
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 14.0
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
134 |
|
135 |
== Changelog ==
|
136 |
|
137 |
+
= 14.0 =
|
138 |
+
* Fixed Escaping Issue
|
139 |
+
|
140 |
= 13.9 =
|
141 |
* Ampark Theme Files Added
|
142 |
|