Version Description
- Envira Funfact Section Escaping Issue Fixed
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 14.6 |
Comparing to | |
See all releases |
Code changes from version 14.5 to 14.6
- clever-fox.php +1 -1
- inc/envira/features/funfact-section.php +1 -1
- inc/envira/sections/section-funfact.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: 14.
|
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.6
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/envira/features/funfact-section.php
CHANGED
@@ -99,7 +99,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
|
|
99 |
$wp_customize->add_setting(
|
100 |
'funfact_background_setting' ,
|
101 |
array(
|
102 |
-
'default' => CLEVERFOX_PLUGIN_URL . 'inc/envira/images/factbg.jpg',
|
103 |
'capability' => 'edit_theme_options',
|
104 |
'sanitize_callback' => 'startkit_sanitize_url',
|
105 |
)
|
99 |
$wp_customize->add_setting(
|
100 |
'funfact_background_setting' ,
|
101 |
array(
|
102 |
+
'default' => esc_url(CLEVERFOX_PLUGIN_URL . 'inc/envira/images/factbg.jpg'),
|
103 |
'capability' => 'edit_theme_options',
|
104 |
'sanitize_callback' => 'startkit_sanitize_url',
|
105 |
)
|
inc/envira/sections/section-funfact.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
function startkit_funfact_plu() {
|
4 |
$hide_show_funfact = get_theme_mod('hide_show_funfact','1');
|
5 |
$funfact_contents = get_theme_mod('funfact_contents',startkit_get_funfact_default());
|
6 |
-
$funfact_background_setting = get_theme_mod('funfact_background_setting',CLEVERFOX_PLUGIN_URL . 'inc/envira/images/factbg.jpg');
|
7 |
$funfact_background_position= get_theme_mod('funfact_background_position','fixed');
|
8 |
if($hide_show_funfact == '1') {
|
9 |
if ( ! empty( $funfact_background_setting ) ) { ?>
|
3 |
function startkit_funfact_plu() {
|
4 |
$hide_show_funfact = get_theme_mod('hide_show_funfact','1');
|
5 |
$funfact_contents = get_theme_mod('funfact_contents',startkit_get_funfact_default());
|
6 |
+
$funfact_background_setting = get_theme_mod('funfact_background_setting',esc_url(CLEVERFOX_PLUGIN_URL . 'inc/envira/images/factbg.jpg'));
|
7 |
$funfact_background_position= get_theme_mod('funfact_background_position','fixed');
|
8 |
if($hide_show_funfact == '1') {
|
9 |
if ( ! empty( $funfact_background_setting ) ) { ?>
|
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: 14.
|
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 |
= 14.5 =
|
140 |
* Envira Service Section Code Improved
|
141 |
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 6.0
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 14.6
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
136 |
|
137 |
== Changelog ==
|
138 |
|
139 |
+
= 14.6 =
|
140 |
+
* Envira Funfact Section Escaping Issue Fixed
|
141 |
+
|
142 |
= 14.5 =
|
143 |
* Envira Service Section Code Improved
|
144 |
|