Clever Fox - Version 14.4

Version Description

  • Fixed Escaping Issue
Download this release

Release Info

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

Code changes from version 14.3 to 14.4

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.3
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.4
7
  Author: nayrathemes
8
  Author URI: https://nayrathemes.com
9
  Text Domain: clever-fox
inc/conceptly/features/conceptly-call-to-action.php CHANGED
@@ -235,7 +235,7 @@ $selective_refresh = isset( $wp_customize->selective_refresh ) ? 'postMessage' :
235
  $wp_customize->add_setting(
236
  'call_action_background_setting' ,
237
  array(
238
- 'default' => CLEVERFOX_PLUGIN_URL . 'inc/conceptly/images/bg/cta-bg.jpg',
239
  'capability' => 'edit_theme_options',
240
  'sanitize_callback' => 'conceptly_sanitize_url',
241
  'priority' => 16,
235
  $wp_customize->add_setting(
236
  'call_action_background_setting' ,
237
  array(
238
+ 'default' => esc_url(CLEVERFOX_PLUGIN_URL . 'inc/conceptly/images/bg/cta-bg.jpg'),
239
  'capability' => 'edit_theme_options',
240
  'sanitize_callback' => 'conceptly_sanitize_url',
241
  'priority' => 16,
inc/conceptly/sections/section-cta.php CHANGED
@@ -8,7 +8,7 @@ if ( ! function_exists( 'conceptly_lite_cta' ) ) :
8
  $call_action_button_label = get_theme_mod('call_action_button_label','Purchase Now');
9
  $call_action_button_link = get_theme_mod('call_action_button_link','');
10
  $call_action_button_target= get_theme_mod('call_action_button_target');
11
- $call_action_background_setting= get_theme_mod('call_action_background_setting',CLEVERFOX_PLUGIN_URL .'inc/conceptly/images/bg/cta-bg.jpg');
12
  $cta_background_position= get_theme_mod('cta_background_position','scroll');
13
  if($hide_show_cta == '1') {
14
  ?>
8
  $call_action_button_label = get_theme_mod('call_action_button_label','Purchase Now');
9
  $call_action_button_link = get_theme_mod('call_action_button_link','');
10
  $call_action_button_target= get_theme_mod('call_action_button_target');
11
+ $call_action_background_setting= get_theme_mod('call_action_background_setting',esc_url(CLEVERFOX_PLUGIN_URL .'inc/conceptly/images/bg/cta-bg.jpg'));
12
  $cta_background_position= get_theme_mod('cta_background_position','scroll');
13
  if($hide_show_cta == '1') {
14
  ?>
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.3
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.3 =
140
  * Readme Updated
141
 
4
  Requires at least: 4.0
5
  Tested up to: 6.0
6
  Requires PHP: 5.6
7
+ Stable tag: 14.4
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.4 =
140
+ * Fixed Escaping Issue
141
+
142
  = 14.3 =
143
  * Readme Updated
144