Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.8.9 |
Comparing to | |
See all releases |
Code changes from version 2.8.7 to 2.8.9
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +1 -1
- includes/define.php +1 -1
- includes/elementor/widgets/button.php +3 -3
- includes/elementor/widgets/custom-list.php +3 -3
- includes/elementor/widgets/divider.php +6 -6
- includes/elementor/widgets/gallery.php +3 -3
- includes/elementor/widgets/heading-modern.php +3 -3
- includes/elementor/widgets/icon.php +3 -3
- includes/elementor/widgets/image.php +3 -3
- includes/elementor/widgets/quote.php +3 -3
- includes/elementor/widgets/recent-posts-grid-carousel.php +6 -6
- includes/elementor/widgets/recent-posts-masonry.php +3 -3
- includes/elementor/widgets/responsive-table.php +6 -6
- includes/elementor/widgets/staff.php +3 -3
- includes/elementor/widgets/svg.php +3 -3
- includes/elementor/widgets/testimonial.php +3 -3
- includes/elementor/widgets/text.php +3 -3
- includes/elementor/widgets/theme-elements/breadcrumbs.php +3 -3
- includes/elementor/widgets/theme-elements/current-time.php +3 -3
- includes/elementor/widgets/theme-elements/menu.php +6 -6
- includes/elementor/widgets/theme-elements/shopping-cart.php +3 -3
- includes/elementor/widgets/theme-elements/site-title.php +3 -3
- languages/auxin-elements-fa_IR.po +1 -1
- languages/auxin-elements.pot +2 -2
- public/assets/js/plugins.js +1 -1
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.
|
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.9
|
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.
|
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.9 (2021-09)
|
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!
|
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.
|
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.9
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.8.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.8.9' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/widgets/button.php
CHANGED
@@ -232,15 +232,15 @@ class Button extends Widget_Base {
|
|
232 |
'options' => array(
|
233 |
'left' => array(
|
234 |
'title' => __( 'Left', 'auxin-elements' ),
|
235 |
-
'icon' => '
|
236 |
),
|
237 |
'center' => array(
|
238 |
'title' => __( 'Center', 'auxin-elements' ),
|
239 |
-
'icon' => '
|
240 |
),
|
241 |
'right' => array(
|
242 |
'title' => __( 'Right', 'auxin-elements' ),
|
243 |
-
'icon' => '
|
244 |
),
|
245 |
),
|
246 |
'default' => 'center',
|
232 |
'options' => array(
|
233 |
'left' => array(
|
234 |
'title' => __( 'Left', 'auxin-elements' ),
|
235 |
+
'icon' => 'eicon-text-align-left',
|
236 |
),
|
237 |
'center' => array(
|
238 |
'title' => __( 'Center', 'auxin-elements' ),
|
239 |
+
'icon' => 'eicon-text-align-center',
|
240 |
),
|
241 |
'right' => array(
|
242 |
'title' => __( 'Right', 'auxin-elements' ),
|
243 |
+
'icon' => 'eicon-text-align-right',
|
244 |
),
|
245 |
),
|
246 |
'default' => 'center',
|
includes/elementor/widgets/custom-list.php
CHANGED
@@ -471,15 +471,15 @@ class CustomList extends Widget_Base {
|
|
471 |
'options' => array(
|
472 |
'flex-start' => array(
|
473 |
'title' => __( 'Left', 'auxin-elements' ),
|
474 |
-
'icon' => '
|
475 |
),
|
476 |
'center' => array(
|
477 |
'title' => __( 'Center', 'auxin-elements' ),
|
478 |
-
'icon' => '
|
479 |
),
|
480 |
'flex-end' => array(
|
481 |
'title' => __( 'Right', 'auxin-elements' ),
|
482 |
-
'icon' => '
|
483 |
),
|
484 |
),
|
485 |
'default' => 'center',
|
471 |
'options' => array(
|
472 |
'flex-start' => array(
|
473 |
'title' => __( 'Left', 'auxin-elements' ),
|
474 |
+
'icon' => 'eicon-text-align-left',
|
475 |
),
|
476 |
'center' => array(
|
477 |
'title' => __( 'Center', 'auxin-elements' ),
|
478 |
+
'icon' => 'eicon-text-align-center',
|
479 |
),
|
480 |
'flex-end' => array(
|
481 |
'title' => __( 'Right', 'auxin-elements' ),
|
482 |
+
'icon' => 'eicon-text-align-right',
|
483 |
),
|
484 |
),
|
485 |
'default' => 'center',
|
includes/elementor/widgets/divider.php
CHANGED
@@ -196,15 +196,15 @@ class Divider extends Widget_Base {
|
|
196 |
'options' => array(
|
197 |
'left' => array(
|
198 |
'title' => __( 'Left', 'auxin-elements' ),
|
199 |
-
'icon' => '
|
200 |
),
|
201 |
'center' => array(
|
202 |
'title' => __( 'Center', 'auxin-elements' ),
|
203 |
-
'icon' => '
|
204 |
),
|
205 |
'right' => array(
|
206 |
'title' => __( 'Right', 'auxin-elements' ),
|
207 |
-
'icon' => '
|
208 |
)
|
209 |
),
|
210 |
'return_value' => '',
|
@@ -235,15 +235,15 @@ class Divider extends Widget_Base {
|
|
235 |
'options' => array(
|
236 |
'left' => array(
|
237 |
'title' => __( 'Left', 'auxin-elements' ),
|
238 |
-
'icon' => '
|
239 |
),
|
240 |
'center' => array(
|
241 |
'title' => __( 'Center', 'auxin-elements' ),
|
242 |
-
'icon' => '
|
243 |
),
|
244 |
'right' => array(
|
245 |
'title' => __( 'Right', 'auxin-elements' ),
|
246 |
-
'icon' => '
|
247 |
)
|
248 |
),
|
249 |
'return_value' => '',
|
196 |
'options' => array(
|
197 |
'left' => array(
|
198 |
'title' => __( 'Left', 'auxin-elements' ),
|
199 |
+
'icon' => 'eicon-text-align-left',
|
200 |
),
|
201 |
'center' => array(
|
202 |
'title' => __( 'Center', 'auxin-elements' ),
|
203 |
+
'icon' => 'eicon-text-align-center',
|
204 |
),
|
205 |
'right' => array(
|
206 |
'title' => __( 'Right', 'auxin-elements' ),
|
207 |
+
'icon' => 'eicon-text-align-right',
|
208 |
)
|
209 |
),
|
210 |
'return_value' => '',
|
235 |
'options' => array(
|
236 |
'left' => array(
|
237 |
'title' => __( 'Left', 'auxin-elements' ),
|
238 |
+
'icon' => 'eicon-text-align-left',
|
239 |
),
|
240 |
'center' => array(
|
241 |
'title' => __( 'Center', 'auxin-elements' ),
|
242 |
+
'icon' => 'eicon-text-align-center',
|
243 |
),
|
244 |
'right' => array(
|
245 |
'title' => __( 'Right', 'auxin-elements' ),
|
246 |
+
'icon' => 'eicon-text-align-right',
|
247 |
)
|
248 |
),
|
249 |
'return_value' => '',
|
includes/elementor/widgets/gallery.php
CHANGED
@@ -344,15 +344,15 @@ class Gallery extends Widget_Base {
|
|
344 |
'options' => array(
|
345 |
'left' => array(
|
346 |
'title' => __( 'Left', 'auxin-elements' ),
|
347 |
-
'icon' => '
|
348 |
),
|
349 |
'center' => array(
|
350 |
'title' => __( 'Center', 'auxin-elements' ),
|
351 |
-
'icon' => '
|
352 |
),
|
353 |
'right' => array(
|
354 |
'title' => __( 'Right', 'auxin-elements' ),
|
355 |
-
'icon' => '
|
356 |
),
|
357 |
'justify' => array(
|
358 |
'title' => __( 'Justified', 'auxin-elements' ),
|
344 |
'options' => array(
|
345 |
'left' => array(
|
346 |
'title' => __( 'Left', 'auxin-elements' ),
|
347 |
+
'icon' => 'eicon-text-align-left',
|
348 |
),
|
349 |
'center' => array(
|
350 |
'title' => __( 'Center', 'auxin-elements' ),
|
351 |
+
'icon' => 'eicon-text-align-center',
|
352 |
),
|
353 |
'right' => array(
|
354 |
'title' => __( 'Right', 'auxin-elements' ),
|
355 |
+
'icon' => 'eicon-text-align-right',
|
356 |
),
|
357 |
'justify' => array(
|
358 |
'title' => __( 'Justified', 'auxin-elements' ),
|
includes/elementor/widgets/heading-modern.php
CHANGED
@@ -157,15 +157,15 @@ class ModernHeading extends Widget_Base {
|
|
157 |
'options' => array(
|
158 |
'left' => array(
|
159 |
'title' => __( 'Left', 'auxin-elements' ),
|
160 |
-
'icon' => '
|
161 |
),
|
162 |
'center' => array(
|
163 |
'title' => __( 'Center', 'auxin-elements' ),
|
164 |
-
'icon' => '
|
165 |
),
|
166 |
'right' => array(
|
167 |
'title' => __( 'Right', 'auxin-elements' ),
|
168 |
-
'icon' => '
|
169 |
)
|
170 |
),
|
171 |
'selectors_dictionary' => [
|
157 |
'options' => array(
|
158 |
'left' => array(
|
159 |
'title' => __( 'Left', 'auxin-elements' ),
|
160 |
+
'icon' => 'eicon-text-align-left',
|
161 |
),
|
162 |
'center' => array(
|
163 |
'title' => __( 'Center', 'auxin-elements' ),
|
164 |
+
'icon' => 'eicon-text-align-center',
|
165 |
),
|
166 |
'right' => array(
|
167 |
'title' => __( 'Right', 'auxin-elements' ),
|
168 |
+
'icon' => 'eicon-text-align-right',
|
169 |
)
|
170 |
),
|
171 |
'selectors_dictionary' => [
|
includes/elementor/widgets/icon.php
CHANGED
@@ -168,15 +168,15 @@ class Icon extends Widget_Base {
|
|
168 |
'options' => array(
|
169 |
'left' => array(
|
170 |
'title' => __( 'Left', 'elementor' ),
|
171 |
-
'icon' => '
|
172 |
),
|
173 |
'center' => array(
|
174 |
'title' => __( 'Center', 'elementor' ),
|
175 |
-
'icon' => '
|
176 |
),
|
177 |
'right' => array(
|
178 |
'title' => __( 'Right', 'elementor' ),
|
179 |
-
'icon' => '
|
180 |
),
|
181 |
),
|
182 |
'default' => 'center',
|
168 |
'options' => array(
|
169 |
'left' => array(
|
170 |
'title' => __( 'Left', 'elementor' ),
|
171 |
+
'icon' => 'eicon-text-align-left',
|
172 |
),
|
173 |
'center' => array(
|
174 |
'title' => __( 'Center', 'elementor' ),
|
175 |
+
'icon' => 'eicon-text-align-center',
|
176 |
),
|
177 |
'right' => array(
|
178 |
'title' => __( 'Right', 'elementor' ),
|
179 |
+
'icon' => 'eicon-text-align-right',
|
180 |
),
|
181 |
),
|
182 |
'default' => 'center',
|
includes/elementor/widgets/image.php
CHANGED
@@ -317,15 +317,15 @@ class Image extends Widget_Base {
|
|
317 |
'options' => array(
|
318 |
'left' => array(
|
319 |
'title' => __( 'Left', 'auxin-elements' ),
|
320 |
-
'icon' => '
|
321 |
),
|
322 |
'center' => array(
|
323 |
'title' => __( 'Center', 'auxin-elements' ),
|
324 |
-
'icon' => '
|
325 |
),
|
326 |
'right' => array(
|
327 |
'title' => __( 'Right', 'auxin-elements' ),
|
328 |
-
'icon' => '
|
329 |
)
|
330 |
),
|
331 |
'default' => '',
|
317 |
'options' => array(
|
318 |
'left' => array(
|
319 |
'title' => __( 'Left', 'auxin-elements' ),
|
320 |
+
'icon' => 'eicon-text-align-left',
|
321 |
),
|
322 |
'center' => array(
|
323 |
'title' => __( 'Center', 'auxin-elements' ),
|
324 |
+
'icon' => 'eicon-text-align-center',
|
325 |
),
|
326 |
'right' => array(
|
327 |
'title' => __( 'Right', 'auxin-elements' ),
|
328 |
+
'icon' => 'eicon-text-align-right',
|
329 |
)
|
330 |
),
|
331 |
'default' => '',
|
includes/elementor/widgets/quote.php
CHANGED
@@ -163,15 +163,15 @@ class Quote extends Widget_Base {
|
|
163 |
),
|
164 |
'left' => array(
|
165 |
'title' => __( 'Left', 'auxin-elements' ),
|
166 |
-
'icon' => '
|
167 |
),
|
168 |
'center' => array(
|
169 |
'title' => __( 'Center', 'auxin-elements' ),
|
170 |
-
'icon' => '
|
171 |
),
|
172 |
'right' => array(
|
173 |
'title' => __( 'Right', 'auxin-elements' ),
|
174 |
-
'icon' => '
|
175 |
)
|
176 |
),
|
177 |
'selectors' => array(
|
163 |
),
|
164 |
'left' => array(
|
165 |
'title' => __( 'Left', 'auxin-elements' ),
|
166 |
+
'icon' => 'eicon-text-align-left',
|
167 |
),
|
168 |
'center' => array(
|
169 |
'title' => __( 'Center', 'auxin-elements' ),
|
170 |
+
'icon' => 'eicon-text-align-center',
|
171 |
),
|
172 |
'right' => array(
|
173 |
'title' => __( 'Right', 'auxin-elements' ),
|
174 |
+
'icon' => 'eicon-text-align-right',
|
175 |
)
|
176 |
),
|
177 |
'selectors' => array(
|
includes/elementor/widgets/recent-posts-grid-carousel.php
CHANGED
@@ -1654,15 +1654,15 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1654 |
'options' => array(
|
1655 |
'left' => array(
|
1656 |
'title' => __( 'Left', 'auxin-elements' ),
|
1657 |
-
'icon' => '
|
1658 |
),
|
1659 |
'center' => array(
|
1660 |
'title' => __( 'Center', 'auxin-elements' ),
|
1661 |
-
'icon' => '
|
1662 |
),
|
1663 |
'right' => array(
|
1664 |
'title' => __( 'Right', 'auxin-elements' ),
|
1665 |
-
'icon' => '
|
1666 |
),
|
1667 |
),
|
1668 |
'default' => 'left',
|
@@ -1767,15 +1767,15 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1767 |
'options' => array(
|
1768 |
'left' => array(
|
1769 |
'title' => __( 'Left', 'auxin-elements' ),
|
1770 |
-
'icon' => '
|
1771 |
),
|
1772 |
'center' => array(
|
1773 |
'title' => __( 'Center', 'auxin-elements' ),
|
1774 |
-
'icon' => '
|
1775 |
),
|
1776 |
'right' => array(
|
1777 |
'title' => __( 'Right', 'auxin-elements' ),
|
1778 |
-
'icon' => '
|
1779 |
),
|
1780 |
),
|
1781 |
'default' => 'left',
|
1654 |
'options' => array(
|
1655 |
'left' => array(
|
1656 |
'title' => __( 'Left', 'auxin-elements' ),
|
1657 |
+
'icon' => 'eicon-text-align-left',
|
1658 |
),
|
1659 |
'center' => array(
|
1660 |
'title' => __( 'Center', 'auxin-elements' ),
|
1661 |
+
'icon' => 'eicon-text-align-center',
|
1662 |
),
|
1663 |
'right' => array(
|
1664 |
'title' => __( 'Right', 'auxin-elements' ),
|
1665 |
+
'icon' => 'eicon-text-align-right',
|
1666 |
),
|
1667 |
),
|
1668 |
'default' => 'left',
|
1767 |
'options' => array(
|
1768 |
'left' => array(
|
1769 |
'title' => __( 'Left', 'auxin-elements' ),
|
1770 |
+
'icon' => 'eicon-text-align-left',
|
1771 |
),
|
1772 |
'center' => array(
|
1773 |
'title' => __( 'Center', 'auxin-elements' ),
|
1774 |
+
'icon' => 'eicon-text-align-center',
|
1775 |
),
|
1776 |
'right' => array(
|
1777 |
'title' => __( 'Right', 'auxin-elements' ),
|
1778 |
+
'icon' => 'eicon-text-align-right',
|
1779 |
),
|
1780 |
),
|
1781 |
'default' => 'left',
|
includes/elementor/widgets/recent-posts-masonry.php
CHANGED
@@ -1153,15 +1153,15 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1153 |
'options' => array(
|
1154 |
'left' => array(
|
1155 |
'title' => __( 'Left', 'auxin-elements' ),
|
1156 |
-
'icon' => '
|
1157 |
),
|
1158 |
'center' => array(
|
1159 |
'title' => __( 'Center', 'auxin-elements' ),
|
1160 |
-
'icon' => '
|
1161 |
),
|
1162 |
'right' => array(
|
1163 |
'title' => __( 'Right', 'auxin-elements' ),
|
1164 |
-
'icon' => '
|
1165 |
),
|
1166 |
),
|
1167 |
'default' => 'left',
|
1153 |
'options' => array(
|
1154 |
'left' => array(
|
1155 |
'title' => __( 'Left', 'auxin-elements' ),
|
1156 |
+
'icon' => 'eicon-text-align-left',
|
1157 |
),
|
1158 |
'center' => array(
|
1159 |
'title' => __( 'Center', 'auxin-elements' ),
|
1160 |
+
'icon' => 'eicon-text-align-center',
|
1161 |
),
|
1162 |
'right' => array(
|
1163 |
'title' => __( 'Right', 'auxin-elements' ),
|
1164 |
+
'icon' => 'eicon-text-align-right',
|
1165 |
),
|
1166 |
),
|
1167 |
'default' => 'left',
|
includes/elementor/widgets/responsive-table.php
CHANGED
@@ -135,15 +135,15 @@ class ResponsiveTable extends Widget_Base {
|
|
135 |
'options' => array(
|
136 |
'left' => array(
|
137 |
'title' => __( 'Left', 'auxin-elements' ),
|
138 |
-
'icon' => '
|
139 |
),
|
140 |
'center' => array(
|
141 |
'title' => __( 'Center', 'auxin-elements' ),
|
142 |
-
'icon' => '
|
143 |
),
|
144 |
'right' => array(
|
145 |
'title' => __( 'Right', 'auxin-elements' ),
|
146 |
-
'icon' => '
|
147 |
)
|
148 |
),
|
149 |
'default' => '',
|
@@ -202,15 +202,15 @@ class ResponsiveTable extends Widget_Base {
|
|
202 |
'options' => array(
|
203 |
'left' => array(
|
204 |
'title' => __( 'Left', 'auxin-elements' ),
|
205 |
-
'icon' => '
|
206 |
),
|
207 |
'center' => array(
|
208 |
'title' => __( 'Center', 'auxin-elements' ),
|
209 |
-
'icon' => '
|
210 |
),
|
211 |
'right' => array(
|
212 |
'title' => __( 'Right', 'auxin-elements' ),
|
213 |
-
'icon' => '
|
214 |
)
|
215 |
),
|
216 |
'default' => '',
|
135 |
'options' => array(
|
136 |
'left' => array(
|
137 |
'title' => __( 'Left', 'auxin-elements' ),
|
138 |
+
'icon' => 'eicon-text-align-left',
|
139 |
),
|
140 |
'center' => array(
|
141 |
'title' => __( 'Center', 'auxin-elements' ),
|
142 |
+
'icon' => 'eicon-text-align-center',
|
143 |
),
|
144 |
'right' => array(
|
145 |
'title' => __( 'Right', 'auxin-elements' ),
|
146 |
+
'icon' => 'eicon-text-align-right',
|
147 |
)
|
148 |
),
|
149 |
'default' => '',
|
202 |
'options' => array(
|
203 |
'left' => array(
|
204 |
'title' => __( 'Left', 'auxin-elements' ),
|
205 |
+
'icon' => 'eicon-text-align-left',
|
206 |
),
|
207 |
'center' => array(
|
208 |
'title' => __( 'Center', 'auxin-elements' ),
|
209 |
+
'icon' => 'eicon-text-align-center',
|
210 |
),
|
211 |
'right' => array(
|
212 |
'title' => __( 'Right', 'auxin-elements' ),
|
213 |
+
'icon' => 'eicon-text-align-right',
|
214 |
)
|
215 |
),
|
216 |
'default' => '',
|
includes/elementor/widgets/staff.php
CHANGED
@@ -872,15 +872,15 @@ class Staff extends Widget_Base {
|
|
872 |
'options' => array(
|
873 |
'left' => array(
|
874 |
'title' => __( 'Left', 'auxin-elements' ),
|
875 |
-
'icon' => '
|
876 |
),
|
877 |
'center' => array(
|
878 |
'title' => __( 'Center', 'auxin-elements' ),
|
879 |
-
'icon' => '
|
880 |
),
|
881 |
'right' => array(
|
882 |
'title' => __( 'Right', 'auxin-elements' ),
|
883 |
-
'icon' => '
|
884 |
),
|
885 |
),
|
886 |
'default' => 'left',
|
872 |
'options' => array(
|
873 |
'left' => array(
|
874 |
'title' => __( 'Left', 'auxin-elements' ),
|
875 |
+
'icon' => 'eicon-text-align-left',
|
876 |
),
|
877 |
'center' => array(
|
878 |
'title' => __( 'Center', 'auxin-elements' ),
|
879 |
+
'icon' => 'eicon-text-align-center',
|
880 |
),
|
881 |
'right' => array(
|
882 |
'title' => __( 'Right', 'auxin-elements' ),
|
883 |
+
'icon' => 'eicon-text-align-right',
|
884 |
),
|
885 |
),
|
886 |
'default' => 'left',
|
includes/elementor/widgets/svg.php
CHANGED
@@ -282,15 +282,15 @@ class Simple__SVG extends Widget_Base {
|
|
282 |
'options' => array(
|
283 |
'left' => array(
|
284 |
'title' => __( 'Left', 'auxin-elements' ),
|
285 |
-
'icon' => '
|
286 |
),
|
287 |
'center' => array(
|
288 |
'title' => __( 'Center', 'auxin-elements' ),
|
289 |
-
'icon' => '
|
290 |
),
|
291 |
'right' => array(
|
292 |
'title' => __( 'Right', 'auxin-elements' ),
|
293 |
-
'icon' => '
|
294 |
)
|
295 |
),
|
296 |
'selectors' => array(
|
282 |
'options' => array(
|
283 |
'left' => array(
|
284 |
'title' => __( 'Left', 'auxin-elements' ),
|
285 |
+
'icon' => 'eicon-text-align-left',
|
286 |
),
|
287 |
'center' => array(
|
288 |
'title' => __( 'Center', 'auxin-elements' ),
|
289 |
+
'icon' => 'eicon-text-align-center',
|
290 |
),
|
291 |
'right' => array(
|
292 |
'title' => __( 'Right', 'auxin-elements' ),
|
293 |
+
'icon' => 'eicon-text-align-right',
|
294 |
)
|
295 |
),
|
296 |
'selectors' => array(
|
includes/elementor/widgets/testimonial.php
CHANGED
@@ -807,15 +807,15 @@ class Testimonial extends Widget_Base {
|
|
807 |
'options' => array(
|
808 |
'left' => array(
|
809 |
'title' => __( 'Left', 'auxin-elements' ),
|
810 |
-
'icon' => '
|
811 |
),
|
812 |
'center' => array(
|
813 |
'title' => __( 'Center', 'auxin-elements' ),
|
814 |
-
'icon' => '
|
815 |
),
|
816 |
'right' => array(
|
817 |
'title' => __( 'Right', 'auxin-elements' ),
|
818 |
-
'icon' => '
|
819 |
)
|
820 |
),
|
821 |
'return_value' => '',
|
807 |
'options' => array(
|
808 |
'left' => array(
|
809 |
'title' => __( 'Left', 'auxin-elements' ),
|
810 |
+
'icon' => 'eicon-text-align-left',
|
811 |
),
|
812 |
'center' => array(
|
813 |
'title' => __( 'Center', 'auxin-elements' ),
|
814 |
+
'icon' => 'eicon-text-align-center',
|
815 |
),
|
816 |
'right' => array(
|
817 |
'title' => __( 'Right', 'auxin-elements' ),
|
818 |
+
'icon' => 'eicon-text-align-right',
|
819 |
)
|
820 |
),
|
821 |
'return_value' => '',
|
includes/elementor/widgets/text.php
CHANGED
@@ -1437,15 +1437,15 @@ class Text extends Widget_Base {
|
|
1437 |
'options' => array(
|
1438 |
'left' => array(
|
1439 |
'title' => __( 'Left', 'auxin-elements' ),
|
1440 |
-
'icon' => '
|
1441 |
),
|
1442 |
'center' => array(
|
1443 |
'title' => __( 'Center', 'auxin-elements' ),
|
1444 |
-
'icon' => '
|
1445 |
),
|
1446 |
'right' => array(
|
1447 |
'title' => __( 'Right', 'auxin-elements' ),
|
1448 |
-
'icon' => '
|
1449 |
),
|
1450 |
),
|
1451 |
'default' => 'center',
|
1437 |
'options' => array(
|
1438 |
'left' => array(
|
1439 |
'title' => __( 'Left', 'auxin-elements' ),
|
1440 |
+
'icon' => 'eicon-text-align-left',
|
1441 |
),
|
1442 |
'center' => array(
|
1443 |
'title' => __( 'Center', 'auxin-elements' ),
|
1444 |
+
'icon' => 'eicon-text-align-center',
|
1445 |
),
|
1446 |
'right' => array(
|
1447 |
'title' => __( 'Right', 'auxin-elements' ),
|
1448 |
+
'icon' => 'eicon-text-align-right',
|
1449 |
),
|
1450 |
),
|
1451 |
'default' => 'center',
|
includes/elementor/widgets/theme-elements/breadcrumbs.php
CHANGED
@@ -429,15 +429,15 @@ class Breadcrumbs extends Widget_Base {
|
|
429 |
'options' => [
|
430 |
'left' => [
|
431 |
'title' => __( 'Left', 'auxin-elements' ),
|
432 |
-
'icon' => '
|
433 |
],
|
434 |
'center' => [
|
435 |
'title' => __( 'Center', 'auxin-elements' ),
|
436 |
-
'icon' => '
|
437 |
],
|
438 |
'right' => [
|
439 |
'title' => __( 'Right', 'auxin-elements' ),
|
440 |
-
'icon' => '
|
441 |
]
|
442 |
],
|
443 |
'default' => '',
|
429 |
'options' => [
|
430 |
'left' => [
|
431 |
'title' => __( 'Left', 'auxin-elements' ),
|
432 |
+
'icon' => 'eicon-text-align-left'
|
433 |
],
|
434 |
'center' => [
|
435 |
'title' => __( 'Center', 'auxin-elements' ),
|
436 |
+
'icon' => 'eicon-text-align-center'
|
437 |
],
|
438 |
'right' => [
|
439 |
'title' => __( 'Right', 'auxin-elements' ),
|
440 |
+
'icon' => 'eicon-text-align-right'
|
441 |
]
|
442 |
],
|
443 |
'default' => '',
|
includes/elementor/widgets/theme-elements/current-time.php
CHANGED
@@ -133,15 +133,15 @@ class Current_Time extends Widget_Base {
|
|
133 |
'options' => array(
|
134 |
'left' => array(
|
135 |
'title' => __( 'Left', 'auxin-elements' ),
|
136 |
-
'icon' => '
|
137 |
),
|
138 |
'center' => array(
|
139 |
'title' => __( 'Center', 'auxin-elements' ),
|
140 |
-
'icon' => '
|
141 |
),
|
142 |
'right' => array(
|
143 |
'title' => __( 'Right', 'auxin-elements' ),
|
144 |
-
'icon' => '
|
145 |
),
|
146 |
),
|
147 |
'toggle' => true,
|
133 |
'options' => array(
|
134 |
'left' => array(
|
135 |
'title' => __( 'Left', 'auxin-elements' ),
|
136 |
+
'icon' => 'eicon-text-align-left',
|
137 |
),
|
138 |
'center' => array(
|
139 |
'title' => __( 'Center', 'auxin-elements' ),
|
140 |
+
'icon' => 'eicon-text-align-center',
|
141 |
),
|
142 |
'right' => array(
|
143 |
'title' => __( 'Right', 'auxin-elements' ),
|
144 |
+
'icon' => 'eicon-text-align-right',
|
145 |
),
|
146 |
),
|
147 |
'toggle' => true,
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -326,15 +326,15 @@ class MenuBox extends Widget_Base {
|
|
326 |
'options' => array(
|
327 |
'left' => array(
|
328 |
'title' => __( 'Left', 'auxin-elements' ),
|
329 |
-
'icon' => '
|
330 |
),
|
331 |
'center' => array(
|
332 |
'title' => __( 'Center', 'auxin-elements' ),
|
333 |
-
'icon' => '
|
334 |
),
|
335 |
'right' => array(
|
336 |
'title' => __( 'Right', 'auxin-elements' ),
|
337 |
-
'icon' => '
|
338 |
)
|
339 |
),
|
340 |
'default' => 'left',
|
@@ -1344,15 +1344,15 @@ class MenuBox extends Widget_Base {
|
|
1344 |
'options' => array(
|
1345 |
'left' => array(
|
1346 |
'title' => __( 'Left', 'auxin-elements' ),
|
1347 |
-
'icon' => '
|
1348 |
),
|
1349 |
'center' => array(
|
1350 |
'title' => __( 'Center', 'auxin-elements' ),
|
1351 |
-
'icon' => '
|
1352 |
),
|
1353 |
'right' => array(
|
1354 |
'title' => __( 'Right', 'auxin-elements' ),
|
1355 |
-
'icon' => '
|
1356 |
),
|
1357 |
),
|
1358 |
'default' => 'left',
|
326 |
'options' => array(
|
327 |
'left' => array(
|
328 |
'title' => __( 'Left', 'auxin-elements' ),
|
329 |
+
'icon' => 'eicon-text-align-left'
|
330 |
),
|
331 |
'center' => array(
|
332 |
'title' => __( 'Center', 'auxin-elements' ),
|
333 |
+
'icon' => 'eicon-text-align-center'
|
334 |
),
|
335 |
'right' => array(
|
336 |
'title' => __( 'Right', 'auxin-elements' ),
|
337 |
+
'icon' => 'eicon-text-align-right'
|
338 |
)
|
339 |
),
|
340 |
'default' => 'left',
|
1344 |
'options' => array(
|
1345 |
'left' => array(
|
1346 |
'title' => __( 'Left', 'auxin-elements' ),
|
1347 |
+
'icon' => 'eicon-text-align-left',
|
1348 |
),
|
1349 |
'center' => array(
|
1350 |
'title' => __( 'Center', 'auxin-elements' ),
|
1351 |
+
'icon' => 'eicon-text-align-center',
|
1352 |
),
|
1353 |
'right' => array(
|
1354 |
'title' => __( 'Right', 'auxin-elements' ),
|
1355 |
+
'icon' => 'eicon-text-align-right',
|
1356 |
),
|
1357 |
),
|
1358 |
'default' => 'left',
|
includes/elementor/widgets/theme-elements/shopping-cart.php
CHANGED
@@ -193,15 +193,15 @@ class Shopping_Cart extends Widget_Base {
|
|
193 |
'options' => array(
|
194 |
'start' => array(
|
195 |
'title' => __( 'Left', 'elementor' ),
|
196 |
-
'icon' => '
|
197 |
),
|
198 |
'center' => array(
|
199 |
'title' => __( 'Center', 'elementor' ),
|
200 |
-
'icon' => '
|
201 |
),
|
202 |
'end' => array(
|
203 |
'title' => __( 'Right', 'elementor' ),
|
204 |
-
'icon' => '
|
205 |
),
|
206 |
),
|
207 |
'default' => '',
|
193 |
'options' => array(
|
194 |
'start' => array(
|
195 |
'title' => __( 'Left', 'elementor' ),
|
196 |
+
'icon' => 'eicon-text-align-left',
|
197 |
),
|
198 |
'center' => array(
|
199 |
'title' => __( 'Center', 'elementor' ),
|
200 |
+
'icon' => 'eicon-text-align-center',
|
201 |
),
|
202 |
'end' => array(
|
203 |
'title' => __( 'Right', 'elementor' ),
|
204 |
+
'icon' => 'eicon-text-align-right',
|
205 |
),
|
206 |
),
|
207 |
'default' => '',
|
includes/elementor/widgets/theme-elements/site-title.php
CHANGED
@@ -186,15 +186,15 @@ class SiteTitle extends Widget_Base {
|
|
186 |
'options' => array(
|
187 |
'flex-start' => array(
|
188 |
'title' => __( 'Left', 'auxin-elements' ),
|
189 |
-
'icon' => '
|
190 |
),
|
191 |
'center' => array(
|
192 |
'title' => __( 'Center', 'auxin-elements' ),
|
193 |
-
'icon' => '
|
194 |
),
|
195 |
'flex-end' => array(
|
196 |
'title' => __( 'Right', 'auxin-elements' ),
|
197 |
-
'icon' => '
|
198 |
),
|
199 |
),
|
200 |
'default' => '',
|
186 |
'options' => array(
|
187 |
'flex-start' => array(
|
188 |
'title' => __( 'Left', 'auxin-elements' ),
|
189 |
+
'icon' => 'eicon-text-align-left',
|
190 |
),
|
191 |
'center' => array(
|
192 |
'title' => __( 'Center', 'auxin-elements' ),
|
193 |
+
'icon' => 'eicon-text-align-center',
|
194 |
),
|
195 |
'flex-end' => array(
|
196 |
'title' => __( 'Right', 'auxin-elements' ),
|
197 |
+
'icon' => 'eicon-text-align-right',
|
198 |
),
|
199 |
),
|
200 |
'default' => '',
|
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-09-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
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-09-19 08:11:25+00:00\n"
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
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.
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
-
"POT-Creation-Date: 2021-09-
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
1 |
# Averta Copyright (c) {2021}
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
+
"Project-Id-Version: Phlox Core Elements 2.8.9\n"
|
5 |
"Report-Msgid-Bugs-To: http://averta.net/phlox/wordpress-theme/\n"
|
6 |
+
"POT-Creation-Date: 2021-09-19 08:11:25+00:00\n"
|
7 |
"MIME-Version: 1.0\n"
|
8 |
"Content-Type: text/plain; charset=utf-8\n"
|
9 |
"Content-Transfer-Encoding: 8bit\n"
|
public/assets/js/plugins.js
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
/*! Phlox Core Plugin - v2.8.
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|
1 |
+
/*! Phlox Core Plugin - v2.8.9 (2021-09)
|
2 |
* All required plugins
|
3 |
* http://phlox.pro/
|
4 |
*/
|