Version Description
- Conceptly Theme Escaping Issue Fixed in Service Section
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 11.0 |
Comparing to | |
See all releases |
Code changes from version 10.9 to 11.0
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: 11.0
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/conceptly/features/conceptly-service.php
CHANGED
@@ -103,7 +103,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
103 |
array(
|
104 |
'default' => __('These are the services we provide, these makes us stand apart.','clever-fox'),
|
105 |
'capability' => 'edit_theme_options',
|
106 |
-
'sanitize_callback' => '
|
107 |
'transport' => $selective_refresh,
|
108 |
'priority' => 5,
|
109 |
)
|
103 |
array(
|
104 |
'default' => __('These are the services we provide, these makes us stand apart.','clever-fox'),
|
105 |
'capability' => 'edit_theme_options',
|
106 |
+
'sanitize_callback' => 'conceptly_sanitize_html',
|
107 |
'transport' => $selective_refresh,
|
108 |
'priority' => 5,
|
109 |
)
|
inc/conceptly/sections/section-service.php
CHANGED
@@ -13,10 +13,10 @@ if($hide_show_service == '1') {?>
|
|
13 |
<div class="col-lg-8 col-md-10 col-12">
|
14 |
<div class="section-title">
|
15 |
<?php if ( ! empty( $service_title ) || is_customize_preview() ) : ?>
|
16 |
-
<h2><?php echo
|
17 |
<?php endif; ?>
|
18 |
<?php if($service_description) {?>
|
19 |
-
<p><?php echo
|
20 |
<?php
|
21 |
}
|
22 |
?>
|
13 |
<div class="col-lg-8 col-md-10 col-12">
|
14 |
<div class="section-title">
|
15 |
<?php if ( ! empty( $service_title ) || is_customize_preview() ) : ?>
|
16 |
+
<h2><?php echo wp_kses_post( $service_title ); ?><span></span></h2>
|
17 |
<?php endif; ?>
|
18 |
<?php if($service_description) {?>
|
19 |
+
<p><?php echo wp_kses_post( $service_description ); ?></p>
|
20 |
<?php
|
21 |
}
|
22 |
?>
|
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: 5.9
|
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 |
|
@@ -126,6 +126,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
|
|
126 |
|
127 |
== Changelog ==
|
128 |
|
|
|
|
|
|
|
129 |
= 10.9 =
|
130 |
* Hantus Theme Escaping Issue Fixed in Service Section
|
131 |
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.9
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 11.0
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
126 |
|
127 |
== Changelog ==
|
128 |
|
129 |
+
= 11.0 =
|
130 |
+
* Conceptly Theme Escaping Issue Fixed in Service Section
|
131 |
+
|
132 |
= 10.9 =
|
133 |
* Hantus Theme Escaping Issue Fixed in Service Section
|
134 |
|