Shortcodes and extra features for Phlox theme - Version 2.8.5

Version Description

Download this release

Release Info

Developer averta
Plugin Icon 128x128 Shortcodes and extra features for Phlox theme
Version 2.8.5
Comparing to
See all releases

Code changes from version 2.8.4 to 2.8.5

README.txt CHANGED
@@ -7,7 +7,7 @@ Tags: phlox, gallery, elementor, siteorigin, auxin, averta, auxin-elements, fram
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.7.2
10
- Stable tag: 2.8.4
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
7
  Requires PHP: 5.4
8
  Requires at least: 4.6
9
  Tested up to: 5.7.2
10
+ Stable tag: 2.8.5
11
  License: GPLv3
12
  License URI: http://www.gnu.org/licenses/gpl.html
13
 
admin/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.8.4 (2021-07)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
1
+ /*! Phlox Core Plugin - v2.8.5 (2021-08)
2
  * All required javascript plugins for admin
3
  * http://phlox.pro/
4
  * Place any jQuery/helper plugins in here, instead of separate, slower script files!
admin/includes/compatibility/ti-woocommerce-wishlist/ti-woocommerce-wishlist.php CHANGED
@@ -13,6 +13,7 @@ function auxels_set_ti_wishlist_required_options() {
13
  tinv_update_option( 'add_to_wishlist', 'position', 'shortcode' );
14
  tinv_update_option( 'add_to_wishlist_catalog', 'position', 'shortcode' );
15
  tinv_update_option( 'general', 'redirect', 0 );
 
16
  set_theme_mod( 'ti_wishlist_initiated', 'yes' );
17
  }
18
  add_action( 'admin_init', 'auxels_set_ti_wishlist_required_options' );
13
  tinv_update_option( 'add_to_wishlist', 'position', 'shortcode' );
14
  tinv_update_option( 'add_to_wishlist_catalog', 'position', 'shortcode' );
15
  tinv_update_option( 'general', 'redirect', 0 );
16
+ tinv_update_option( 'general', 'simple_flow', 1 );
17
  set_theme_mod( 'ti_wishlist_initiated', 'yes' );
18
  }
19
  add_action( 'admin_init', 'auxels_set_ti_wishlist_required_options' );
auxin-elements.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
- * Version: 2.8.4
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
12
  * Plugin Name: Phlox Core Elements
13
  * Plugin URI: https://wordpress.org/plugins/auxin-elements/
14
  * Description: Exclusive and comprehensive plugin that extends the functionality of Phlox theme by adding new Elements, widgets and options.
15
+ * Version: 2.8.5
16
  * Author: averta
17
  * Author URI: http://averta.net
18
  * Text Domain: auxin-elements
includes/classes/class-auxin-demo-importer.php CHANGED
@@ -840,6 +840,8 @@ class Auxin_Demo_Importer {
840
  auxin_set_transient( "aux-page-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
841
  }
842
 
 
 
843
  //Check post terms existence
844
  if ( ! empty( $post['post_terms'] ) ){
845
  // Start adding post terms
@@ -1163,15 +1165,16 @@ class Auxin_Demo_Importer {
1163
  if ( ! empty( $elementor_tags ) ) {
1164
  foreach( $elementor_tags as $key => $tag ) {
1165
  // tag is page url
1166
- if ( strpos( $tag[0], 'aux-pages-url' ) ) {
1167
  preg_match_all( '/settings=\\\"(.+)?\\\"/', $tag[0], $key_values, PREG_SET_ORDER );
1168
  if ( ! empty( $key_values ) ) {
1169
  foreach ( $key_values as $tag_key => $key_value ) {
1170
  $old_key_value = urldecode( $key_value[1] );
 
1171
  $page_id = str_replace( '{"key":"', '', $old_key_value );
1172
  $page_id = str_replace( '"}', '', $page_id );
1173
 
1174
- $new_page_id = auxin_get_transient( "aux-page-{$page_id}-changs-to" );
1175
  $new_key_value = urlencode('{"key":"' . $new_page_id . '"}');
1176
  $new_tag = str_replace( $key_value[1], $new_key_value, $tag[0] );
1177
  $elementor_data = str_replace( $tag[0], $new_tag, $elementor_data );
840
  auxin_set_transient( "aux-page-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
841
  }
842
 
843
+ auxin_set_transient( "aux-all-posts-{$post['ID']}-changs-to", $post_id, 48 * HOUR_IN_SECONDS );
844
+
845
  //Check post terms existence
846
  if ( ! empty( $post['post_terms'] ) ){
847
  // Start adding post terms
1165
  if ( ! empty( $elementor_tags ) ) {
1166
  foreach( $elementor_tags as $key => $tag ) {
1167
  // tag is page url
1168
+ if ( strpos( $tag[0], 'aux-pages-url' ) || strpos( $tag[0], 'aux-posts-url' ) ) {
1169
  preg_match_all( '/settings=\\\"(.+)?\\\"/', $tag[0], $key_values, PREG_SET_ORDER );
1170
  if ( ! empty( $key_values ) ) {
1171
  foreach ( $key_values as $tag_key => $key_value ) {
1172
  $old_key_value = urldecode( $key_value[1] );
1173
+ // here we assume we have dynamic page tag
1174
  $page_id = str_replace( '{"key":"', '', $old_key_value );
1175
  $page_id = str_replace( '"}', '', $page_id );
1176
 
1177
+ $new_page_id = auxin_get_transient( "aux-all-posts-{$page_id}-changs-to" );
1178
  $new_key_value = urlencode('{"key":"' . $new_page_id . '"}');
1179
  $new_tag = str_replace( $key_value[1], $new_key_value, $tag[0] );
1180
  $elementor_data = str_replace( $tag[0], $new_tag, $elementor_data );
includes/compatibility/wpml/integration-classes/accordion-items.php DELETED
@@ -1,50 +0,0 @@
1
- <?php
2
- if( class_exists('WPML_Elementor_Module_With_Items') ) {
3
- /**
4
- * Class WPML_Elementor_Icon_List
5
- */
6
- class Auxin_WPML_Elementor_Accordion extends WPML_Elementor_Module_With_Items {
7
- /**
8
- * @return string
9
- */
10
- public function get_items_field() {
11
- return 'tab_items';
12
- }
13
- /**
14
- * @return array
15
- */
16
- public function get_fields() {
17
- return array( 'accordion_label', 'content' );
18
- }
19
- /**
20
- * @param string $field
21
- *
22
- * @return string
23
- */
24
- protected function get_title( $field ) {
25
- switch( $field ) {
26
- case 'accordion_label':
27
- return esc_html__( 'Accordion: Label', 'auxin-elements' );
28
- case 'content':
29
- return esc_html__( 'Accordion: Content', 'auxin-elements' );
30
- default:
31
- return '';
32
- }
33
- }
34
- /**
35
- * @param string $field
36
- *
37
- * @return string
38
- */
39
- protected function get_editor_type( $field ) {
40
- switch( $field ) {
41
- case 'accordion_label':
42
- return 'LINE';
43
- case 'content':
44
- return 'VISUAL';
45
- default:
46
- return '';
47
- }
48
- }
49
- }
50
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/compatibility/wpml/integration-classes/flexible-list.php DELETED
@@ -1,53 +0,0 @@
1
- <?php
2
- if( class_exists('WPML_Elementor_Module_With_Items') ) {
3
- /**
4
- * Class WPML_Elementor_Icon_List
5
- */
6
- class Auxin_WPML_Elementor_Icon_List extends WPML_Elementor_Module_With_Items {
7
- /**
8
- * @return string
9
- */
10
- public function get_items_field() {
11
- return 'list';
12
- }
13
- /**
14
- * @return array
15
- */
16
- public function get_fields() {
17
- return array( 'text_primary', 'text_secondary', 'link' => array( 'url' ) );
18
- }
19
- /**
20
- * @param string $field
21
- *
22
- * @return string
23
- */
24
- protected function get_title( $field ) {
25
- switch( $field ) {
26
- case 'text_primary':
27
- return esc_html__( 'Flexible List: Text', 'auxin-elements' );
28
- case 'text_secondary':
29
- return esc_html__( 'Flexible List: Secondary Text', 'auxin-elements' );
30
- case 'link':
31
- return esc_html__( 'Flexible List: Link', 'auxin-elements' );
32
- default:
33
- return '';
34
- }
35
- }
36
- /**
37
- * @param string $field
38
- *
39
- * @return string
40
- */
41
- protected function get_editor_type( $field ) {
42
- switch( $field ) {
43
- case 'text_primary':
44
- case 'text_secondary':
45
- return 'LINE';
46
- case 'url':
47
- return 'LINK';
48
- default:
49
- return '';
50
- }
51
- }
52
- }
53
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/compatibility/wpml/integration-classes/tabs.php DELETED
@@ -1,50 +0,0 @@
1
- <?php
2
- if( class_exists('WPML_Elementor_Module_With_Items') ) {
3
- /**
4
- * Class WPML_Elementor_Icon_List
5
- */
6
- class Auxin_WPML_Elementor_Tabs extends WPML_Elementor_Module_With_Items {
7
- /**
8
- * @return string
9
- */
10
- public function get_items_field() {
11
- return 'tab_items';
12
- }
13
- /**
14
- * @return array
15
- */
16
- public function get_fields() {
17
- return array( 'tab_label', 'content' );
18
- }
19
- /**
20
- * @param string $field
21
- *
22
- * @return string
23
- */
24
- protected function get_title( $field ) {
25
- switch( $field ) {
26
- case 'tab_label':
27
- return esc_html__( 'Tab: Label', 'auxin-elements' );
28
- case 'content':
29
- return esc_html__( 'Tab: Content', 'auxin-elements' );
30
- default:
31
- return '';
32
- }
33
- }
34
- /**
35
- * @param string $field
36
- *
37
- * @return string
38
- */
39
- protected function get_editor_type( $field ) {
40
- switch( $field ) {
41
- case 'tab_label':
42
- return 'LINE';
43
- case 'content':
44
- return 'VISUAL';
45
- default:
46
- return '';
47
- }
48
- }
49
- }
50
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/compatibility/wpml/translate.php DELETED
@@ -1,227 +0,0 @@
1
- <?php
2
- // Include integration classes for repetition values
3
- include_once( 'integration-classes/flexible-list.php' );
4
- include_once( 'integration-classes/accordion-items.php' );
5
- include_once( 'integration-classes/tabs.php' );
6
-
7
- /**
8
- * Make our widgets compatible with WPML elementor list
9
- *
10
- * @param array $widgets
11
- * @return array
12
- */
13
- function auxin_wpml_widgets_to_translate_list( $widgets ) {
14
-
15
- $widgets[ 'aux_modern_heading' ] = array(
16
- 'conditions' => array( 'widgetType' => 'aux_modern_heading' ),
17
- 'fields' => array(
18
- array(
19
- 'field' => 'title',
20
- 'type' => __( 'Modern Heading: Title', 'auxin-elements' ),
21
- 'editor_type' => 'LINE'
22
- ),
23
- array(
24
- 'field' => 'description',
25
- 'type' => __( 'Modern Heading: Description', 'auxin-elements' ),
26
- 'editor_type' => 'VISUAL'
27
- ),
28
- array(
29
- 'field' => 'title_secondary_before',
30
- 'type' => __( 'Modern Heading: Before Text', 'auxin-elements' ),
31
- 'editor_type' => 'LINE'
32
- ),
33
- array(
34
- 'field' => 'title_secondary_highlight',
35
- 'type' => __( 'Modern Heading: Highlighted Text', 'auxin-elements' ),
36
- 'editor_type' => 'LINE'
37
- ),
38
- array(
39
- 'field' => 'title_secondary_after',
40
- 'type' => __( 'Modern Heading: After Text', 'auxin-elements' ),
41
- 'editor_type' => 'LINE'
42
- )
43
- ),
44
- );
45
-
46
- $widgets[ 'aux_icon_list' ] = array(
47
- 'conditions' => array( 'widgetType' => 'aux_icon_list' ),
48
- 'fields' => array(),
49
- 'integration-class' => 'Auxin_WPML_Elementor_Icon_List',
50
- );
51
-
52
- $widgets[ 'aux_accordion' ] = array(
53
- 'conditions' => array( 'widgetType' => 'aux_accordion' ),
54
- 'fields' => array(),
55
- 'integration-class' => 'Auxin_WPML_Elementor_Accordion',
56
- );
57
-
58
- $widgets[ 'aux_tabs' ] = array(
59
- 'conditions' => array( 'widgetType' => 'aux_tabs' ),
60
- 'fields' => array(),
61
- 'integration-class' => 'Auxin_WPML_Elementor_Tabs',
62
- );
63
-
64
- $widgets[ 'aux_button' ] = array(
65
- 'conditions' => array( 'widgetType' => 'aux_button' ),
66
- 'fields' => array(
67
- array(
68
- 'field' => 'label',
69
- 'type' => __( 'Button: Label', 'auxin-elements' ),
70
- 'editor_type' => 'LINE'
71
- ),
72
- ),
73
- );
74
-
75
- $widgets[ 'aux_contact_form' ] = array(
76
- 'conditions' => array( 'widgetType' => 'aux_contact_form' ),
77
- 'fields' => array(
78
- array(
79
- 'field' => 'label',
80
- 'type' => __( 'Contact Form 7: Shortcode', 'auxin-elements' ),
81
- 'editor_type' => 'LINE'
82
- ),
83
- ),
84
- );
85
-
86
- $widgets[ 'aux_blockquote' ] = array(
87
- 'conditions' => array( 'widgetType' => 'aux_blockquote' ),
88
- 'fields' => array(
89
- array(
90
- 'field' => 'content',
91
- 'type' => __( 'Blockquote: Content', 'auxin-elements' ),
92
- 'editor_type' => 'VISUAL'
93
- ),
94
- ),
95
- );
96
-
97
- $widgets[ 'aux_staff' ] = array(
98
- 'conditions' => array( 'widgetType' => 'aux_staff' ),
99
- 'fields' => array(
100
- array(
101
- 'field' => 'title',
102
- 'type' => __( 'Staff: Name', 'auxin-elements' ),
103
- 'editor_type' => 'LINE'
104
- ),
105
- array(
106
- 'field' => 'subtitle',
107
- 'type' => __( 'Staff: Occupation', 'auxin-elements' ),
108
- 'editor_type' => 'LINE'
109
- ),
110
- array(
111
- 'field' => 'content',
112
- 'type' => __( 'Staff: Content', 'auxin-elements' ),
113
- 'editor_type' => 'VISUAL'
114
- )
115
- ),
116
- );
117
-
118
- $widgets[ 'aux_testimonial' ] = array(
119
- 'conditions' => array( 'widgetType' => 'aux_testimonial' ),
120
- 'fields' => array(
121
- array(
122
- 'field' => 'title',
123
- 'type' => __( 'Testimonial: Name', 'auxin-elements' ),
124
- 'editor_type' => 'LINE'
125
- ),
126
- array(
127
- 'field' => 'subtitle',
128
- 'type' => __( 'Testimonial: Occupation', 'auxin-elements' ),
129
- 'editor_type' => 'LINE'
130
- ),
131
- array(
132
- 'field' => 'content',
133
- 'type' => __( 'Testimonial: Content', 'auxin-elements' ),
134
- 'editor_type' => 'VISUAL'
135
- )
136
- ),
137
- );
138
-
139
- $widgets[ 'aux_text' ] = array(
140
- 'conditions' => array( 'widgetType' => 'aux_text' ),
141
- 'fields' => array(
142
- array(
143
- 'field' => 'title',
144
- 'type' => __( 'Info Box: Name', 'auxin-elements' ),
145
- 'editor_type' => 'LINE'
146
- ),
147
- array(
148
- 'field' => 'subtitle',
149
- 'type' => __( 'Info Box: Occupation', 'auxin-elements' ),
150
- 'editor_type' => 'LINE'
151
- ),
152
- array(
153
- 'field' => 'content',
154
- 'type' => __( 'Info Box: Content', 'auxin-elements' ),
155
- 'editor_type' => 'VISUAL'
156
- ),
157
- array(
158
- 'field' => 'btn_label',
159
- 'type' => __( 'Info Box: Button label', 'auxin-elements' ),
160
- 'editor_type' => 'LINE'
161
- )
162
- ),
163
- );
164
-
165
- $widgets[ 'aux_gmap' ] = array(
166
- 'conditions' => array( 'widgetType' => 'aux_gmap' ),
167
- 'fields' => array(
168
- array(
169
- 'field' => 'latitude',
170
- 'type' => __( 'MAP: Latitude', 'auxin-elements' ),
171
- 'editor_type' => 'LINE'
172
- ),
173
- array(
174
- 'field' => 'longitude',
175
- 'type' => __( 'MAP: Longitude', 'auxin-elements' ),
176
- 'editor_type' => 'LINE'
177
- ),
178
- array(
179
- 'field' => 'marker_info',
180
- 'type' => __( 'MAP: Marker info', 'auxin-elements' ),
181
- 'editor_type' => 'LINE'
182
- )
183
- ),
184
- );
185
-
186
- $widgets['aux_modern_button'] = array(
187
- 'conditions' => array( 'widgetType' => 'aux_modern_button' ),
188
- 'fields' => array(
189
- array(
190
- 'field' => 'label',
191
- 'type' => __( 'Button: Text', 'auxin-elements' ),
192
- 'editor_type' => 'LINE'
193
- ),
194
- array(
195
- 'field' => 'label2',
196
- 'type' => __( 'Button: Highlighted Text', 'auxin-elements' ),
197
- 'editor_type' => 'LINE'
198
- ),
199
- array(
200
- 'field' => 'label3',
201
- 'type' => __( 'Button: After Text', 'auxin-elements' ),
202
- 'editor_type' => 'LINE'
203
- ),
204
- array(
205
- 'field' => 'link',
206
- 'type' => __( 'Button: Link', 'auxin-elements' ),
207
- 'editor_type' => 'LINK'
208
- )
209
- )
210
- );
211
-
212
- $widgets['aux_copyright'] = array(
213
- 'conditions' => array( 'widgetType' => 'aux_copyright' ),
214
- 'fields' => array(
215
- array(
216
- 'field' => 'copyright_text',
217
- 'type' => __( 'Copyright Text', 'auxin-elements' ),
218
- 'editor_type' => 'LINE'
219
- )
220
- )
221
- );
222
-
223
-
224
- return $widgets;
225
- }
226
-
227
- add_filter( 'wpml_elementor_widgets_to_translate', 'auxin_wpml_widgets_to_translate_list' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
includes/define.php CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
12
  }
13
 
14
 
15
- define( 'AUXELS_VERSION' , '2.8.4' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
12
  }
13
 
14
 
15
+ define( 'AUXELS_VERSION' , '2.8.5' );
16
 
17
  define( 'AUXELS_SLUG' , 'auxin-elements' );
18
 
includes/elementor/modules/dynamic-tags/posts-url.php ADDED
@@ -0,0 +1,81 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Auxin\Plugin\CoreElements\Elementor\Modules\DynamicTags;
3
+
4
+ use Elementor\Controls_Manager;
5
+ use Elementor\Core\DynamicTags\Tag;
6
+ use Elementor\Modules\DynamicTags\Module as TagsModule;
7
+
8
+ if ( ! defined( 'ABSPATH' ) ) {
9
+ exit; // Exit if accessed directly
10
+ }
11
+
12
+ class Auxin_Posts_Url extends Tag {
13
+
14
+ public function get_name() {
15
+ return 'aux-posts-url';
16
+ }
17
+
18
+ public function get_title() {
19
+ return __( 'Posts URL', 'auxin-elements' );
20
+ }
21
+
22
+ public function get_group() {
23
+ return 'URL';
24
+ }
25
+
26
+ public function get_categories() {
27
+ return [
28
+ TagsModule::URL_CATEGORY
29
+ ];
30
+ }
31
+
32
+ public function get_posts_list() {
33
+
34
+ $items = [
35
+ '' => __( 'Select...', 'auxin-elements' ),
36
+ ];
37
+ $posts = get_posts( array(
38
+ 'post_type' =>'post',
39
+ 'numberposts' => -1
40
+ ) );
41
+
42
+ foreach ( $posts as $post ) {
43
+ $items[ $post->ID ] = $post->post_title;
44
+ }
45
+
46
+ return $items;
47
+ }
48
+
49
+ public function is_settings_required() {
50
+ return true;
51
+ }
52
+
53
+ protected function _register_controls() {
54
+ $this->add_control(
55
+ 'key',
56
+ [
57
+ 'label' => __( 'Posts URL', 'auxin-elements' ),
58
+ 'type' => Controls_Manager::SELECT,
59
+ 'options' => $this->get_posts_list(),
60
+ 'default' => ''
61
+ ]
62
+ );
63
+ }
64
+
65
+ protected function get_post_url() {
66
+ if( $key = $this->get_settings( 'key' ) ){
67
+ return get_permalink( $key );
68
+ }
69
+
70
+ return '';
71
+ }
72
+
73
+ public function get_value() {
74
+ return $this->get_post_url();
75
+ }
76
+
77
+ public function render() {
78
+ echo $this->get_post_url();
79
+ }
80
+
81
+ }
includes/elementor/modules/templates-types-manager.php CHANGED
@@ -152,6 +152,12 @@ class Templates_Types_Manager {
152
  'group' => 'URL',
153
  'title' => 'URL',
154
  ),
 
 
 
 
 
 
155
  // 'aux-post-date' => array(
156
  // 'file' => AUXELS_INC_DIR . '/elementor/modules/dynamic-tags/post-date.php',
157
  // 'class' => 'DynamicTags\Post_Date',
152
  'group' => 'URL',
153
  'title' => 'URL',
154
  ),
155
+ 'aux-posts-url' => array(
156
+ 'file' => AUXELS_INC_DIR . '/elementor/modules/dynamic-tags/posts-url.php',
157
+ 'class' => 'DynamicTags\Auxin_Posts_Url',
158
+ 'group' => 'URL',
159
+ 'title' => 'URL',
160
+ ),
161
  // 'aux-post-date' => array(
162
  // 'file' => AUXELS_INC_DIR . '/elementor/modules/dynamic-tags/post-date.php',
163
  // 'class' => 'DynamicTags\Post_Date',
includes/elementor/widgets/custom-list.php CHANGED
@@ -354,7 +354,7 @@ class CustomList extends Widget_Base {
354
  'icon' => 'check-1'
355
  )
356
  ),
