Version Description
- Text Domain Updated in Fiona Blog Theme
Download this release
Release Info
Developer | nayrathemes |
Plugin | Clever Fox |
Version | 7.1 |
Comparing to | |
See all releases |
Code changes from version 7.0 to 7.1
- clever-fox.php +1 -1
- inc/fiona-blog/widgets/class-author-widget.php +10 -10
- 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 us. Clever Fox contains all features which are required to create a complete website. See below free themes.
|
6 |
-
Version: 7.
|
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 us. Clever Fox contains all features which are required to create a complete website. See below free themes.
|
6 |
+
Version: 7.1
|
7 |
Author: nayrathemes
|
8 |
Author URI: https://nayrathemes.com
|
9 |
Text Domain: clever-fox
|
inc/fiona-blog/widgets/class-author-widget.php
CHANGED
@@ -8,8 +8,8 @@ class fiona_blog_author_widget extends WP_Widget{
|
|
8 |
function __construct() {
|
9 |
parent::__construct(
|
10 |
'fiona_blog_author_widget', // Base ID
|
11 |
-
__('Fiona : Author Widget','
|
12 |
-
array( 'description' => __('Author widget', '
|
13 |
);
|
14 |
}
|
15 |
|
@@ -63,9 +63,9 @@ class fiona_blog_author_widget extends WP_Widget{
|
|
63 |
$instance['author_description_hs'] = isset($instance['author_description_hs']) ? $instance['author_description_hs'] : '1';
|
64 |
?>
|
65 |
<p>
|
66 |
-
<label for="<?php echo $this->get_field_id( 'selected_author_id' ); ?>"><?php _e('Select Author','
|
67 |
<select class="widefat" id="<?php echo $this->get_field_id( 'selected_author_id' ); ?>" name="<?php echo $this->get_field_name( 'selected_author_id' ); ?>">
|
68 |
-
<option value>--<?php echo __('Select','
|
69 |
<?php
|
70 |
$selected_author_id = $instance['selected_author_id'];
|
71 |
$users = get_users();
|
@@ -84,32 +84,32 @@ class fiona_blog_author_widget extends WP_Widget{
|
|
84 |
|
85 |
<p>
|
86 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_image_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_image_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_image_hs' ); ?>" value="<?php if($instance[ 'author_image_hs' ]) echo esc_html( $instance[ 'author_image_hs' ] ); ?>"/>
|
87 |
-
<label for="<?php echo $this->get_field_id( 'author_image_hs' ); ?>"><?php _e( 'Hide/show Image ?','
|
88 |
</p>
|
89 |
|
90 |
<p>
|
91 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_nickname_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_nickname_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_nickname_hs' ); ?>" value="<?php if($instance[ 'author_nickname_hs' ]) echo esc_html( $instance[ 'author_nickname_hs' ] ); ?>"/>
|
92 |
-
<label for="<?php echo $this->get_field_id( 'author_nickname_hs' ); ?>"><?php _e( 'Hide/show Nickname ?','
|
93 |
</p>
|
94 |
|
95 |
<p>
|
96 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_first_name_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_first_name_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_first_name_hs' ); ?>" value="<?php if($instance[ 'author_first_name_hs' ]) echo esc_html( $instance[ 'author_first_name_hs' ] ); ?>"/>
|
97 |
-
<label for="<?php echo $this->get_field_id( 'author_first_name_hs' ); ?>"><?php _e( 'Hide/show First Name ?','
|
98 |
</p>
|
99 |
|
100 |
<p>
|
101 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_last_name_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_last_name_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_last_name_hs' ); ?>" value="<?php if($instance[ 'author_last_name_hs' ]) echo esc_html( $instance[ 'author_last_name_hs' ] ); ?>"/>
|
102 |
-
<label for="<?php echo $this->get_field_id( 'author_last_name_hs' ); ?>"><?php _e( 'Hide/show Last Name ?','
|
103 |
</p>
|
104 |
|
105 |
<p>
|
106 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_designation_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_designation_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_designation_hs' ); ?>" value="<?php if($instance[ 'author_designation_hs' ]) echo esc_html( $instance[ 'author_designation_hs' ] ); ?>"/>
|
107 |
-
<label for="<?php echo $this->get_field_id( 'author_designation_hs' ); ?>"><?php _e( 'Hide/show Designation ?','
|
108 |
</p>
|
109 |
|
110 |
<p>
|
111 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_description_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_description_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_description_hs' ); ?>" value="<?php if($instance[ 'author_description_hs' ]) echo esc_html( $instance[ 'author_description_hs' ] ); ?>"/>
|
112 |
-
<label for="<?php echo $this->get_field_id( 'author_description_hs' ); ?>"><?php _e( 'Hide/show Description ?','
|
113 |
</p>
|
114 |
|
115 |
<?php ?>
|
8 |
function __construct() {
|
9 |
parent::__construct(
|
10 |
'fiona_blog_author_widget', // Base ID
|
11 |
+
__('Fiona : Author Widget','clever-fox'), // Name
|
12 |
+
array( 'description' => __('Author widget', 'clever-fox' ), ) // Args
|
13 |
);
|
14 |
}
|
15 |
|
63 |
$instance['author_description_hs'] = isset($instance['author_description_hs']) ? $instance['author_description_hs'] : '1';
|
64 |
?>
|
65 |
<p>
|
66 |
+
<label for="<?php echo $this->get_field_id( 'selected_author_id' ); ?>"><?php _e('Select Author','clever-fox'); ?></label>
|
67 |
<select class="widefat" id="<?php echo $this->get_field_id( 'selected_author_id' ); ?>" name="<?php echo $this->get_field_name( 'selected_author_id' ); ?>">
|
68 |
+
<option value>--<?php echo __('Select','clever-fox'); ?>--</option>
|
69 |
<?php
|
70 |
$selected_author_id = $instance['selected_author_id'];
|
71 |
$users = get_users();
|
84 |
|
85 |
<p>
|
86 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_image_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_image_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_image_hs' ); ?>" value="<?php if($instance[ 'author_image_hs' ]) echo esc_html( $instance[ 'author_image_hs' ] ); ?>"/>
|
87 |
+
<label for="<?php echo $this->get_field_id( 'author_image_hs' ); ?>"><?php _e( 'Hide/show Image ?','clever-fox' ); ?></label>
|
88 |
</p>
|
89 |
|
90 |
<p>
|
91 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_nickname_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_nickname_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_nickname_hs' ); ?>" value="<?php if($instance[ 'author_nickname_hs' ]) echo esc_html( $instance[ 'author_nickname_hs' ] ); ?>"/>
|
92 |
+
<label for="<?php echo $this->get_field_id( 'author_nickname_hs' ); ?>"><?php _e( 'Hide/show Nickname ?','clever-fox' ); ?></label>
|
93 |
</p>
|
94 |
|
95 |
<p>
|
96 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_first_name_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_first_name_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_first_name_hs' ); ?>" value="<?php if($instance[ 'author_first_name_hs' ]) echo esc_html( $instance[ 'author_first_name_hs' ] ); ?>"/>
|
97 |
+
<label for="<?php echo $this->get_field_id( 'author_first_name_hs' ); ?>"><?php _e( 'Hide/show First Name ?','clever-fox' ); ?></label>
|
98 |
</p>
|
99 |
|
100 |
<p>
|
101 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_last_name_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_last_name_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_last_name_hs' ); ?>" value="<?php if($instance[ 'author_last_name_hs' ]) echo esc_html( $instance[ 'author_last_name_hs' ] ); ?>"/>
|
102 |
+
<label for="<?php echo $this->get_field_id( 'author_last_name_hs' ); ?>"><?php _e( 'Hide/show Last Name ?','clever-fox' ); ?></label>
|
103 |
</p>
|
104 |
|
105 |
<p>
|
106 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_designation_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_designation_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_designation_hs' ); ?>" value="<?php if($instance[ 'author_designation_hs' ]) echo esc_html( $instance[ 'author_designation_hs' ] ); ?>"/>
|
107 |
+
<label for="<?php echo $this->get_field_id( 'author_designation_hs' ); ?>"><?php _e( 'Hide/show Designation ?','clever-fox' ); ?></label>
|
108 |
</p>
|
109 |
|
110 |
<p>
|
111 |
<input class="checkbox" type="checkbox" <?php checked( $instance[ 'author_description_hs' ], '1' ); ?> id="<?php echo $this->get_field_id( 'author_description_hs' ); ?>" name="<?php echo $this->get_field_name( 'author_description_hs' ); ?>" value="<?php if($instance[ 'author_description_hs' ]) echo esc_html( $instance[ 'author_description_hs' ] ); ?>"/>
|
112 |
+
<label for="<?php echo $this->get_field_id( 'author_description_hs' ); ?>"><?php _e( 'Hide/show Description ?','clever-fox' ); ?></label>
|
113 |
</p>
|
114 |
|
115 |
<?php ?>
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: demo, sections, customizer, widget, settings
|
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 7.
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
@@ -106,6 +106,9 @@ Clever Fox WordPress plugin is licensed under the GPL3 (https://www.gnu.org/lice
|
|
106 |
|
107 |
== Changelog ==
|
108 |
|
|
|
|
|
|
|
109 |
= 7.0 =
|
110 |
* Text Domain Updated in Fiona Blog Theme
|
111 |
|
4 |
Requires at least: 4.0
|
5 |
Tested up to: 5.8
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 7.1
|
8 |
License: GPLv3 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.en.html
|
10 |
|
106 |
|
107 |
== Changelog ==
|
108 |
|
109 |
+
= 7.1 =
|
110 |
+
* Text Domain Updated in Fiona Blog Theme
|
111 |
+
|
112 |
= 7.0 =
|
113 |
* Text Domain Updated in Fiona Blog Theme
|
114 |
|