357
- 'fields' => array_values( $repeater->get_controls() ),
358
  'title_field' => '{{{ text_primary }}}'
359
  )
360
  );
354
  'icon' => 'check-1'
355
  )
356
  ),
357
+ 'fields' => $repeater->get_controls(),
358
  'title_field' => '{{{ text_primary }}}'
359
  )
360
  );
includes/elementor/widgets/gallery.php CHANGED
@@ -517,7 +517,7 @@ class Gallery extends Widget_Base {
517
  }
518
 
519
  $ids = wp_list_pluck( $settings['wp_gallery'], 'id' );
520
-
521
  // Gallery attributes
522
  $args = array(
523
  //'default_image_size' => 'medium',
@@ -528,11 +528,11 @@ class Gallery extends Widget_Base {
528
  'tablet_cnum' => $settings['columns_tablet'],
529
  'phone_cnum' => $settings['columns_mobile'],
530
  'space' => $settings['space']['size'],
531
- 'image_aspect_ratio' => $settings['image_aspect_ratio']['size'],
532
  'layout' => $settings['layout'],
533
  'tile_style_pattern' => $settings['tile_style_pattern'],
534
  'link' => $settings['link'],
535
- 'perpage' => $settings['perpage']['size'],
536
  'pagination' => $settings['pagination'],
537
  'lazyload' => $settings['lazyload'],
538
  'wp_order' => $settings['wp_order']
517
  }
518
 
519
  $ids = wp_list_pluck( $settings['wp_gallery'], 'id' );
520
+ $perpage = !empty( $settings['perpage']['size'] ) ? $settings['perpage']['size'] : 24;
521
  // Gallery attributes
522
  $args = array(
523
  //'default_image_size' => 'medium',
528
  'tablet_cnum' => $settings['columns_tablet'],
529
  'phone_cnum' => $settings['columns_mobile'],
530
  'space' => $settings['space']['size'],
531
+ 'image_aspect_ratio' => !empty( $settings['image_aspect_ratio']['size'] ) ? $settings['image_aspect_ratio']['size'] : 0.75,
532
  'layout' => $settings['layout'],
533
  'tile_style_pattern' => $settings['tile_style_pattern'],
534
  'link' => $settings['link'],
535
+ 'perpage' => $perpage,
536
  'pagination' => $settings['pagination'],
537
  'lazyload' => $settings['lazyload'],
538
  'wp_order' => $settings['wp_order']
includes/elementor/widgets/testimonial.php CHANGED
@@ -970,14 +970,17 @@ class Testimonial extends Widget_Base {
970
 
971
  $settings = $this->get_settings_for_display();
972
 
973
- if ( function_exists( 'auxin_maybe_create_image_size' ) ) {
974
- auxin_maybe_create_image_size( $settings['customer_img']['id'], $settings['customer_img_size'] );
 
975
  }
976
 
 
 
977
  $args = array(
978
  'template' => $settings['template'],
979
- 'image_html' => Group_Control_Image_Size::get_attachment_image_html( $settings, 'customer_img' ),
980
- 'image_size' => $settings['customer_img_size'],
981
 
982
  'title' => $settings['title'],
983
  'subtitle' => $settings['subtitle'],
970
 
971
  $settings = $this->get_settings_for_display();
972
 
973
+ $image_size = !empty( $settings['customer_img_size'] ) ? $settings['customer_img_size'] : 'thumbnail';
974
+ if ( function_exists( 'auxin_maybe_create_image_size' ) && !empty( $settings['customer_img']['id'] ) ) {
975
+ auxin_maybe_create_image_size( $settings['customer_img']['id'], $image_size );
976
  }
977
 
978
+ $image_html = !empty( $settings['customer_img']['id'] ) ? Group_Control_Image_Size::get_attachment_image_html( $settings, 'customer_img' ) : '';
979
+
980
  $args = array(
981
  'template' => $settings['template'],
982
+ 'image_html' => $image_html,
983
+ 'image_size' => $image_size,
984
 
985
  'title' => $settings['title'],
986
  'subtitle' => $settings['subtitle'],
includes/elementor/widgets/theme-elements/menu.php CHANGED
@@ -1589,7 +1589,7 @@ class MenuBox extends Widget_Base {
1589
  $burger_content
1590
  );
1591
 
1592
- $breakpoint = 'custom' === $settings['display_burger'] ? $settings['breakpoint']['size'] : $settings['display_burger'];
1593
 
1594
  wp_nav_menu( array(
1595
  'container_id' => 'master-menu-elementor-'. $this->get_id(),
1589
  $burger_content
1590
  );
1591
 
1592
+ $breakpoint = ( 'custom' === $settings['display_burger'] && !empty( $settings['breakpoint']['size'] ) ) ? $settings['breakpoint']['size'] : $settings['display_burger'];
1593
 
1594
  wp_nav_menu( array(
1595
  'container_id' => 'master-menu-elementor-'. $this->get_id(),
includes/elements/custom-list.php CHANGED
@@ -252,6 +252,7 @@ function auxin_widget_list_callback( $atts, $shortcode_content = null ){
252
  }
253
  $output .= '<ul '. auxin_make_html_attributes( $list_attrs ) .'>';
254
 
 
255
  // widget custom output -----------------------
256
  if ( is_array( $list ) || is_object( $list ) ) {
257
  foreach ( $list as $index => $list_item ) {
@@ -273,8 +274,7 @@ function auxin_widget_list_callback( $atts, $shortcode_content = null ){
273
  $item_classes[] = 'elementor-repeater-item-'. $item_unique_id;
274
  }
275
 
276
- $item_text_tag = $list_item['text_tag'];
277
-
278
  $output .= '<li '. auxin_make_html_attributes( array( 'class' => $item_classes ) ) .'>';
279
 
280
  // Generate link for list item
252
  }
253
  $output .= '<ul '. auxin_make_html_attributes( $list_attrs ) .'>';
254
 
255
+
256
  // widget custom output -----------------------
257
  if ( is_array( $list ) || is_object( $list ) ) {
258
  foreach ( $list as $index => $list_item ) {
274
  $item_classes[] = 'elementor-repeater-item-'. $item_unique_id;
275
  }
276
 
277
+ $item_text_tag = ! empty( $list_item['text_tag'] ) ? $list_item['text_tag'] : 'span';
 
278
  $output .= '<li '. auxin_make_html_attributes( array( 'class' => $item_classes ) ) .'>';
279
 
280
  // Generate link for list item
includes/general-hooks.php CHANGED
@@ -1770,6 +1770,18 @@ function auxin_add_theme_options_in_plugin( $fields_sections_list ){
1770
  'type' => 'text'
1771
  );
1772
 
 
 
 
 
 
 
 
 
 
 
 
 
1773
  // Sub section - 404 page customizer -------------------------------
1774
 
1775
  $fields_sections_list['sections'][] = array(
@@ -3708,9 +3720,26 @@ add_filter( 'woocommerce_post_class', 'auxels_add_product_item_classes', 1, 1 );
3708
  */
3709
  function auxin_modify_ti_wishlist_button( $button ) {
3710
 
3711
- $button = str_replace( 'tinvwl_add_to_wishlist_button', 'tinvwl_add_to_wishlist_button auxshp-wishlist ', $button );
3712
  $button = str_replace( 'tinvwl_add_to_wishlist-text', 'tinvwl_add_to_wishlist-text auxshp-wishlist-text ', $button );
3713
-
 
 
 
 
3714
  return $button;
3715
  }
3716
- add_filter( 'tinvwl_wishlist_button', 'auxin_modify_ti_wishlist_button', 1, 1 );
 
 
 
 
 
 
 
 
 
 
 
 
 
1770
  'type' => 'text'
1771
  );
1772
 
1773
+ $fields_sections_list['fields'][] = array(
1774
+ 'title' => __('Login Style', 'auxin-elements'),
1775
+ 'description' => __('Custom Css style for login page', 'auxin-elements'),
1776
+ 'id' => 'auxin_login_style',
1777
+ 'section' => 'tools-section-login',
1778
+ 'dependency' => array(),
1779
+ 'transport' => 'refresh',
1780
+ 'type' => 'code',
1781
+ 'default' => '',
1782
+ 'mode' => 'css'
1783
+ );
1784
+
1785
  // Sub section - 404 page customizer -------------------------------
1786
 
1787
  $fields_sections_list['sections'][] = array(
3720
  */
3721
  function auxin_modify_ti_wishlist_button( $button ) {
3722
 
3723
+ $button = str_replace( 'tinvwl_add_to_wishlist_button', 'tinvwl_add_to_wishlist_button auxshp-wishlist ' , $button );
3724
  $button = str_replace( 'tinvwl_add_to_wishlist-text', 'tinvwl_add_to_wishlist-text auxshp-wishlist-text ', $button );
3725
+ if ( is_singular( 'product' ) ) {
3726
+ $button = str_replace( '</a>', '<span class="auxshp-sw-icon auxshp-wishlist-icon ' . auxin_get_option( 'product_single_wishlist_button_icon', 'auxicon-heart-2' ) . '"></span></a>', $button );
3727
+ } else {
3728
+ $button = str_replace( '</a>', '<span class="auxshp-sw-icon auxshp-wishlist-icon auxicon-heart-2"></span></a>', $button );
3729
+ }
3730
  return $button;
3731
  }
3732
+ add_filter( 'tinvwl_wishlist_button', 'auxin_modify_ti_wishlist_button', 1, 1 );
3733
+
3734
+ /*-----------------------------------------------------------------------------------*/
3735
+ /* Injects Custom css for login page
3736
+ /*-----------------------------------------------------------------------------------*/
3737
+
3738
+ function auxels_add_login_style_to_head() {
3739
+ $inline_css = auxin_get_option( 'auxin_login_style' );
3740
+ if ( !empty( $inline_css ) ) {
3741
+ wp_add_inline_style( 'login', $inline_css );
3742
+ }
3743
+
3744
+ }
3745
+ add_action( 'login_enqueue_scripts','auxels_add_login_style_to_head' );
includes/index.php CHANGED
@@ -87,10 +87,4 @@ include_once( 'elementor/class-auxin-elementor-core-elements.php' );
87
  // Load Compatiblity functionalities
88
  include_once( 'compatibility/wp-rocket/wp-rocket.php' );
89
 
90
- function auxin_load_wpml_compatiblity_files() {
91
- if ( function_exists('icl_object_id') ) {
92
- include_once( 'compatibility/wpml/translate.php' );
93
- }
94
- }
95
- add_action( 'init', 'auxin_load_wpml_compatiblity_files');
96
 
87
  // Load Compatiblity functionalities
88
  include_once( 'compatibility/wp-rocket/wp-rocket.php' );
89
 
 
 
 
 
 
 
90
 
languages/auxin-elements-fa_IR.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
- "POT-Creation-Date: 2021-07-11 12:00:30+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
@@ -966,7 +966,7 @@ msgstr ""
966
 
967
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
968
  #: includes/elements/staff.php:207 includes/elements/text.php:105
969
- #: includes/general-hooks.php:3035
970
  msgid "Boxed"
971
  msgstr "جعبه ای"
972
 
@@ -1978,7 +1978,7 @@ msgid "Importing Media"
1978
  msgstr ""
1979
 
1980
  #: includes/classes/class-auxin-demo-importer.php:293
1981
- #: includes/classes/class-auxin-demo-importer.php:1269
1982
  msgid "Importing Users"
1983
  msgstr ""
1984
 
@@ -2009,11 +2009,11 @@ msgstr ""
2009
  msgid "Importing Sliders"
2010
  msgstr ""
2011
 
2012
- #: includes/classes/class-auxin-demo-importer.php:1332
2013
  msgid "Preparing Site ..."
2014
  msgstr ""
2015
 
2016
- #: includes/classes/class-auxin-demo-importer.php:1351
2017
  msgid "All steps are successful"
2018
  msgstr ""
2019
 
@@ -2877,160 +2877,6 @@ msgstr "افزودن بخش"
2877
  msgid "Select Audio"
2878
  msgstr "انتخاب شکاف آکاردئون"
2879
 
2880
- #: includes/compatibility/wpml/integration-classes/accordion-items.php:27
2881
- #, fuzzy
2882
- msgid "Accordion: Label"
2883
- msgstr "برچسب آکاردئون"
2884
-
2885
- #: includes/compatibility/wpml/integration-classes/accordion-items.php:29
2886
- #, fuzzy
2887
- msgid "Accordion: Content"
2888
- msgstr "آکاردئون"
2889
-
2890
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:27
2891
- msgid "Flexible List: Text"
2892
- msgstr ""
2893
-
2894
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:29
2895
- msgid "Flexible List: Secondary Text"
2896
- msgstr ""
2897
-
2898
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:31
2899
- msgid "Flexible List: Link"
2900
- msgstr ""
2901
-
2902
- #: includes/compatibility/wpml/integration-classes/tabs.php:27
2903
- #, fuzzy
2904
- msgid "Tab: Label"
2905
- msgstr "برچسب زبانه"
2906
-
2907
- #: includes/compatibility/wpml/integration-classes/tabs.php:29
2908
- #, fuzzy
2909
- msgid "Tab: Content"
2910
- msgstr "محتوا"
2911
-
2912
- #: includes/compatibility/wpml/translate.php:20
2913
- msgid "Modern Heading: Title"
2914
- msgstr ""
2915
-
2916
- #: includes/compatibility/wpml/translate.php:25
2917
- #, fuzzy
2918
- msgid "Modern Heading: Description"
2919
- msgstr "توضیحات المان"
2920
-
2921
- #: includes/compatibility/wpml/translate.php:30
2922
- msgid "Modern Heading: Before Text"
2923
- msgstr ""
2924
-
2925
- #: includes/compatibility/wpml/translate.php:35
2926
- #, fuzzy
2927
- msgid "Modern Heading: Highlighted Text"
2928
- msgstr "متن هایلایت شده"
2929
-
2930
- #: includes/compatibility/wpml/translate.php:40
2931
- msgid "Modern Heading: After Text"
2932
- msgstr ""
2933
-
2934
- #: includes/compatibility/wpml/translate.php:69
2935
- #, fuzzy
2936
- msgid "Button: Label"
2937
- msgstr "برچسب دکمه"
2938
-
2939
- #: includes/compatibility/wpml/translate.php:80
2940
- #, fuzzy
2941
- msgid "Contact Form 7: Shortcode"
2942
- msgstr "کد کوتاه فرم تماس 7"
2943
-
2944
- #: includes/compatibility/wpml/translate.php:91
2945
- #, fuzzy
2946
- msgid "Blockquote: Content"
2947
- msgstr "محتوای جعبه ای"
2948
-
2949
- #: includes/compatibility/wpml/translate.php:102
2950
- msgid "Staff: Name"
2951
- msgstr ""
2952
-
2953
- #: includes/compatibility/wpml/translate.php:107
2954
- msgid "Staff: Occupation"
2955
- msgstr ""
2956
-
2957
- #: includes/compatibility/wpml/translate.php:112
2958
- #, fuzzy
2959
- msgid "Staff: Content"
2960
- msgstr "محتوا"
2961
-
2962
- #: includes/compatibility/wpml/translate.php:123
2963
- #, fuzzy
2964
- msgid "Testimonial: Name"
2965
- msgstr "انتخاب اظهار نظر"
2966
-
2967
- #: includes/compatibility/wpml/translate.php:128
2968
- msgid "Testimonial: Occupation"
2969
- msgstr ""
2970
-
2971
- #: includes/compatibility/wpml/translate.php:133
2972
- msgid "Testimonial: Content"
2973
- msgstr ""
2974
-
2975
- #: includes/compatibility/wpml/translate.php:144
2976
- msgid "Info Box: Name"
2977
- msgstr ""
2978
-
2979
- #: includes/compatibility/wpml/translate.php:149
2980
- msgid "Info Box: Occupation"
2981
- msgstr ""
2982
-
2983
- #: includes/compatibility/wpml/translate.php:154
2984
- #, fuzzy
2985
- msgid "Info Box: Content"
2986
- msgstr "محتوای جعبه ای"
2987
-
2988
- #: includes/compatibility/wpml/translate.php:159
2989
- #, fuzzy
2990
- msgid "Info Box: Button label"
2991
- msgstr "برچسب دکمه"
2992
-
2993
- #: includes/compatibility/wpml/translate.php:170
2994
- #, fuzzy
2995
- msgid "MAP: Latitude"
2996
- msgstr "عرض جغرافیایی"
2997
-
2998
- #: includes/compatibility/wpml/translate.php:175
2999
- #, fuzzy
3000
- msgid "MAP: Longitude"
3001
- msgstr "طول جغرافیایی"
3002
-
3003
- #: includes/compatibility/wpml/translate.php:180
3004
- #, fuzzy
3005
- msgid "MAP: Marker info"
3006
- msgstr "اطلاعات نشانگر"
3007
-
3008
- #: includes/compatibility/wpml/translate.php:191
3009
- #, fuzzy
3010
- msgid "Button: Text"
3011
- msgstr "متن دکمه"
3012
-
3013
- #: includes/compatibility/wpml/translate.php:196
3014
- #, fuzzy
3015
- msgid "Button: Highlighted Text"
3016
- msgstr "متن هایلایت شده"
3017
-
3018
- #: includes/compatibility/wpml/translate.php:201
3019
- #, fuzzy
3020
- msgid "Button: After Text"
3021
- msgstr "متن دکمه"
3022
-
3023
- #: includes/compatibility/wpml/translate.php:206
3024
- #, fuzzy
3025
- msgid "Button: Link"
3026
- msgstr "اندازه دکمه"
3027
-
3028
- #: includes/compatibility/wpml/translate.php:217
3029
- #: includes/elementor/widgets/theme-elements/copyright.php:102
3030
- #, fuzzy
3031
- msgid "Copyright Text"
3032
- msgstr "متن هایلایت شده"
3033
-
3034
  #: includes/elementor/class-auxin-elementor-core-elements.php:404
3035
  msgid "Element class \"%s\" not found."
3036
  msgstr ""
@@ -3422,6 +3268,7 @@ msgstr "URL منبع"
3422
  #: includes/elementor/modules/dynamic-tags/pages-url.php:35
3423
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:91
3424
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:108
 
3425
  #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:35
3426
  #: includes/elementor/modules/theme-builder/module.php:85
3427
  msgid "Select..."
@@ -4099,6 +3946,12 @@ msgstr "ظاهر کاشی مطالب"
4099
  msgid "Post URL"
4100
  msgstr "URL خانه"
4101
 
 
 
 
 
 
 
4102
  #: includes/elementor/modules/dynamic-tags/request-parameter.php:18
4103
  msgid "Request Parameter"
4104
  msgstr ""
@@ -4552,7 +4405,7 @@ msgid "Select Post Type"
4552
  msgstr "نوع گالری را انتخاب کنید."
4553
 
4554
  #: includes/elementor/modules/theme-builder/module.php:131
4555
- #: includes/general-hooks.php:1778 includes/general-hooks.php:1784
4556
  #, fuzzy
4557
  msgid "404 Page"
4558
  msgstr "صفحه"
@@ -6998,7 +6851,7 @@ msgstr ""
6998
 
6999
  #: includes/elementor/widgets/image.php:278
7000
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:101
7001
- #: includes/general-hooks.php:1926
7002
  msgid "Settings"
7003
  msgstr ""
7004
 
@@ -8167,7 +8020,7 @@ msgstr ""
8167
  #: includes/elements/recent-posts-tiles-carousel.php:199
8168
  #: includes/elements/recent-posts-tiles.php:229
8169
  #: includes/elements/recent-posts-timeline.php:224
8170
- #: includes/general-hooks.php:1866
8171
  msgid "Include posts"
8172
  msgstr "شامل شدن این نوشته ها"
8173
 
@@ -9186,6 +9039,11 @@ msgstr "دربرگیرنده"
9186
  msgid "Copyright"
9187
  msgstr ""
9188
 
 
 
 
 
 
9189
  #: includes/elementor/widgets/theme-elements/copyright.php:104
9190
  msgid "&copy; %s. All rights reserved."
9191
  msgstr ""
@@ -9869,7 +9727,7 @@ msgstr "یک المان درباره نویسنده اضافه می کند."
9869
  msgid "The name which appears in about widget."
9870
  msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
9871
 
9872
- #: includes/elements/about-widget.php:72 includes/general-hooks.php:2397
9873
  msgid "Skills"
9874
  msgstr "مهارت ها"
9875
 
@@ -12592,234 +12450,243 @@ msgstr ""
12592
  " این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
12593
  "شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
12594
 
12595
- #: includes/general-hooks.php:1779
 
 
 
 
 
 
 
 
 
12596
  #, fuzzy
12597
  msgid "404 Page Options"
12598
  msgstr "تنظیمات طراحی"
12599
 
12600
- #: includes/general-hooks.php:1785
12601
  msgid "Specifies a page to display on 404."
12602
  msgstr ""
12603
 
12604
- #: includes/general-hooks.php:1800 includes/general-hooks.php:1817
12605
  msgid "Maintenance or Comingsoon Page"
12606
  msgstr ""
12607
 
12608
- #: includes/general-hooks.php:1801
12609
  msgid "Maintenance or Comingsoon Page Options"
12610
  msgstr ""
12611
 
12612
- #: includes/general-hooks.php:1806
12613
  msgid "Enable Maintenance or Comingsoon Mode"
12614
  msgstr ""
12615
 
12616
- #: includes/general-hooks.php:1807
12617
  msgid "With this option you can manually enable Maintenance or Comingsoon mode"
12618
  msgstr ""
12619
 
12620
- #: includes/general-hooks.php:1818
12621
  msgid ""
12622
  "In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon Mode"
12623
  msgstr ""
12624
 
12625
- #: includes/general-hooks.php:1837
12626
  msgid "Search Results"
12627
  msgstr ""
12628
 
12629
- #: includes/general-hooks.php:1838
12630
  msgid "Search Results Options"
12631
  msgstr ""
12632
 
12633
- #: includes/general-hooks.php:1844
12634
  #, fuzzy
12635
  msgid "Exclude Posts Types"
12636
  msgstr "نادیده گرفتن این نوشته ها"
12637
 
12638
- #: includes/general-hooks.php:1845
12639
  msgid "The post types which should be excluded from search results."
12640
  msgstr ""
12641
 
12642
- #: includes/general-hooks.php:1855
12643
  #, fuzzy
12644
  msgid "Exclude Posts Without Featured Image"
12645
  msgstr "نادیده گرفتن نوشته های بدون تصویر"
12646
 
12647
- #: includes/general-hooks.php:1856
12648
  #, fuzzy
12649
  msgid "Exclude posts without featured image in search results."
12650
  msgstr "نادیده گرفتن نوشته های بدون تصویر"
12651
 
12652
- #: includes/general-hooks.php:1867
12653
  msgid ""
12654
  "If you intend to include additional posts, you should specify the posts here."
12655
  "<br>You have to insert the Post IDs that are separated by camma (eg. "
12656
  "53,34,87,25)"
12657
  msgstr ""
12658
 
12659
- #: includes/general-hooks.php:1881
12660
  msgid "Import/Export"
12661
  msgstr ""
12662
 
12663
- #: includes/general-hooks.php:1882
12664
  #, fuzzy
12665
  msgid "Import or Export options"
12666
  msgstr "تنظیمات نوشته نقل قول"
12667
 
12668
- #: includes/general-hooks.php:1889
12669
  msgid "Export Data"
12670
  msgstr ""
12671
 
12672
- #: includes/general-hooks.php:1890
12673
  msgid "Your theme options code which you can import later."
12674
  msgstr ""
12675
 
12676
- #: includes/general-hooks.php:1900
12677
  msgid "Import Data"
12678
  msgstr ""
12679
 
12680
- #: includes/general-hooks.php:1901
12681
  msgid "Paste the exported theme options code to import into theme."
12682
  msgstr ""
12683
 
12684
- #: includes/general-hooks.php:1916
12685
  #, fuzzy
12686
  msgid "White Label"
12687
  msgstr "فاصله خالی"
12688
 
12689
- #: includes/general-hooks.php:1917
12690
  msgid "White Label Settings"
12691
  msgstr ""
12692
 
12693
- #: includes/general-hooks.php:1927
12694
  msgid "Change PHLOX labels."
12695
  msgstr ""
12696
 
12697
- #: includes/general-hooks.php:1931
12698
  #, fuzzy
12699
  msgid "Theme Name"
12700
  msgstr "پوسته"
12701
 
12702
- #: includes/general-hooks.php:1942
12703
  #, fuzzy
12704
  msgid "Theme Author Name"
12705
  msgstr "نام نویسنده"
12706
 
12707
- #: includes/general-hooks.php:1951
12708
  #, fuzzy
12709
  msgid "Theme Author URL"
12710
  msgstr "شخصی ساز پوسته"
12711
 
12712
- #: includes/general-hooks.php:1960
12713
  #, fuzzy
12714
  msgid "Theme Description"
12715
  msgstr "توضیحات المان"
12716
 
12717
- #: includes/general-hooks.php:1969
12718
  msgid "Theme Screenshot (1200x900)"
12719
  msgstr ""
12720
 
12721
- #: includes/general-hooks.php:1982
12722
  #, fuzzy
12723
  msgid "Displays"
12724
  msgstr "نوع نمایش"
12725
 
12726
- #: includes/general-hooks.php:1983
12727
  msgid "Change PHLOX admin views."
12728
  msgstr ""
12729
 
12730
- #: includes/general-hooks.php:1987
12731
  #, fuzzy
12732
  msgid "Hide Notifications"
12733
  msgstr "تنظیمات نوشته ویدیویی"
12734
 
12735
- #: includes/general-hooks.php:1998
12736
  msgid "Hide Theme Badge"
12737
  msgstr ""
12738
 
12739
- #: includes/general-hooks.php:2009
12740
  msgid "Hide Phlox Menu"
12741
  msgstr ""
12742
 
12743
- #: includes/general-hooks.php:2020
12744
  #, fuzzy
12745
  msgid "Hide Dashboard Section"
12746
  msgstr "افزودن بخش"
12747
 
12748
- #: includes/general-hooks.php:2038
12749
  msgid "Hide Customization Section"
12750
  msgstr ""
12751
 
12752
- #: includes/general-hooks.php:2056
12753
  msgid "Hide Demo Importer Section"
12754
  msgstr ""
12755
 
12756
- #: includes/general-hooks.php:2074
12757
  msgid "Hide Template Kits Section"
12758
  msgstr ""
12759
 
12760
- #: includes/general-hooks.php:2092
12761
  msgid "Hide Plugins Section"
12762
  msgstr ""
12763
 
12764
- #: includes/general-hooks.php:2110
12765
  #, fuzzy
12766
  msgid "Hide Tutorials Section"
12767
  msgstr "بخش زبانه ها"
12768
 
12769
- #: includes/general-hooks.php:2128
12770
  #, fuzzy
12771
  msgid "Hide Feedback Section"
12772
  msgstr "افزودن بخش"
12773
 
12774
- #: includes/general-hooks.php:2390
12775
  msgid "Twitter"
12776
  msgstr ""
12777
 
12778
- #: includes/general-hooks.php:2391
12779
  msgid "Facebook"
12780
  msgstr ""
12781
 
12782
- #: includes/general-hooks.php:2392
12783
  msgid "Google Plus"
12784
  msgstr ""
12785
 
12786
- #: includes/general-hooks.php:2393
12787
  msgid "Flickr"
12788
  msgstr ""
12789
 
12790
- #: includes/general-hooks.php:2394
12791
  msgid "Delicious"
12792
  msgstr ""
12793
 
12794
- #: includes/general-hooks.php:2395
12795
  msgid "Pinterest"
12796
  msgstr ""
12797
 
12798
- #: includes/general-hooks.php:2396
12799
  msgid "GitHub"
12800
  msgstr ""
12801
 
12802
- #: includes/general-hooks.php:2583
12803
  #, fuzzy
12804
  msgid "Page Options"
12805
  msgstr "تنظیمات طراحی"
12806
 
12807
- #: includes/general-hooks.php:2591
12808
  #, fuzzy
12809
  msgid "Post Options"
12810
  msgstr "تنظیمات نوشته صوتی"
12811
 
12812
- #: includes/general-hooks.php:3066
12813
  #, fuzzy
12814
  msgid "Page %s"
12815
  msgstr "برگه ها"
12816
 
12817
- #: includes/general-hooks.php:3639
12818
  #, fuzzy
12819
  msgid "current "
12820
  msgstr "صفحه جاری"
12821
 
12822
- #: includes/general-hooks.php:3669
12823
  msgid "Edit Header & Footer"
12824
  msgstr ""
12825
 
@@ -13069,13 +12936,13 @@ msgid "Chats"
13069
  msgstr ""
13070
 
13071
  #. translators: playlist item title
13072
- #: includes/general-hooks.php:3087
13073
  msgctxt "playlist item title"
13074
  msgid "&#8220;%s&#8221;"
13075
  msgstr ""
13076
 
13077
  #. translators: playlist item title
13078
- #: includes/general-hooks.php:3112 includes/general-hooks.php:3117
13079
  msgctxt "playlist item title"
13080
  msgid "%s"
13081
  msgstr ""
2
  msgstr ""
3
  "Project-Id-Version: Auxin Essential Elements\n"
4
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
5
+ "POT-Creation-Date: 2021-08-08 09:48:55+00:00\n"
6
  "PO-Revision-Date: 2016-11-09 12:50+0330\n"
7
  "Last-Translator: \n"
8
  "Language-Team: \n"
966
 
967
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
968
  #: includes/elements/staff.php:207 includes/elements/text.php:105
969
+ #: includes/general-hooks.php:3047
970
  msgid "Boxed"
971
  msgstr "جعبه ای"
972
 
1978
  msgstr ""
1979
 
1980
  #: includes/classes/class-auxin-demo-importer.php:293
1981
+ #: includes/classes/class-auxin-demo-importer.php:1272
1982
  msgid "Importing Users"
1983
  msgstr ""
1984
 
2009
  msgid "Importing Sliders"
2010
  msgstr ""
2011
 
2012
+ #: includes/classes/class-auxin-demo-importer.php:1335
2013
  msgid "Preparing Site ..."
2014
  msgstr ""
2015
 
2016
+ #: includes/classes/class-auxin-demo-importer.php:1354
2017
  msgid "All steps are successful"
2018
  msgstr ""
2019
 
2877
  msgid "Select Audio"
2878
  msgstr "انتخاب شکاف آکاردئون"
2879
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2880
  #: includes/elementor/class-auxin-elementor-core-elements.php:404
2881
  msgid "Element class \"%s\" not found."
2882
  msgstr ""
3268
  #: includes/elementor/modules/dynamic-tags/pages-url.php:35
3269
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:91
3270
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:108
3271
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:35
3272
  #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:35
3273
  #: includes/elementor/modules/theme-builder/module.php:85
3274
  msgid "Select..."
3946
  msgid "Post URL"
3947
  msgstr "URL خانه"
3948
 
3949
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:19
3950
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:57
3951
+ #, fuzzy
3952
+ msgid "Posts URL"
3953
+ msgstr "نوشته ها"
3954
+
3955
  #: includes/elementor/modules/dynamic-tags/request-parameter.php:18
3956
  msgid "Request Parameter"
3957
  msgstr ""
4405
  msgstr "نوع گالری را انتخاب کنید."
4406
 
4407
  #: includes/elementor/modules/theme-builder/module.php:131
4408
+ #: includes/general-hooks.php:1790 includes/general-hooks.php:1796
4409
  #, fuzzy
4410
  msgid "404 Page"
4411
  msgstr "صفحه"
6851
 
6852
  #: includes/elementor/widgets/image.php:278
6853
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:101
6854
+ #: includes/general-hooks.php:1938
6855
  msgid "Settings"
6856
  msgstr ""
6857
 
8020
  #: includes/elements/recent-posts-tiles-carousel.php:199
8021
  #: includes/elements/recent-posts-tiles.php:229
8022
  #: includes/elements/recent-posts-timeline.php:224
8023
+ #: includes/general-hooks.php:1878
8024
  msgid "Include posts"
8025
  msgstr "شامل شدن این نوشته ها"
8026
 
9039
  msgid "Copyright"
9040
  msgstr ""
9041
 
9042
+ #: includes/elementor/widgets/theme-elements/copyright.php:102
9043
+ #, fuzzy
9044
+ msgid "Copyright Text"
9045
+ msgstr "متن هایلایت شده"
9046
+
9047
  #: includes/elementor/widgets/theme-elements/copyright.php:104
9048
  msgid "&copy; %s. All rights reserved."
9049
  msgstr ""
9727
  msgid "The name which appears in about widget."
9728
  msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
9729
 
9730
+ #: includes/elements/about-widget.php:72 includes/general-hooks.php:2409
9731
  msgid "Skills"
9732
  msgstr "مهارت ها"
9733
 
12450
  " این نام کلاس به بدنه (body) صفحه ورود اضافه خواهد "
12451
  "شدو برای موارد استایل دهی پیشرفته مورد استفاده قرار می گیرد."
12452
 
12453
+ #: includes/general-hooks.php:1774
12454
+ #, fuzzy
12455
+ msgid "Login Style"
12456
+ msgstr "نمای صفحه ورود"
12457
+
12458
+ #: includes/general-hooks.php:1775
12459
+ msgid "Custom Css style for login page"
12460
+ msgstr ""
12461
+
12462
+ #: includes/general-hooks.php:1791
12463
  #, fuzzy
12464
  msgid "404 Page Options"
12465
  msgstr "تنظیمات طراحی"
12466
 
12467
+ #: includes/general-hooks.php:1797
12468
  msgid "Specifies a page to display on 404."
12469
  msgstr ""
12470
 
12471
+ #: includes/general-hooks.php:1812 includes/general-hooks.php:1829
12472
  msgid "Maintenance or Comingsoon Page"
12473
  msgstr ""
12474
 
12475
+ #: includes/general-hooks.php:1813
12476
  msgid "Maintenance or Comingsoon Page Options"
12477
  msgstr ""
12478
 
12479
+ #: includes/general-hooks.php:1818
12480
  msgid "Enable Maintenance or Comingsoon Mode"
12481
  msgstr ""
12482
 
12483
+ #: includes/general-hooks.php:1819
12484
  msgid "With this option you can manually enable Maintenance or Comingsoon mode"
12485
  msgstr ""
12486
 
12487
+ #: includes/general-hooks.php:1830
12488
  msgid ""
12489
  "In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon Mode"
12490
  msgstr ""
12491
 
12492
+ #: includes/general-hooks.php:1849
12493
  msgid "Search Results"
12494
  msgstr ""
12495
 
12496
+ #: includes/general-hooks.php:1850
12497
  msgid "Search Results Options"
12498
  msgstr ""
12499
 
12500
+ #: includes/general-hooks.php:1856
12501
  #, fuzzy
12502
  msgid "Exclude Posts Types"
12503
  msgstr "نادیده گرفتن این نوشته ها"
12504
 
12505
+ #: includes/general-hooks.php:1857
12506
  msgid "The post types which should be excluded from search results."
12507
  msgstr ""
12508
 
12509
+ #: includes/general-hooks.php:1867
12510
  #, fuzzy
12511
  msgid "Exclude Posts Without Featured Image"
12512
  msgstr "نادیده گرفتن نوشته های بدون تصویر"
12513
 
12514
+ #: includes/general-hooks.php:1868
12515
  #, fuzzy
12516
  msgid "Exclude posts without featured image in search results."
12517
  msgstr "نادیده گرفتن نوشته های بدون تصویر"
12518
 
12519
+ #: includes/general-hooks.php:1879
12520
  msgid ""
12521
  "If you intend to include additional posts, you should specify the posts here."
12522
  "<br>You have to insert the Post IDs that are separated by camma (eg. "
12523
  "53,34,87,25)"
12524
  msgstr ""
12525
 
12526
+ #: includes/general-hooks.php:1893
12527
  msgid "Import/Export"
12528
  msgstr ""
12529
 
12530
+ #: includes/general-hooks.php:1894
12531
  #, fuzzy
12532
  msgid "Import or Export options"
12533
  msgstr "تنظیمات نوشته نقل قول"
12534
 
12535
+ #: includes/general-hooks.php:1901
12536
  msgid "Export Data"
12537
  msgstr ""
12538
 
12539
+ #: includes/general-hooks.php:1902
12540
  msgid "Your theme options code which you can import later."
12541
  msgstr ""
12542
 
12543
+ #: includes/general-hooks.php:1912
12544
  msgid "Import Data"
12545
  msgstr ""
12546
 
12547
+ #: includes/general-hooks.php:1913
12548
  msgid "Paste the exported theme options code to import into theme."
12549
  msgstr ""
12550
 
12551
+ #: includes/general-hooks.php:1928
12552
  #, fuzzy
12553
  msgid "White Label"
12554
  msgstr "فاصله خالی"
12555
 
12556
+ #: includes/general-hooks.php:1929
12557
  msgid "White Label Settings"
12558
  msgstr ""
12559
 
12560
+ #: includes/general-hooks.php:1939
12561
  msgid "Change PHLOX labels."
12562
  msgstr ""
12563
 
12564
+ #: includes/general-hooks.php:1943
12565
  #, fuzzy
12566
  msgid "Theme Name"
12567
  msgstr "پوسته"
12568
 
12569
+ #: includes/general-hooks.php:1954
12570
  #, fuzzy
12571
  msgid "Theme Author Name"
12572
  msgstr "نام نویسنده"
12573
 
12574
+ #: includes/general-hooks.php:1963
12575
  #, fuzzy
12576
  msgid "Theme Author URL"
12577
  msgstr "شخصی ساز پوسته"
12578
 
12579
+ #: includes/general-hooks.php:1972
12580
  #, fuzzy
12581
  msgid "Theme Description"
12582
  msgstr "توضیحات المان"
12583
 
12584
+ #: includes/general-hooks.php:1981
12585
  msgid "Theme Screenshot (1200x900)"
12586
  msgstr ""
12587
 
12588
+ #: includes/general-hooks.php:1994
12589
  #, fuzzy
12590
  msgid "Displays"
12591
  msgstr "نوع نمایش"
12592
 
12593
+ #: includes/general-hooks.php:1995
12594
  msgid "Change PHLOX admin views."
12595
  msgstr ""
12596
 
12597
+ #: includes/general-hooks.php:1999
12598
  #, fuzzy
12599
  msgid "Hide Notifications"
12600
  msgstr "تنظیمات نوشته ویدیویی"
12601
 
12602
+ #: includes/general-hooks.php:2010
12603
  msgid "Hide Theme Badge"
12604
  msgstr ""
12605
 
12606
+ #: includes/general-hooks.php:2021
12607
  msgid "Hide Phlox Menu"
12608
  msgstr ""
12609
 
12610
+ #: includes/general-hooks.php:2032
12611
  #, fuzzy
12612
  msgid "Hide Dashboard Section"
12613
  msgstr "افزودن بخش"
12614
 
12615
+ #: includes/general-hooks.php:2050
12616
  msgid "Hide Customization Section"
12617
  msgstr ""
12618
 
12619
+ #: includes/general-hooks.php:2068
12620
  msgid "Hide Demo Importer Section"
12621
  msgstr ""
12622
 
12623
+ #: includes/general-hooks.php:2086
12624
  msgid "Hide Template Kits Section"
12625
  msgstr ""
12626
 
12627
+ #: includes/general-hooks.php:2104
12628
  msgid "Hide Plugins Section"
12629
  msgstr ""
12630
 
12631
+ #: includes/general-hooks.php:2122
12632
  #, fuzzy
12633
  msgid "Hide Tutorials Section"
12634
  msgstr "بخش زبانه ها"
12635
 
12636
+ #: includes/general-hooks.php:2140
12637
  #, fuzzy
12638
  msgid "Hide Feedback Section"
12639
  msgstr "افزودن بخش"
12640
 
12641
+ #: includes/general-hooks.php:2402
12642
  msgid "Twitter"
12643
  msgstr ""
12644
 
12645
+ #: includes/general-hooks.php:2403
12646
  msgid "Facebook"
12647
  msgstr ""
12648
 
12649
+ #: includes/general-hooks.php:2404
12650
  msgid "Google Plus"
12651
  msgstr ""
12652
 
12653
+ #: includes/general-hooks.php:2405
12654
  msgid "Flickr"
12655
  msgstr ""
12656
 
12657
+ #: includes/general-hooks.php:2406
12658
  msgid "Delicious"
12659
  msgstr ""
12660
 
12661
+ #: includes/general-hooks.php:2407
12662
  msgid "Pinterest"
12663
  msgstr ""
12664
 
12665
+ #: includes/general-hooks.php:2408
12666
  msgid "GitHub"
12667
  msgstr ""
12668
 
12669
+ #: includes/general-hooks.php:2595
12670
  #, fuzzy
12671
  msgid "Page Options"
12672
  msgstr "تنظیمات طراحی"
12673
 
12674
+ #: includes/general-hooks.php:2603
12675
  #, fuzzy
12676
  msgid "Post Options"
12677
  msgstr "تنظیمات نوشته صوتی"
12678
 
12679
+ #: includes/general-hooks.php:3078
12680
  #, fuzzy
12681
  msgid "Page %s"
12682
  msgstr "برگه ها"
12683
 
12684
+ #: includes/general-hooks.php:3651
12685
  #, fuzzy
12686
  msgid "current "
12687
  msgstr "صفحه جاری"
12688
 
12689
+ #: includes/general-hooks.php:3681
12690
  msgid "Edit Header & Footer"
12691
  msgstr ""
12692
 
12936
  msgstr ""
12937
 
12938
  #. translators: playlist item title
12939
+ #: includes/general-hooks.php:3099
12940
  msgctxt "playlist item title"
12941
  msgid "&#8220;%s&#8221;"
12942
  msgstr ""
12943
 
12944
  #. translators: playlist item title
12945
+ #: includes/general-hooks.php:3124 includes/general-hooks.php:3129
12946
  msgctxt "playlist item title"
12947
  msgid "%s"
12948
  msgstr ""
languages/auxin-elements.pot CHANGED
@@ -1,9 +1,9 @@
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
- "Project-Id-Version: Phlox Core Elements 2.8.4\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
- "POT-Creation-Date: 2021-07-11 12:00:30+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
@@ -903,7 +903,7 @@ msgstr ""
903
 
904
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
905
  #: includes/elements/staff.php:207 includes/elements/text.php:105
906
- #: includes/general-hooks.php:3035
907
  msgid "Boxed"
908
  msgstr ""
909
 
@@ -1854,7 +1854,7 @@ msgid "Importing Media"
1854
  msgstr ""
1855
 
1856
  #: includes/classes/class-auxin-demo-importer.php:293
1857
- #: includes/classes/class-auxin-demo-importer.php:1269
1858
  msgid "Importing Users"
1859
  msgstr ""
1860
 
@@ -1884,11 +1884,11 @@ msgstr ""
1884
  msgid "Importing Sliders"
1885
  msgstr ""
1886
 
1887
- #: includes/classes/class-auxin-demo-importer.php:1332
1888
  msgid "Preparing Site ..."
1889
  msgstr ""
1890
 
1891
- #: includes/classes/class-auxin-demo-importer.php:1351
1892
  msgid "All steps are successful"
1893
  msgstr ""
1894
 
@@ -2705,139 +2705,6 @@ msgstr ""
2705
  msgid "Select Audio"
2706
  msgstr ""
2707
 
2708
- #: includes/compatibility/wpml/integration-classes/accordion-items.php:27
2709
- msgid "Accordion: Label"
2710
- msgstr ""
2711
-
2712
- #: includes/compatibility/wpml/integration-classes/accordion-items.php:29
2713
- msgid "Accordion: Content"
2714
- msgstr ""
2715
-
2716
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:27
2717
- msgid "Flexible List: Text"
2718
- msgstr ""
2719
-
2720
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:29
2721
- msgid "Flexible List: Secondary Text"
2722
- msgstr ""
2723
-
2724
- #: includes/compatibility/wpml/integration-classes/flexible-list.php:31
2725
- msgid "Flexible List: Link"
2726
- msgstr ""
2727
-
2728
- #: includes/compatibility/wpml/integration-classes/tabs.php:27
2729
- msgid "Tab: Label"
2730
- msgstr ""
2731
-
2732
- #: includes/compatibility/wpml/integration-classes/tabs.php:29
2733
- msgid "Tab: Content"
2734
- msgstr ""
2735
-
2736
- #: includes/compatibility/wpml/translate.php:20
2737
- msgid "Modern Heading: Title"
2738
- msgstr ""
2739
-
2740
- #: includes/compatibility/wpml/translate.php:25
2741
- msgid "Modern Heading: Description"
2742
- msgstr ""
2743
-
2744
- #: includes/compatibility/wpml/translate.php:30
2745
- msgid "Modern Heading: Before Text"
2746
- msgstr ""
2747
-
2748
- #: includes/compatibility/wpml/translate.php:35
2749
- msgid "Modern Heading: Highlighted Text"
2750
- msgstr ""
2751
-
2752
- #: includes/compatibility/wpml/translate.php:40
2753
- msgid "Modern Heading: After Text"
2754
- msgstr ""
2755
-
2756
- #: includes/compatibility/wpml/translate.php:69
2757
- msgid "Button: Label"
2758
- msgstr ""
2759
-
2760
- #: includes/compatibility/wpml/translate.php:80
2761
- msgid "Contact Form 7: Shortcode"
2762
- msgstr ""
2763
-
2764
- #: includes/compatibility/wpml/translate.php:91
2765
- msgid "Blockquote: Content"
2766
- msgstr ""
2767
-
2768
- #: includes/compatibility/wpml/translate.php:102
2769
- msgid "Staff: Name"
2770
- msgstr ""
2771
-
2772
- #: includes/compatibility/wpml/translate.php:107
2773
- msgid "Staff: Occupation"
2774
- msgstr ""
2775
-
2776
- #: includes/compatibility/wpml/translate.php:112
2777
- msgid "Staff: Content"
2778
- msgstr ""
2779
-
2780
- #: includes/compatibility/wpml/translate.php:123
2781
- msgid "Testimonial: Name"
2782
- msgstr ""
2783
-
2784
- #: includes/compatibility/wpml/translate.php:128
2785
- msgid "Testimonial: Occupation"
2786
- msgstr ""
2787
-
2788
- #: includes/compatibility/wpml/translate.php:133
2789
- msgid "Testimonial: Content"
2790
- msgstr ""
2791
-
2792
- #: includes/compatibility/wpml/translate.php:144
2793
- msgid "Info Box: Name"
2794
- msgstr ""
2795
-
2796
- #: includes/compatibility/wpml/translate.php:149
2797
- msgid "Info Box: Occupation"
2798
- msgstr ""
2799
-
2800
- #: includes/compatibility/wpml/translate.php:154
2801
- msgid "Info Box: Content"
2802
- msgstr ""
2803
-
2804
- #: includes/compatibility/wpml/translate.php:159
2805
- msgid "Info Box: Button label"
2806
- msgstr ""
2807
-
2808
- #: includes/compatibility/wpml/translate.php:170
2809
- msgid "MAP: Latitude"
2810
- msgstr ""
2811
-
2812
- #: includes/compatibility/wpml/translate.php:175
2813
- msgid "MAP: Longitude"
2814
- msgstr ""
2815
-
2816
- #: includes/compatibility/wpml/translate.php:180
2817
- msgid "MAP: Marker info"
2818
- msgstr ""
2819
-
2820
- #: includes/compatibility/wpml/translate.php:191
2821
- msgid "Button: Text"
2822
- msgstr ""
2823
-
2824
- #: includes/compatibility/wpml/translate.php:196
2825
- msgid "Button: Highlighted Text"
2826
- msgstr ""
2827
-
2828
- #: includes/compatibility/wpml/translate.php:201
2829
- msgid "Button: After Text"
2830
- msgstr ""
2831
-
2832
- #: includes/compatibility/wpml/translate.php:206
2833
- msgid "Button: Link"
2834
- msgstr ""
2835
-
2836
- #: includes/compatibility/wpml/translate.php:217
2837
- #: includes/elementor/widgets/theme-elements/copyright.php:102
2838
- msgid "Copyright Text"
2839
- msgstr ""
2840
-
2841
  #: includes/elementor/class-auxin-elementor-core-elements.php:404
2842
  msgid "Element class \"%s\" not found."
2843
  msgstr ""
@@ -3204,6 +3071,7 @@ msgstr ""
3204
  #: includes/elementor/modules/dynamic-tags/pages-url.php:35
3205
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:91
3206
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:108
 
3207
  #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:35
3208
  #: includes/elementor/modules/theme-builder/module.php:85
3209
  msgid "Select..."
@@ -3821,6 +3689,11 @@ msgstr ""
3821
  msgid "Post URL"
3822
  msgstr ""
3823
 
 
 
 
 
 
3824
  #: includes/elementor/modules/dynamic-tags/request-parameter.php:18
3825
  msgid "Request Parameter"
3826
  msgstr ""
@@ -4247,7 +4120,7 @@ msgid "Select Post Type"
4247
  msgstr ""
4248
 
4249
  #: includes/elementor/modules/theme-builder/module.php:131
4250
- #: includes/general-hooks.php:1778 includes/general-hooks.php:1784
4251
  msgid "404 Page"
4252
  msgstr ""
4253
 
@@ -6588,7 +6461,7 @@ msgstr ""
6588
 
6589
  #: includes/elementor/widgets/image.php:278
6590
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:101
6591
- #: includes/general-hooks.php:1926
6592
  msgid "Settings"
6593
  msgstr ""
6594
 
@@ -7695,7 +7568,7 @@ msgstr ""
7695
  #: includes/elements/recent-posts-tiles-carousel.php:199
7696
  #: includes/elements/recent-posts-tiles.php:229
7697
  #: includes/elements/recent-posts-timeline.php:224
7698
- #: includes/general-hooks.php:1866
7699
  msgid "Include posts"
7700
  msgstr ""
7701
 
@@ -8632,6 +8505,10 @@ msgstr ""
8632
  msgid "Copyright"
8633
  msgstr ""
8634
 
 
 
 
 
8635
  #: includes/elementor/widgets/theme-elements/copyright.php:104
8636
  msgid "&copy; %s. All rights reserved."
8637
  msgstr ""
@@ -9258,7 +9135,7 @@ msgstr ""
9258
  msgid "The name which appears in about widget."
9259
  msgstr ""
9260
 
9261
- #: includes/elements/about-widget.php:72 includes/general-hooks.php:2397
9262
  msgid "Skills"
9263
  msgstr ""
9264
 
@@ -11790,216 +11667,224 @@ msgid ""
11790
  "login page and is useful for advance custom styling purposes."
11791
  msgstr ""
11792
 
11793
- #: includes/general-hooks.php:1779
 
 
 
 
 
 
 
 
11794
  msgid "404 Page Options"
11795
  msgstr ""
11796
 
11797
- #: includes/general-hooks.php:1785
11798
  msgid "Specifies a page to display on 404."
11799
  msgstr ""
11800
 
11801
- #: includes/general-hooks.php:1800 includes/general-hooks.php:1817
11802
  msgid "Maintenance or Comingsoon Page"
11803
  msgstr ""
11804
 
11805
- #: includes/general-hooks.php:1801
11806
  msgid "Maintenance or Comingsoon Page Options"
11807
  msgstr ""
11808
 
11809
- #: includes/general-hooks.php:1806
11810
  msgid "Enable Maintenance or Comingsoon Mode"
11811
  msgstr ""
11812
 
11813
- #: includes/general-hooks.php:1807
11814
  msgid "With this option you can manually enable Maintenance or Comingsoon mode"
11815
  msgstr ""
11816
 
11817
- #: includes/general-hooks.php:1818
11818
  msgid ""
11819
  "In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon "
11820
  "Mode"
11821
  msgstr ""
11822
 
11823
- #: includes/general-hooks.php:1837
11824
  msgid "Search Results"
11825
  msgstr ""
11826
 
11827
- #: includes/general-hooks.php:1838
11828
  msgid "Search Results Options"
11829
  msgstr ""
11830
 
11831
- #: includes/general-hooks.php:1844
11832
  msgid "Exclude Posts Types"
11833
  msgstr ""
11834
 
11835
- #: includes/general-hooks.php:1845
11836
  msgid "The post types which should be excluded from search results."
11837
  msgstr ""
11838
 
11839
- #: includes/general-hooks.php:1855
11840
  msgid "Exclude Posts Without Featured Image"
11841
  msgstr ""
11842
 
11843
- #: includes/general-hooks.php:1856
11844
  msgid "Exclude posts without featured image in search results."
11845
  msgstr ""
11846
 
11847
- #: includes/general-hooks.php:1867
11848
  msgid ""
11849
  "If you intend to include additional posts, you should specify the posts "
11850
  "here.<br>You have to insert the Post IDs that are separated by camma (eg. "
11851
  "53,34,87,25)"
11852
  msgstr ""
11853
 
11854
- #: includes/general-hooks.php:1881
11855
  msgid "Import/Export"
11856
  msgstr ""
11857
 
11858
- #: includes/general-hooks.php:1882
11859
  msgid "Import or Export options"
11860
  msgstr ""
11861
 
11862
- #: includes/general-hooks.php:1889
11863
  msgid "Export Data"
11864
  msgstr ""
11865
 
11866
- #: includes/general-hooks.php:1890
11867
  msgid "Your theme options code which you can import later."
11868
  msgstr ""
11869
 
11870
- #: includes/general-hooks.php:1900
11871
  msgid "Import Data"
11872
  msgstr ""
11873
 
11874
- #: includes/general-hooks.php:1901
11875
  msgid "Paste the exported theme options code to import into theme."
11876
  msgstr ""
11877
 
11878
- #: includes/general-hooks.php:1916
11879
  msgid "White Label"
11880
  msgstr ""
11881
 
11882
- #: includes/general-hooks.php:1917
11883
  msgid "White Label Settings"
11884
  msgstr ""
11885
 
11886
- #: includes/general-hooks.php:1927
11887
  msgid "Change PHLOX labels."
11888
  msgstr ""
11889
 
11890
- #: includes/general-hooks.php:1931
11891
  msgid "Theme Name"
11892
  msgstr ""
11893
 
11894
- #: includes/general-hooks.php:1942
11895
  msgid "Theme Author Name"
11896
  msgstr ""
11897
 
11898
- #: includes/general-hooks.php:1951
11899
  msgid "Theme Author URL"
11900
  msgstr ""
11901
 
11902
- #: includes/general-hooks.php:1960
11903
  msgid "Theme Description"
11904
  msgstr ""
11905
 
11906
- #: includes/general-hooks.php:1969
11907
  msgid "Theme Screenshot (1200x900)"
11908
  msgstr ""
11909
 
11910
- #: includes/general-hooks.php:1982
11911
  msgid "Displays"
11912
  msgstr ""
11913
 
11914
- #: includes/general-hooks.php:1983
11915
  msgid "Change PHLOX admin views."
11916
  msgstr ""
11917
 
11918
- #: includes/general-hooks.php:1987
11919
  msgid "Hide Notifications"
11920
  msgstr ""
11921
 
11922
- #: includes/general-hooks.php:1998
11923
  msgid "Hide Theme Badge"
11924
  msgstr ""
11925
 
11926
- #: includes/general-hooks.php:2009
11927
  msgid "Hide Phlox Menu"
11928
  msgstr ""
11929
 
11930
- #: includes/general-hooks.php:2020
11931
  msgid "Hide Dashboard Section"
11932
  msgstr ""
11933
 
11934
- #: includes/general-hooks.php:2038
11935
  msgid "Hide Customization Section"
11936
  msgstr ""
11937
 
11938
- #: includes/general-hooks.php:2056
11939
  msgid "Hide Demo Importer Section"
11940
  msgstr ""
11941
 
11942
- #: includes/general-hooks.php:2074
11943
  msgid "Hide Template Kits Section"
11944
  msgstr ""
11945
 
11946
- #: includes/general-hooks.php:2092
11947
  msgid "Hide Plugins Section"
11948
  msgstr ""
11949
 
11950
- #: includes/general-hooks.php:2110
11951
  msgid "Hide Tutorials Section"
11952
  msgstr ""
11953
 
11954
- #: includes/general-hooks.php:2128
11955
  msgid "Hide Feedback Section"
11956
  msgstr ""
11957
 
11958
- #: includes/general-hooks.php:2390
11959
  msgid "Twitter"
11960
  msgstr ""
11961
 
11962
- #: includes/general-hooks.php:2391
11963
  msgid "Facebook"
11964
  msgstr ""
11965
 
11966
- #: includes/general-hooks.php:2392
11967
  msgid "Google Plus"
11968
  msgstr ""
11969
 
11970
- #: includes/general-hooks.php:2393
11971
  msgid "Flickr"
11972
  msgstr ""
11973
 
11974
- #: includes/general-hooks.php:2394
11975
  msgid "Delicious"
11976
  msgstr ""
11977
 
11978
- #: includes/general-hooks.php:2395
11979
  msgid "Pinterest"
11980
  msgstr ""
11981
 
11982
- #: includes/general-hooks.php:2396
11983
  msgid "GitHub"
11984
  msgstr ""
11985
 
11986
- #: includes/general-hooks.php:2583
11987
  msgid "Page Options"
11988
  msgstr ""
11989
 
11990
- #: includes/general-hooks.php:2591
11991
  msgid "Post Options"
11992
  msgstr ""
11993
 
11994
- #: includes/general-hooks.php:3066
11995
  msgid "Page %s"
11996
  msgstr ""
11997
 
11998
- #: includes/general-hooks.php:3639
11999
  msgid "current "
12000
  msgstr ""
12001
 
12002
- #: includes/general-hooks.php:3669
12003
  msgid "Edit Header & Footer"
12004
  msgstr ""
12005
 
@@ -12231,13 +12116,13 @@ msgctxt "post format archive title"
12231
  msgid "Chats"
12232
  msgstr ""
12233
 
12234
- #: includes/general-hooks.php:3087
12235
  #. translators: playlist item title
12236
  msgctxt "playlist item title"
12237
  msgid "&#8220;%s&#8221;"
12238
  msgstr ""
12239
 
12240
- #: includes/general-hooks.php:3112 includes/general-hooks.php:3117
12241
  #. translators: playlist item title
12242
  msgctxt "playlist item title"
12243
  msgid "%s"
1
  # Averta Copyright (c) {2021}
2
  msgid ""
3
  msgstr ""
4
+ "Project-Id-Version: Phlox Core Elements 2.8.5\n"
5
  "Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
6
+ "POT-Creation-Date: 2021-08-08 09:48:55+00:00\n"
7
  "MIME-Version: 1.0\n"
8
  "Content-Type: text/plain; charset=utf-8\n"
9
  "Content-Transfer-Encoding: 8bit\n"
903
 
904
  #: admin/includes/metaboxes/metabox-fields-general-header.php:202
905
  #: includes/elements/staff.php:207 includes/elements/text.php:105
906
+ #: includes/general-hooks.php:3047
907
  msgid "Boxed"
908
  msgstr ""
909
 
1854
  msgstr ""
1855
 
1856
  #: includes/classes/class-auxin-demo-importer.php:293
1857
+ #: includes/classes/class-auxin-demo-importer.php:1272
1858
  msgid "Importing Users"
1859
  msgstr ""
1860
 
1884
  msgid "Importing Sliders"
1885
  msgstr ""
1886
 
1887
+ #: includes/classes/class-auxin-demo-importer.php:1335
1888
  msgid "Preparing Site ..."
1889
  msgstr ""
1890
 
1891
+ #: includes/classes/class-auxin-demo-importer.php:1354
1892
  msgid "All steps are successful"
1893
  msgstr ""
1894
 
2705
  msgid "Select Audio"
2706
  msgstr ""
2707
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2708
  #: includes/elementor/class-auxin-elementor-core-elements.php:404
2709
  msgid "Element class \"%s\" not found."
2710
  msgstr ""
3071
  #: includes/elementor/modules/dynamic-tags/pages-url.php:35
3072
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:91
3073
  #: includes/elementor/modules/dynamic-tags/post-custom-field.php:108
3074
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:35
3075
  #: includes/elementor/modules/dynamic-tags/taxonomies-url.php:35
3076
  #: includes/elementor/modules/theme-builder/module.php:85
3077
  msgid "Select..."
3689
  msgid "Post URL"
3690
  msgstr ""
3691
 
3692
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:19
3693
+ #: includes/elementor/modules/dynamic-tags/posts-url.php:57
3694
+ msgid "Posts URL"
3695
+ msgstr ""
3696
+
3697
  #: includes/elementor/modules/dynamic-tags/request-parameter.php:18
3698
  msgid "Request Parameter"
3699
  msgstr ""
4120
  msgstr ""
4121
 
4122
  #: includes/elementor/modules/theme-builder/module.php:131
4123
+ #: includes/general-hooks.php:1790 includes/general-hooks.php:1796
4124
  msgid "404 Page"
4125
  msgstr ""
4126
 
6461
 
6462
  #: includes/elementor/widgets/image.php:278
6463
  #: includes/elementor/widgets/theme-elements/shopping-cart.php:101
6464
+ #: includes/general-hooks.php:1938
6465
  msgid "Settings"
6466
  msgstr ""
6467
 
7568
  #: includes/elements/recent-posts-tiles-carousel.php:199
7569
  #: includes/elements/recent-posts-tiles.php:229
7570
  #: includes/elements/recent-posts-timeline.php:224
7571
+ #: includes/general-hooks.php:1878
7572
  msgid "Include posts"
7573
  msgstr ""
7574
 
8505
  msgid "Copyright"
8506
  msgstr ""
8507
 
8508
+ #: includes/elementor/widgets/theme-elements/copyright.php:102
8509
+ msgid "Copyright Text"
8510
+ msgstr ""
8511
+
8512
  #: includes/elementor/widgets/theme-elements/copyright.php:104
8513
  msgid "&copy; %s. All rights reserved."
8514
  msgstr ""
9135
  msgid "The name which appears in about widget."
9136
  msgstr ""
9137
 
9138
+ #: includes/elements/about-widget.php:72 includes/general-hooks.php:2409
9139
  msgid "Skills"
9140
  msgstr ""
9141
 
11667
  "login page and is useful for advance custom styling purposes."
11668
  msgstr ""
11669
 
11670
+ #: includes/general-hooks.php:1774
11671
+ msgid "Login Style"
11672
+ msgstr ""
11673
+
11674
+ #: includes/general-hooks.php:1775
11675
+ msgid "Custom Css style for login page"
11676
+ msgstr ""
11677
+
11678
+ #: includes/general-hooks.php:1791
11679
  msgid "404 Page Options"
11680
  msgstr ""
11681
 
11682
+ #: includes/general-hooks.php:1797
11683
  msgid "Specifies a page to display on 404."
11684
  msgstr ""
11685
 
11686
+ #: includes/general-hooks.php:1812 includes/general-hooks.php:1829
11687
  msgid "Maintenance or Comingsoon Page"
11688
  msgstr ""
11689
 
11690
+ #: includes/general-hooks.php:1813
11691
  msgid "Maintenance or Comingsoon Page Options"
11692
  msgstr ""
11693
 
11694
+ #: includes/general-hooks.php:1818
11695
  msgid "Enable Maintenance or Comingsoon Mode"
11696
  msgstr ""
11697
 
11698
+ #: includes/general-hooks.php:1819
11699
  msgid "With this option you can manually enable Maintenance or Comingsoon mode"
11700
  msgstr ""
11701
 
11702
+ #: includes/general-hooks.php:1830
11703
  msgid ""
11704
  "In This Case You Can Set Your Specifc Page for Maintenance or Comingsoon "
11705
  "Mode"
11706
  msgstr ""
11707
 
11708
+ #: includes/general-hooks.php:1849
11709
  msgid "Search Results"
11710
  msgstr ""
11711
 
11712
+ #: includes/general-hooks.php:1850
11713
  msgid "Search Results Options"
11714
  msgstr ""
11715
 
11716
+ #: includes/general-hooks.php:1856
11717
  msgid "Exclude Posts Types"
11718
  msgstr ""
11719
 
11720
+ #: includes/general-hooks.php:1857
11721
  msgid "The post types which should be excluded from search results."
11722
  msgstr ""
11723
 
11724
+ #: includes/general-hooks.php:1867
11725
  msgid "Exclude Posts Without Featured Image"
11726
  msgstr ""
11727
 
11728
+ #: includes/general-hooks.php:1868
11729
  msgid "Exclude posts without featured image in search results."
11730
  msgstr ""
11731
 
11732
+ #: includes/general-hooks.php:1879
11733
  msgid ""
11734
  "If you intend to include additional posts, you should specify the posts "
11735
  "here.<br>You have to insert the Post IDs that are separated by camma (eg. "
11736
  "53,34,87,25)"
11737
  msgstr ""
11738
 
11739
+ #: includes/general-hooks.php:1893
11740
  msgid "Import/Export"
11741
  msgstr ""
11742
 
11743
+ #: includes/general-hooks.php:1894
11744
  msgid "Import or Export options"
11745
  msgstr ""
11746
 
11747
+ #: includes/general-hooks.php:1901
11748
  msgid "Export Data"
11749
  msgstr ""
11750
 
11751
+ #: includes/general-hooks.php:1902
11752
  msgid "Your theme options code which you can import later."
11753
  msgstr ""
11754
 
11755
+ #: includes/general-hooks.php:1912
11756
  msgid "Import Data"
11757
  msgstr ""
11758
 
11759
+ #: includes/general-hooks.php:1913
11760
  msgid "Paste the exported theme options code to import into theme."
11761
  msgstr ""
11762
 
11763
+ #: includes/general-hooks.php:1928
11764
  msgid "White Label"
11765
  msgstr ""
11766
 
11767
+ #: includes/general-hooks.php:1929
11768
  msgid "White Label Settings"
11769
  msgstr ""
11770
 
11771
+ #: includes/general-hooks.php:1939
11772
  msgid "Change PHLOX labels."
11773
  msgstr ""
11774
 
11775
+ #: includes/general-hooks.php:1943
11776
  msgid "Theme Name"
11777
  msgstr ""
11778
 
11779
+ #: includes/general-hooks.php:1954
11780
  msgid "Theme Author Name"
11781
  msgstr ""
11782
 
11783
+ #: includes/general-hooks.php:1963
11784
  msgid "Theme Author URL"
11785
  msgstr ""
11786
 
11787
+ #: includes/general-hooks.php:1972
11788
  msgid "Theme Description"
11789
  msgstr ""
11790
 
11791
+ #: includes/general-hooks.php:1981
11792
  msgid "Theme Screenshot (1200x900)"
11793
  msgstr ""
11794
 
11795
+ #: includes/general-hooks.php:1994
11796
  msgid "Displays"
11797
  msgstr ""
11798
 
11799
+ #: includes/general-hooks.php:1995
11800
  msgid "Change PHLOX admin views."
11801
  msgstr ""
11802
 
11803
+ #: includes/general-hooks.php:1999
11804
  msgid "Hide Notifications"
11805
  msgstr ""
11806
 
11807
+ #: includes/general-hooks.php:2010
11808
  msgid "Hide Theme Badge"
11809
  msgstr ""
11810
 
11811
+ #: includes/general-hooks.php:2021
11812
  msgid "Hide Phlox Menu"
11813
  msgstr ""
11814
 
11815
+ #: includes/general-hooks.php:2032
11816
  msgid "Hide Dashboard Section"
11817
  msgstr ""
11818
 
11819
+ #: includes/general-hooks.php:2050
11820
  msgid "Hide Customization Section"
11821
  msgstr ""
11822
 
11823
+ #: includes/general-hooks.php:2068
11824
  msgid "Hide Demo Importer Section"
11825
  msgstr ""
11826
 
11827
+ #: includes/general-hooks.php:2086
11828
  msgid "Hide Template Kits Section"
11829
  msgstr ""
11830
 
11831
+ #: includes/general-hooks.php:2104
11832
  msgid "Hide Plugins Section"
11833
  msgstr ""
11834
 
11835
+ #: includes/general-hooks.php:2122
11836
  msgid "Hide Tutorials Section"
11837
  msgstr ""
11838
 
11839
+ #: includes/general-hooks.php:2140
11840
  msgid "Hide Feedback Section"
11841
  msgstr ""
11842
 
11843
+ #: includes/general-hooks.php:2402
11844
  msgid "Twitter"
11845
  msgstr ""
11846
 
11847
+ #: includes/general-hooks.php:2403
11848
  msgid "Facebook"
11849
  msgstr ""
11850
 
11851
+ #: includes/general-hooks.php:2404
11852
  msgid "Google Plus"
11853
  msgstr ""
11854
 
11855
+ #: includes/general-hooks.php:2405
11856
  msgid "Flickr"
11857
  msgstr ""
11858
 
11859
+ #: includes/general-hooks.php:2406
11860
  msgid "Delicious"
11861
  msgstr ""
11862
 
11863
+ #: includes/general-hooks.php:2407
11864
  msgid "Pinterest"
11865
  msgstr ""
11866
 
11867
+ #: includes/general-hooks.php:2408
11868
  msgid "GitHub"
11869
  msgstr ""
11870
 
11871
+ #: includes/general-hooks.php:2595
11872
  msgid "Page Options"
11873
  msgstr ""
11874
 
11875
+ #: includes/general-hooks.php:2603
11876
  msgid "Post Options"
11877
  msgstr ""
11878
 
11879
+ #: includes/general-hooks.php:3078
11880
  msgid "Page %s"
11881
  msgstr ""
11882
 
11883
+ #: includes/general-hooks.php:3651
11884
  msgid "current "
11885
  msgstr ""
11886
 
11887
+ #: includes/general-hooks.php:3681
11888
  msgid "Edit Header & Footer"
11889
  msgstr ""
11890
 
12116
  msgid "Chats"
12117
  msgstr ""
12118
 
12119
+ #: includes/general-hooks.php:3099
12120
  #. translators: playlist item title
12121
  msgctxt "playlist item title"
12122
  msgid "&#8220;%s&#8221;"
12123
  msgstr ""
12124
 
12125
+ #: includes/general-hooks.php:3124 includes/general-hooks.php:3129
12126
  #. translators: playlist item title
12127
  msgctxt "playlist item title"
12128
  msgid "%s"
public/assets/js/plugins.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! Phlox Core Plugin - v2.8.4 (2021-07)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
1
+ /*! Phlox Core Plugin - v2.8.5 (2021-08)
2
  * All required plugins
3
  * http://phlox.pro/
4
  */
wpml-config.xml CHANGED
@@ -10,4 +10,143 @@
10
  <key name="auxin_login_logo_height"/>
11
  </key>
12
  </admin-texts>
13
- </wpml-config>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  <key name="auxin_login_logo_height"/>
11
  </key>
12
  </admin-texts>
13
+
14
+ <elementor-widgets>
15
+ <widget name="aux_modern_heading">
16
+ <conditions>
17
+ <condition key="widgetType">aux_modern_heading</condition>
18
+ </conditions>
19
+ <fields>
20
+ <field type="Modern Heading: Title" editor_type="LINE">title</field>
21
+ <field type="Modern Heading: Description" editor_type="VISUAL">description</field>
22
+ <field type="Modern Heading: Before Text" editor_type="LINE">title_secondary_before</field>
23
+ <field type="Modern Heading: Highlighted Text" editor_type="LINE">title_secondary_highlight</field>
24
+ <field type="Modern Heading: After Text" editor_type="LINE">title_secondary_after</field>
25
+ </fields>
26
+ </widget>
27
+
28
+ <widget name="aux_button">
29
+ <conditions>
30
+ <condition key="widgetType">aux_button</condition>
31
+ </conditions>
32
+ <fields>
33
+ <field type="Button: Label" editor_type="LINE">label</field>
34
+ </fields>
35
+ </widget>
36
+
37
+ <widget name="aux_contact_form">
38
+ <conditions>
39
+ <condition key="widgetType">aux_contact_form</condition>
40
+ </conditions>
41
+ <fields>
42
+ <field type="Contact Form 7: Shortcode" editor_type="LINE">label</field>
43
+ </fields>
44
+ </widget>
45
+
46
+ <widget name="aux_blockquote">
47
+ <conditions>
48
+ <condition key="widgetType">aux_blockquote</condition>
49
+ </conditions>
50
+ <fields>
51
+ <field type="Blockquote: Content" editor_type="VISUAL">label</field>
52
+ </fields>
53
+ </widget>
54
+
55
+ <widget name="aux_staff">
56
+ <conditions>
57
+ <condition key="widgetType">aux_staff</condition>
58
+ </conditions>
59
+ <fields>
60
+ <field type="Staff: Name" editor_type="LINE">title</field>
61
+ <field type="Staff: Occupation" editor_type="LINE">subtitle</field>
62
+ <field type="Staff: Content" editor_type="VISUAL">content</field>
63
+ </fields>
64
+ </widget>
65
+
66
+ <widget name="aux_testimonial">
67
+ <conditions>
68
+ <condition key="widgetType">aux_testimonial</condition>
69
+ </conditions>
70
+ <fields>
71
+ <field type="Testimonial: Name" editor_type="LINE">title</field>
72
+ <field type="Testimonial: Occupation" editor_type="LINE">subtitle</field>
73
+ <field type="Testimonial: Content" editor_type="VISUAL">content</field>
74
+ </fields>
75
+ </widget>
76
+
77
+ <widget name="aux_text">
78
+ <conditions>
79
+ <condition key="widgetType">aux_text</condition>
80
+ </conditions>
81
+ <fields>
82
+ <field type="Info Box: Name" editor_type="LINE">title</field>
83
+ <field type="Info Box: Occupation" editor_type="LINE">subtitle</field>
84
+ <field type="Info Box: Content" editor_type="VISUAL">content</field>
85
+ <field type="Info Box: Button label" editor_type="LINE">btn_label</field>
86
+ </fields>
87
+ </widget>
88
+
89
+ <widget name="aux_gmap">
90
+ <conditions>
91
+ <condition key="widgetType">aux_gmap</condition>
92
+ </conditions>
93
+ <fields>
94
+ <field type="MAP: Latitude" editor_type="LINE">latitude</field>
95
+ <field type="MAP: Longitude" editor_type="LINE">longitude</field>
96
+ <field type="MAP: Marker info" editor_type="LINE">marker_info</field>
97
+ </fields>
98
+ </widget>
99
+
100
+ <widget name="aux_modern_button">
101
+ <conditions>
102
+ <condition key="widgetType">aux_modern_button</condition>
103
+ </conditions>
104
+ <fields>
105
+ <field type="Button: Text" editor_type="LINE">label</field>
106
+ <field type="Button: Highlighted Text" editor_type="LINE">label2</field>
107
+ <field type="Button: After Text" editor_type="LINE">label3</field>
108
+ <field type="Button: Link" editor_type="LINK">link</field>
109
+ </fields>
110
+ </widget>
111
+
112
+ <widget name="aux_copyright">
113
+ <conditions>
114
+ <condition key="widgetType">aux_copyright</condition>
115
+ </conditions>
116
+ <fields>
117
+ <field type="Button: Text" editor_type="LINE">copyright_text</field>
118
+ </fields>
119
+ </widget>
120
+
121
+ <widget name="aux_icon_list">
122
+ <conditions>
123
+ <condition key="widgetType">aux_icon_list</condition>
124
+ </conditions>
125
+ <fields-in-item items_of="list">
126
+ <field type="Flexible List: Text" editor_type="LINE">text_primary</field>
127
+ <field type="Flexible List: Secondary Text" editor_type="LINE">text_secondary</field>
128
+ <field type="Flexible List: Link" editor_type="LINK">link</field>
129
+ </fields-in-item>
130
+ </widget>
131
+
132
+ <widget name="aux_accordion">
133
+ <conditions>
134
+ <condition key="widgetType">aux_accordion</condition>
135
+ </conditions>
136
+ <fields-in-item items_of="tab_items">
137
+ <field type="Accordion: Label" editor_type="LINE">accordion_label</field>
138
+ <field type="Accordion: Content" editor_type="VISUAL">content</field>
139
+ </fields-in-item>
140
+ </widget>
141
+
142
+ <widget name="aux_tabs">
143
+ <conditions>
144
+ <condition key="widgetType">aux_tabs</condition>
145
+ </conditions>
146
+ <fields-in-item items_of="tab_items">
147
+ <field type="Tab: Label" editor_type="LINE">tab_label</field>
148
+ <field type="Tab: Content" editor_type="VISUAL">content</field>
149
+ </fields-in-item>
150
+ </widget>
151
+ </elementor-widgets>
152
+ </wpml-config>