Version Description
Download this release
Release Info
Developer | averta |
Plugin | Shortcodes and extra features for Phlox theme |
Version | 2.7.12 |
Comparing to | |
See all releases |
Code changes from version 2.7.11 to 2.7.12
- README.txt +1 -1
- admin/assets/js/plugins.js +1 -1
- auxin-elements.php +2 -11
- includes/define.php +1 -1
- includes/elementor/modules/column.php +1 -1
- includes/elementor/modules/common.php +1 -1
- includes/elementor/modules/section.php +1 -1
- includes/elementor/modules/settings/base/manager.php +1 -1
- includes/elementor/modules/settings/general/manager.php +1 -1
- includes/elementor/modules/settings/page/manager.php +1 -1
- includes/elementor/widgets/accordion.php +3 -3
- includes/elementor/widgets/button.php +3 -3
- includes/elementor/widgets/contact-form.php +8 -8
- includes/elementor/widgets/custom-list.php +5 -5
- includes/elementor/widgets/gallery.php +2 -2
- includes/elementor/widgets/heading-modern.php +5 -5
- includes/elementor/widgets/image.php +2 -2
- includes/elementor/widgets/mailchimp.php +4 -4
- includes/elementor/widgets/modern-button.php +7 -7
- includes/elementor/widgets/quote.php +3 -3
- includes/elementor/widgets/recent-comments.php +3 -3
- includes/elementor/widgets/recent-posts-grid-carousel.php +8 -8
- includes/elementor/widgets/recent-posts-land-style.php +5 -5
- includes/elementor/widgets/recent-posts-masonry.php +7 -7
- includes/elementor/widgets/recent-posts-tiles-carousel.php +3 -3
- includes/elementor/widgets/recent-posts-tiles.php +3 -3
- includes/elementor/widgets/recent-posts-timeline.php +5 -5
- includes/elementor/widgets/recent-products.php +3 -3
- includes/elementor/widgets/responsive-table.php +3 -3
- includes/elementor/widgets/staff.php +4 -4
- includes/elementor/widgets/tabs.php +3 -3
- includes/elementor/widgets/testimonial.php +7 -7
- includes/elementor/widgets/text.php +6 -6
- includes/elementor/widgets/theme-elements/breadcrumbs.php +2 -2
- includes/elementor/widgets/theme-elements/copyright.php +3 -3
- includes/elementor/widgets/theme-elements/current-time.php +2 -2
- includes/elementor/widgets/theme-elements/logo.php +3 -3
- includes/elementor/widgets/theme-elements/menu.php +10 -10
- includes/elementor/widgets/theme-elements/modern-search.php +5 -5
- includes/elementor/widgets/theme-elements/search.php +3 -3
- includes/elementor/widgets/theme-elements/shopping-cart.php +4 -4
- includes/elementor/widgets/theme-elements/site-title.php +4 -4
- includes/elementor/widgets/touch-slider.php +3 -3
- includes/general-hooks.php +6 -1
- languages/auxin-elements-fa_IR.po +240 -244
- languages/auxin-elements.pot +241 -245
- 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.0
|
10 |
-
Stable tag: 2.7.
|
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.0
|
10 |
+
Stable tag: 2.7.12
|
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.7.
|
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.7.12 (2021-04)
|
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.7.
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
@@ -49,16 +49,7 @@ if( is_admin() ||
|
|
49 |
$plugin_requirements = new Auxin_Plugin_Requirements();
|
50 |
$plugin_requirements->requirements = array(
|
51 |
|
52 |
-
'plugins' => array(
|
53 |
-
array(
|
54 |
-
'name' => __('Page Builder by SiteOrigin', 'auxin-elements'), // The plugin name.
|
55 |
-
'basename' => 'siteorigin-panels/siteorigin-panels.php', // The plugin basename (typically the folder name and main php file)
|
56 |
-
'required' => false, // If true, the user will be notified with a notice to install the plugin.
|
57 |
-
'version' => '', // E.g. 1.0.0. If set, the active plugin must be this version or higher.
|
58 |
-
'dependency' => true, // If true, and the plugin is activated, the plugin will be loaded before as a dependeny.
|
59 |
-
'is_callable' => '' // If set, this callable will be be checked for availability to determine if a plugin is active.
|
60 |
-
)
|
61 |
-
),
|
62 |
'themes' => array(
|
63 |
array(
|
64 |
'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
|
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.7.12
|
16 |
* Author: averta
|
17 |
* Author URI: http://averta.net
|
18 |
* Text Domain: auxin-elements
|
49 |
$plugin_requirements = new Auxin_Plugin_Requirements();
|
50 |
$plugin_requirements->requirements = array(
|
51 |
|
52 |
+
'plugins' => array(),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
53 |
'themes' => array(
|
54 |
array(
|
55 |
'name' => __('Phlox Pro', 'auxin-elements'), // The theme name.
|
includes/define.php
CHANGED
@@ -12,7 +12,7 @@ if( ! defined( 'THEME_NAME' ) ){
|
|
12 |
}
|
13 |
|
14 |
|
15 |
-
define( 'AUXELS_VERSION' , '2.7.
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
12 |
}
|
13 |
|
14 |
|
15 |
+
define( 'AUXELS_VERSION' , '2.7.12' );
|
16 |
|
17 |
define( 'AUXELS_SLUG' , 'auxin-elements' );
|
18 |
|
includes/elementor/modules/column.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/common.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/section.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/base/manager.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
use Elementor\Scheme_Color;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Control_Media;
|
12 |
use Elementor\Group_Control_Border;
|
13 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/general/manager.php
CHANGED
@@ -8,7 +8,7 @@ use Elementor\Widget_Base;
|
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
-
use Elementor\
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
+
use Elementor\Core\Schemes\Typography;
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/modules/settings/page/manager.php
CHANGED
@@ -8,7 +8,7 @@ use Elementor\Widget_Base;
|
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
-
use Elementor\
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
8 |
use Elementor\Group_Control_Image_Size;
|
9 |
use Elementor\Group_Control_Typography;
|
10 |
use Elementor\Scheme_Color;
|
11 |
+
use Elementor\Core\Schemes\Typography;
|
12 |
use Elementor\Control_Media;
|
13 |
use Elementor\Group_Control_Border;
|
14 |
use Elementor\Group_Control_Box_Shadow;
|
includes/elementor/widgets/accordion.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -602,7 +602,7 @@ class Accordion extends Widget_Base {
|
|
602 |
Group_Control_Typography::get_type(),
|
603 |
array(
|
604 |
'name' => 'title_typography',
|
605 |
-
'scheme' =>
|
606 |
'selector' => '{{WRAPPER}} .aux-toggle-header'
|
607 |
)
|
608 |
);
|
@@ -635,7 +635,7 @@ class Accordion extends Widget_Base {
|
|
635 |
Group_Control_Typography::get_type(),
|
636 |
array(
|
637 |
'name' => 'content_typography',
|
638 |
-
'scheme' =>
|
639 |
'selector' => '{{WRAPPER}} .aux-toggle-content'
|
640 |
)
|
641 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
602 |
Group_Control_Typography::get_type(),
|
603 |
array(
|
604 |
'name' => 'title_typography',
|
605 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
606 |
'selector' => '{{WRAPPER}} .aux-toggle-header'
|
607 |
)
|
608 |
);
|
635 |
Group_Control_Typography::get_type(),
|
636 |
array(
|
637 |
'name' => 'content_typography',
|
638 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
639 |
'selector' => '{{WRAPPER}} .aux-toggle-content'
|
640 |
)
|
641 |
);
|
includes/elementor/widgets/button.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -522,7 +522,7 @@ class Button extends Widget_Base {
|
|
522 |
Group_Control_Typography::get_type(),
|
523 |
array(
|
524 |
'name' => 'text_typography',
|
525 |
-
'scheme' =>
|
526 |
'selector' => '{{WRAPPER}} .aux-text'
|
527 |
)
|
528 |
);
|
@@ -560,7 +560,7 @@ class Button extends Widget_Base {
|
|
560 |
Group_Control_Typography::get_type(),
|
561 |
array(
|
562 |
'name' => 'hover_text_typography',
|
563 |
-
'scheme' =>
|
564 |
'selector' => '{{WRAPPER}} .aux-text'
|
565 |
)
|
566 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
522 |
Group_Control_Typography::get_type(),
|
523 |
array(
|
524 |
'name' => 'text_typography',
|
525 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
526 |
'selector' => '{{WRAPPER}} .aux-text'
|
527 |
)
|
528 |
);
|
560 |
Group_Control_Typography::get_type(),
|
561 |
array(
|
562 |
'name' => 'hover_text_typography',
|
563 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
564 |
'selector' => '{{WRAPPER}} .aux-text'
|
565 |
)
|
566 |
);
|
includes/elementor/widgets/contact-form.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
@@ -168,7 +168,7 @@ class ContactForm extends Widget_Base {
|
|
168 |
[
|
169 |
'name' => 'general_input_typography',
|
170 |
'label' => __( 'Typography', 'auxin-elements' ),
|
171 |
-
'scheme' =>
|
172 |
'selector' => '{{WRAPPER}} input:not([type="submit"])'
|
173 |
]
|
174 |
);
|
@@ -453,7 +453,7 @@ class ContactForm extends Widget_Base {
|
|
453 |
[
|
454 |
'name' => 'placeholder_typography',
|
455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
456 |
-
'scheme' =>
|
457 |
'selector' => '{{WRAPPER}} input:not([type="submit"])::placeholder'
|
458 |
]
|
459 |
);
|
@@ -927,7 +927,7 @@ class ContactForm extends Widget_Base {
|
|
927 |
[
|
928 |
'name' => 'dropdown_typography',
|
929 |
'label' => __( 'Typography', 'auxin-elements' ),
|
930 |
-
'scheme' =>
|
931 |
'selector' => '{{WRAPPER}} select',
|
932 |
]
|
933 |
);
|
@@ -1170,7 +1170,7 @@ class ContactForm extends Widget_Base {
|
|
1170 |
[
|
1171 |
'name' => 'textarea_typography',
|
1172 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1173 |
-
'scheme' =>
|
1174 |
'selector' => '{{WRAPPER}} textarea',
|
1175 |
]
|
1176 |
);
|
@@ -1453,7 +1453,7 @@ class ContactForm extends Widget_Base {
|
|
1453 |
[
|
1454 |
'name' => 'textarea_placeholder_typography',
|
1455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1456 |
-
'scheme' =>
|
1457 |
'selector' => '{{WRAPPER}} textarea::placeholder'
|
1458 |
]
|
1459 |
);
|
@@ -1488,7 +1488,7 @@ class ContactForm extends Widget_Base {
|
|
1488 |
[
|
1489 |
'name' => 'labels_typography',
|
1490 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1491 |
-
'scheme' =>
|
1492 |
'selector' => '{{WRAPPER}} label'
|
1493 |
]
|
1494 |
);
|
@@ -1523,7 +1523,7 @@ class ContactForm extends Widget_Base {
|
|
1523 |
[
|
1524 |
'name' => 'submit_input_typography',
|
1525 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1526 |
-
'scheme' =>
|
1527 |
'selector' => '{{WRAPPER}} input[type="submit"]',
|
1528 |
]
|
1529 |
);
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
168 |
[
|
169 |
'name' => 'general_input_typography',
|
170 |
'label' => __( 'Typography', 'auxin-elements' ),
|
171 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
172 |
'selector' => '{{WRAPPER}} input:not([type="submit"])'
|
173 |
]
|
174 |
);
|
453 |
[
|
454 |
'name' => 'placeholder_typography',
|
455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
456 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
457 |
'selector' => '{{WRAPPER}} input:not([type="submit"])::placeholder'
|
458 |
]
|
459 |
);
|
927 |
[
|
928 |
'name' => 'dropdown_typography',
|
929 |
'label' => __( 'Typography', 'auxin-elements' ),
|
930 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
931 |
'selector' => '{{WRAPPER}} select',
|
932 |
]
|
933 |
);
|
1170 |
[
|
1171 |
'name' => 'textarea_typography',
|
1172 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1173 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1174 |
'selector' => '{{WRAPPER}} textarea',
|
1175 |
]
|
1176 |
);
|
1453 |
[
|
1454 |
'name' => 'textarea_placeholder_typography',
|
1455 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1456 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1457 |
'selector' => '{{WRAPPER}} textarea::placeholder'
|
1458 |
]
|
1459 |
);
|
1488 |
[
|
1489 |
'name' => 'labels_typography',
|
1490 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1491 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1492 |
'selector' => '{{WRAPPER}} label'
|
1493 |
]
|
1494 |
);
|
1523 |
[
|
1524 |
'name' => 'submit_input_typography',
|
1525 |
'label' => __( 'Typography', 'auxin-elements' ),
|
1526 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1527 |
'selector' => '{{WRAPPER}} input[type="submit"]',
|
1528 |
]
|
1529 |
);
|
includes/elementor/widgets/custom-list.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -244,7 +244,7 @@ class CustomList extends Widget_Base {
|
|
244 |
Group_Control_Typography::get_type(),
|
245 |
array(
|
246 |
'name' => 'text_primary_typography',
|
247 |
-
'scheme' =>
|
248 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text',
|
249 |
'condition'=> array(
|
250 |
'display_advanced' => 'yes'
|
@@ -309,7 +309,7 @@ class CustomList extends Widget_Base {
|
|
309 |
Group_Control_Typography::get_type(),
|
310 |
array(
|
311 |
'name' => 'text_secondary_typography',
|
312 |
-
'scheme' =>
|
313 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text2',
|
314 |
'condition'=> array(
|
315 |
'display_advanced' => 'yes',
|
@@ -794,7 +794,7 @@ class CustomList extends Widget_Base {
|
|
794 |
Group_Control_Typography::get_type(),
|
795 |
array(
|
796 |
'name' => 'text1_typography',
|
797 |
-
'scheme' =>
|
798 |
'selector' => '{{WRAPPER}} .aux-icon-list-text'
|
799 |
)
|
800 |
);
|
@@ -850,7 +850,7 @@ class CustomList extends Widget_Base {
|
|
850 |
Group_Control_Typography::get_type(),
|
851 |
array(
|
852 |
'name' => 'text2_typography',
|
853 |
-
'scheme' =>
|
854 |
'selector' => '{{WRAPPER}} .aux-icon-list-text2'
|
855 |
)
|
856 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
244 |
Group_Control_Typography::get_type(),
|
245 |
array(
|
246 |
'name' => 'text_primary_typography',
|
247 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
248 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text',
|
249 |
'condition'=> array(
|
250 |
'display_advanced' => 'yes'
|
309 |
Group_Control_Typography::get_type(),
|
310 |
array(
|
311 |
'name' => 'text_secondary_typography',
|
312 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
313 |
'selector' => '{{WRAPPER}} {{CURRENT_ITEM}} .aux-icon-list-text2',
|
314 |
'condition'=> array(
|
315 |
'display_advanced' => 'yes',
|
794 |
Group_Control_Typography::get_type(),
|
795 |
array(
|
796 |
'name' => 'text1_typography',
|
797 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
798 |
'selector' => '{{WRAPPER}} .aux-icon-list-text'
|
799 |
)
|
800 |
);
|
850 |
Group_Control_Typography::get_type(),
|
851 |
array(
|
852 |
'name' => 'text2_typography',
|
853 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
854 |
'selector' => '{{WRAPPER}} .aux-icon-list-text2'
|
855 |
)
|
856 |
);
|
includes/elementor/widgets/gallery.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Widget_Base;
|
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -388,7 +388,7 @@ class Gallery extends Widget_Base {
|
|
388 |
Group_Control_Typography::get_type(),
|
389 |
array(
|
390 |
'name' => 'typography',
|
391 |
-
'scheme' =>
|
392 |
'selector' => '{{WRAPPER}} .gallery-item .gallery-caption',
|
393 |
'condition' => array(
|
394 |
'caption_display' => 'yes'
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
388 |
Group_Control_Typography::get_type(),
|
389 |
array(
|
390 |
'name' => 'typography',
|
391 |
+
'scheme' => Typography::TYPOGRAPHY_4,
|
392 |
'selector' => '{{WRAPPER}} .gallery-item .gallery-caption',
|
393 |
'condition' => array(
|
394 |
'caption_display' => 'yes'
|
includes/elementor/widgets/heading-modern.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
use Elementor\Group_Control_Text_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -346,7 +346,7 @@ class ModernHeading extends Widget_Base {
|
|
346 |
Group_Control_Typography::get_type(),
|
347 |
array(
|
348 |
'name' => 'title_typography',
|
349 |
-
'scheme' =>
|
350 |
'selector' => '{{WRAPPER}} .aux-modern-heading-primary'
|
351 |
)
|
352 |
);
|
@@ -531,7 +531,7 @@ class ModernHeading extends Widget_Base {
|
|
531 |
Group_Control_Typography::get_type(),
|
532 |
array(
|
533 |
'name' => 'title2_typography',
|
534 |
-
'scheme' =>
|
535 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary'
|
536 |
)
|
537 |
);
|
@@ -702,7 +702,7 @@ class ModernHeading extends Widget_Base {
|
|
702 |
Group_Control_Typography::get_type(),
|
703 |
array(
|
704 |
'name' => 'title2_highlighted_typography',
|
705 |
-
'scheme' =>
|
706 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary .aux-head-highlight'
|
707 |
)
|
708 |
);
|
@@ -980,7 +980,7 @@ class ModernHeading extends Widget_Base {
|
|
980 |
Group_Control_Typography::get_type(),
|
981 |
array(
|
982 |
'name' => 'description_typography',
|
983 |
-
'scheme' =>
|
984 |
'selector' => '{{WRAPPER}} .aux-modern-heading-description'
|
985 |
)
|
986 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
use Elementor\Group_Control_Text_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
346 |
Group_Control_Typography::get_type(),
|
347 |
array(
|
348 |
'name' => 'title_typography',
|
349 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
350 |
'selector' => '{{WRAPPER}} .aux-modern-heading-primary'
|
351 |
)
|
352 |
);
|
531 |
Group_Control_Typography::get_type(),
|
532 |
array(
|
533 |
'name' => 'title2_typography',
|
534 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
535 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary'
|
536 |
)
|
537 |
);
|
702 |
Group_Control_Typography::get_type(),
|
703 |
array(
|
704 |
'name' => 'title2_highlighted_typography',
|
705 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
706 |
'selector' => '{{WRAPPER}} .aux-modern-heading-secondary .aux-head-highlight'
|
707 |
)
|
708 |
);
|
980 |
Group_Control_Typography::get_type(),
|
981 |
array(
|
982 |
'name' => 'description_typography',
|
983 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
984 |
'selector' => '{{WRAPPER}} .aux-modern-heading-description'
|
985 |
)
|
986 |
);
|
includes/elementor/widgets/image.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -671,7 +671,7 @@ class Image extends Widget_Base {
|
|
671 |
Group_Control_Typography::get_type(),
|
672 |
array(
|
673 |
'name' => 'ribbon_typography',
|
674 |
-
'scheme' =>
|
675 |
'selector' => '{{WRAPPER}} .aux-ribbon-wrapper span'
|
676 |
)
|
677 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
671 |
Group_Control_Typography::get_type(),
|
672 |
array(
|
673 |
'name' => 'ribbon_typography',
|
674 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
675 |
'selector' => '{{WRAPPER}} .aux-ribbon-wrapper span'
|
676 |
)
|
677 |
);
|
includes/elementor/widgets/mailchimp.php
CHANGED
@@ -7,7 +7,7 @@ use Elementor\Controls_Manager;
|
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
-
use Elementor\
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
@@ -185,7 +185,7 @@ class MailChimp extends Widget_Base {
|
|
185 |
[
|
186 |
'name' => 'input_typography',
|
187 |
'label' => __( 'Typography', 'auxin-elements' ),
|
188 |
-
'scheme' =>
|
189 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"],{{WRAPPER}} .mc4wp-form input[type="email"]',
|
190 |
]
|
191 |
);
|
@@ -412,7 +412,7 @@ class MailChimp extends Widget_Base {
|
|
412 |
[
|
413 |
'name' => 'placeholder_typography',
|
414 |
'label' => __( 'Typography', 'auxin-elements' ),
|
415 |
-
'scheme' =>
|
416 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"]::placeholder,{{WRAPPER}} .mc4wp-form input[type="email"]::placeholder'
|
417 |
]
|
418 |
);
|
@@ -443,7 +443,7 @@ class MailChimp extends Widget_Base {
|
|
443 |
[
|
444 |
'name' => 'submit_input_typography',
|
445 |
'label' => __( 'Typography', 'auxin-elements' ),
|
446 |
-
'scheme' =>
|
447 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="submit"]',
|
448 |
]
|
449 |
);
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Group_Control_Background;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
+
use Elementor\Core\Schemes\Typography;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
13 |
|
185 |
[
|
186 |
'name' => 'input_typography',
|
187 |
'label' => __( 'Typography', 'auxin-elements' ),
|
188 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
189 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"],{{WRAPPER}} .mc4wp-form input[type="email"]',
|
190 |
]
|
191 |
);
|
412 |
[
|
413 |
'name' => 'placeholder_typography',
|
414 |
'label' => __( 'Typography', 'auxin-elements' ),
|
415 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
416 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="text"]::placeholder,{{WRAPPER}} .mc4wp-form input[type="email"]::placeholder'
|
417 |
]
|
418 |
);
|
443 |
[
|
444 |
'name' => 'submit_input_typography',
|
445 |
'label' => __( 'Typography', 'auxin-elements' ),
|
446 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
447 |
'selector' => '{{WRAPPER}} .mc4wp-form input[type="submit"]',
|
448 |
]
|
449 |
);
|
includes/elementor/widgets/modern-button.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Icons_Manager;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -484,7 +484,7 @@ class ModernButton extends Widget_Base {
|
|
484 |
Group_Control_Typography::get_type(),
|
485 |
[
|
486 |
'name' => 'text_normal_typo',
|
487 |
-
'scheme' =>
|
488 |
'selector' => '{{WRAPPER}} .aux-text'
|
489 |
]
|
490 |
);
|
@@ -523,7 +523,7 @@ class ModernButton extends Widget_Base {
|
|
523 |
Group_Control_Typography::get_type(),
|
524 |
[
|
525 |
'name' => 'text_hover_typo',
|
526 |
-
'scheme' =>
|
527 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text'
|
528 |
]
|
529 |
);
|
@@ -584,7 +584,7 @@ class ModernButton extends Widget_Base {
|
|
584 |
Group_Control_Typography::get_type(),
|
585 |
[
|
586 |
'name' => 'text2_normal_typo',
|
587 |
-
'scheme' =>
|
588 |
'selector' => '{{WRAPPER}} .aux-text-highlighted'
|
589 |
]
|
590 |
);
|
@@ -623,7 +623,7 @@ class ModernButton extends Widget_Base {
|
|
623 |
Group_Control_Typography::get_type(),
|
624 |
[
|
625 |
'name' => 'text2_hover_typo',
|
626 |
-
'scheme' =>
|
627 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-highlighted'
|
628 |
]
|
629 |
);
|
@@ -696,7 +696,7 @@ class ModernButton extends Widget_Base {
|
|
696 |
Group_Control_Typography::get_type(),
|
697 |
[
|
698 |
'name' => 'text3_normal_typo',
|
699 |
-
'scheme' =>
|
700 |
'selector' => '{{WRAPPER}} .aux-text-after'
|
701 |
]
|
702 |
);
|
@@ -735,7 +735,7 @@ class ModernButton extends Widget_Base {
|
|
735 |
Group_Control_Typography::get_type(),
|
736 |
[
|
737 |
'name' => 'text3_hover_typo',
|
738 |
-
'scheme' =>
|
739 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-after'
|
740 |
]
|
741 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
use Elementor\Icons_Manager;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
484 |
Group_Control_Typography::get_type(),
|
485 |
[
|
486 |
'name' => 'text_normal_typo',
|
487 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
488 |
'selector' => '{{WRAPPER}} .aux-text'
|
489 |
]
|
490 |
);
|
523 |
Group_Control_Typography::get_type(),
|
524 |
[
|
525 |
'name' => 'text_hover_typo',
|
526 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
527 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text'
|
528 |
]
|
529 |
);
|
584 |
Group_Control_Typography::get_type(),
|
585 |
[
|
586 |
'name' => 'text2_normal_typo',
|
587 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
588 |
'selector' => '{{WRAPPER}} .aux-text-highlighted'
|
589 |
]
|
590 |
);
|
623 |
Group_Control_Typography::get_type(),
|
624 |
[
|
625 |
'name' => 'text2_hover_typo',
|
626 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
627 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-highlighted'
|
628 |
]
|
629 |
);
|
696 |
Group_Control_Typography::get_type(),
|
697 |
[
|
698 |
'name' => 'text3_normal_typo',
|
699 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
700 |
'selector' => '{{WRAPPER}} .aux-text-after'
|
701 |
]
|
702 |
);
|
735 |
Group_Control_Typography::get_type(),
|
736 |
[
|
737 |
'name' => 'text3_hover_typo',
|
738 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
739 |
'selector' => '{{WRAPPER}} .aux-modern-button:hover .aux-text-after'
|
740 |
]
|
741 |
);
|
includes/elementor/widgets/quote.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -195,7 +195,7 @@ class Quote extends Widget_Base {
|
|
195 |
Group_Control_Typography::get_type(),
|
196 |
array(
|
197 |
'name' => 'text_typography',
|
198 |
-
'scheme' =>
|
199 |
'selector' => '{{WRAPPER}} .aux-elem-quote p'
|
200 |
)
|
201 |
);
|
@@ -242,7 +242,7 @@ class Quote extends Widget_Base {
|
|
242 |
Group_Control_Typography::get_type(),
|
243 |
array(
|
244 |
'name' => 'quote_symbol_typography',
|
245 |
-
'scheme' =>
|
246 |
'selector' => '{{WRAPPER}} .aux-quote-symbol:before',
|
247 |
'condition' => array(
|
248 |
'quote_symbol' => 'yes'
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
195 |
Group_Control_Typography::get_type(),
|
196 |
array(
|
197 |
'name' => 'text_typography',
|
198 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
199 |
'selector' => '{{WRAPPER}} .aux-elem-quote p'
|
200 |
)
|
201 |
);
|
242 |
Group_Control_Typography::get_type(),
|
243 |
array(
|
244 |
'name' => 'quote_symbol_typography',
|
245 |
+
'scheme' => Typography::TYPOGRAPHY_3,
|
246 |
'selector' => '{{WRAPPER}} .aux-quote-symbol:before',
|
247 |
'condition' => array(
|
248 |
'quote_symbol' => 'yes'
|
includes/elementor/widgets/recent-comments.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -221,7 +221,7 @@ class RecentComments extends Widget_Base {
|
|
221 |
Group_Control_Typography::get_type(),
|
222 |
array(
|
223 |
'name' => 'title_typography',
|
224 |
-
'scheme' =>
|
225 |
'selector' => '{{WRAPPER}} .entry-title'
|
226 |
)
|
227 |
);
|
@@ -304,7 +304,7 @@ class RecentComments extends Widget_Base {
|
|
304 |
Group_Control_Typography::get_type(),
|
305 |
array(
|
306 |
'name' => 'info_typography',
|
307 |
-
'scheme' =>
|
308 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a'
|
309 |
)
|
310 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
221 |
Group_Control_Typography::get_type(),
|
222 |
array(
|
223 |
'name' => 'title_typography',
|
224 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
225 |
'selector' => '{{WRAPPER}} .entry-title'
|
226 |
)
|
227 |
);
|
304 |
Group_Control_Typography::get_type(),
|
305 |
array(
|
306 |
'name' => 'info_typography',
|
307 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
308 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a'
|
309 |
)
|
310 |
);
|
includes/elementor/widgets/recent-posts-grid-carousel.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -1093,7 +1093,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1093 |
Group_Control_Typography::get_type(),
|
1094 |
array(
|
1095 |
'name' => 'title_typography',
|
1096 |
-
'scheme' =>
|
1097 |
'selector' => '{{WRAPPER}} .entry-title a',
|
1098 |
'condition' => array(
|
1099 |
'display_title' => 'yes',
|
@@ -1197,7 +1197,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1197 |
Group_Control_Typography::get_type(),
|
1198 |
array(
|
1199 |
'name' => 'info_typography',
|
1200 |
-
'scheme' =>
|
1201 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
1202 |
'condition' => array(
|
1203 |
'show_info' => 'yes',
|
@@ -1279,7 +1279,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1279 |
Group_Control_Typography::get_type(),
|
1280 |
array(
|
1281 |
'name' => 'content_typography',
|
1282 |
-
'scheme' =>
|
1283 |
'selector' => '{{WRAPPER}} .entry-content',
|
1284 |
'condition' => array(
|
1285 |
'show_excerpt' => 'yes',
|
@@ -1391,7 +1391,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1391 |
Group_Control_Typography::get_type(),
|
1392 |
array(
|
1393 |
'name' => 'badge_typography',
|
1394 |
-
'scheme' =>
|
1395 |
'selector' => '{{WRAPPER}} .entry-badge a'
|
1396 |
)
|
1397 |
);
|
@@ -1487,7 +1487,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1487 |
Group_Control_Typography::get_type(),
|
1488 |
array(
|
1489 |
'name' => 'meta_typography',
|
1490 |
-
'scheme' =>
|
1491 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1492 |
)
|
1493 |
);
|
@@ -1863,7 +1863,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1863 |
Group_Control_Typography::get_type(),
|
1864 |
array(
|
1865 |
'name' => 'btn_text_typography',
|
1866 |
-
'scheme' =>
|
1867 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more'
|
1868 |
)
|
1869 |
);
|
@@ -1919,7 +1919,7 @@ class RecentPostsGridCarousel extends Widget_Base {
|
|
1919 |
Group_Control_Typography::get_type(),
|
1920 |
array(
|
1921 |
'name' => 'btn_text_typography_hover',
|
1922 |
-
'scheme' =>
|
1923 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more:hover'
|
1924 |
)
|
1925 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
1093 |
Group_Control_Typography::get_type(),
|
1094 |
array(
|
1095 |
'name' => 'title_typography',
|
1096 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1097 |
'selector' => '{{WRAPPER}} .entry-title a',
|
1098 |
'condition' => array(
|
1099 |
'display_title' => 'yes',
|
1197 |
Group_Control_Typography::get_type(),
|
1198 |
array(
|
1199 |
'name' => 'info_typography',
|
1200 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1201 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
1202 |
'condition' => array(
|
1203 |
'show_info' => 'yes',
|
1279 |
Group_Control_Typography::get_type(),
|
1280 |
array(
|
1281 |
'name' => 'content_typography',
|
1282 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1283 |
'selector' => '{{WRAPPER}} .entry-content',
|
1284 |
'condition' => array(
|
1285 |
'show_excerpt' => 'yes',
|
1391 |
Group_Control_Typography::get_type(),
|
1392 |
array(
|
1393 |
'name' => 'badge_typography',
|
1394 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1395 |
'selector' => '{{WRAPPER}} .entry-badge a'
|
1396 |
)
|
1397 |
);
|
1487 |
Group_Control_Typography::get_type(),
|
1488 |
array(
|
1489 |
'name' => 'meta_typography',
|
1490 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1491 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1492 |
)
|
1493 |
);
|
1863 |
Group_Control_Typography::get_type(),
|
1864 |
array(
|
1865 |
'name' => 'btn_text_typography',
|
1866 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1867 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more'
|
1868 |
)
|
1869 |
);
|
1919 |
Group_Control_Typography::get_type(),
|
1920 |
array(
|
1921 |
'name' => 'btn_text_typography_hover',
|
1922 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1923 |
'selector' => '{{WRAPPER}} .entry-meta .aux-read-more:hover'
|
1924 |
)
|
1925 |
);
|
includes/elementor/widgets/recent-posts-land-style.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -650,7 +650,7 @@ class RecentPostsLand extends Widget_Base {
|
|
650 |
Group_Control_Typography::get_type(),
|
651 |
array(
|
652 |
'name' => 'title_typography',
|
653 |
-
'scheme' =>
|
654 |
'selector' => '{{WRAPPER}} .entry-title',
|
655 |
'condition' => array(
|
656 |
'display_title' => 'yes',
|
@@ -754,7 +754,7 @@ class RecentPostsLand extends Widget_Base {
|
|
754 |
Group_Control_Typography::get_type(),
|
755 |
array(
|
756 |
'name' => 'info_typography',
|
757 |
-
'scheme' =>
|
758 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
759 |
'condition' => array(
|
760 |
'show_info' => 'yes',
|
@@ -836,7 +836,7 @@ class RecentPostsLand extends Widget_Base {
|
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'content_typography',
|
839 |
-
'scheme' =>
|
840 |
'selector' => '{{WRAPPER}} .entry-content',
|
841 |
'condition' => array(
|
842 |
'show_excerpt' => 'yes',
|
@@ -925,7 +925,7 @@ class RecentPostsLand extends Widget_Base {
|
|
925 |
Group_Control_Typography::get_type(),
|
926 |
array(
|
927 |
'name' => 'meta_typography',
|
928 |
-
'scheme' =>
|
929 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
930 |
)
|
931 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Box_Shadow;
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
650 |
Group_Control_Typography::get_type(),
|
651 |
array(
|
652 |
'name' => 'title_typography',
|
653 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
654 |
'selector' => '{{WRAPPER}} .entry-title',
|
655 |
'condition' => array(
|
656 |
'display_title' => 'yes',
|
754 |
Group_Control_Typography::get_type(),
|
755 |
array(
|
756 |
'name' => 'info_typography',
|
757 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
758 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
759 |
'condition' => array(
|
760 |
'show_info' => 'yes',
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'content_typography',
|
839 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
840 |
'selector' => '{{WRAPPER}} .entry-content',
|
841 |
'condition' => array(
|
842 |
'show_excerpt' => 'yes',
|
925 |
Group_Control_Typography::get_type(),
|
926 |
array(
|
927 |
'name' => 'meta_typography',
|
928 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
929 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
930 |
)
|
931 |
);
|
includes/elementor/widgets/recent-posts-masonry.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -766,7 +766,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
766 |
Group_Control_Typography::get_type(),
|
767 |
array(
|
768 |
'name' => 'title_typography',
|
769 |
-
'scheme' =>
|
770 |
'selector' => '{{WRAPPER}} .entry-title',
|
771 |
'condition' => array(
|
772 |
'display_title' => 'yes',
|
@@ -870,7 +870,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
870 |
Group_Control_Typography::get_type(),
|
871 |
array(
|
872 |
'name' => 'info_typography',
|
873 |
-
'scheme' =>
|
874 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
875 |
'condition' => array(
|
876 |
'show_info' => 'yes',
|
@@ -952,7 +952,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
952 |
Group_Control_Typography::get_type(),
|
953 |
array(
|
954 |
'name' => 'content_typography',
|
955 |
-
'scheme' =>
|
956 |
'selector' => '{{WRAPPER}} .entry-content',
|
957 |
'condition' => array(
|
958 |
'show_excerpt' => 'yes',
|
@@ -1041,7 +1041,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1041 |
Group_Control_Typography::get_type(),
|
1042 |
array(
|
1043 |
'name' => 'meta_typography',
|
1044 |
-
'scheme' =>
|
1045 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1046 |
)
|
1047 |
);
|
@@ -1261,7 +1261,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1261 |
Group_Control_Typography::get_type(),
|
1262 |
array(
|
1263 |
'name' => 'btn_text_typography',
|
1264 |
-
'scheme' =>
|
1265 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1266 |
)
|
1267 |
);
|
@@ -1317,7 +1317,7 @@ class RecentPostsMasonry extends Widget_Base {
|
|
1317 |
Group_Control_Typography::get_type(),
|
1318 |
array(
|
1319 |
'name' => 'btn_text_typography_hover',
|
1320 |
-
'scheme' =>
|
1321 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1322 |
)
|
1323 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Text_Shadow;
|
766 |
Group_Control_Typography::get_type(),
|
767 |
array(
|
768 |
'name' => 'title_typography',
|
769 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
770 |
'selector' => '{{WRAPPER}} .entry-title',
|
771 |
'condition' => array(
|
772 |
'display_title' => 'yes',
|
870 |
Group_Control_Typography::get_type(),
|
871 |
array(
|
872 |
'name' => 'info_typography',
|
873 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
874 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
875 |
'condition' => array(
|
876 |
'show_info' => 'yes',
|
952 |
Group_Control_Typography::get_type(),
|
953 |
array(
|
954 |
'name' => 'content_typography',
|
955 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
956 |
'selector' => '{{WRAPPER}} .entry-content',
|
957 |
'condition' => array(
|
958 |
'show_excerpt' => 'yes',
|
1041 |
Group_Control_Typography::get_type(),
|
1042 |
array(
|
1043 |
'name' => 'meta_typography',
|
1044 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1045 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
1046 |
)
|
1047 |
);
|
1261 |
Group_Control_Typography::get_type(),
|
1262 |
array(
|
1263 |
'name' => 'btn_text_typography',
|
1264 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1265 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1266 |
)
|
1267 |
);
|
1317 |
Group_Control_Typography::get_type(),
|
1318 |
array(
|
1319 |
'name' => 'btn_text_typography_hover',
|
1320 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1321 |
'selector' => '{{WRAPPER}} .aux-read-more'
|
1322 |
)
|
1323 |
);
|
includes/elementor/widgets/recent-posts-tiles-carousel.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -540,7 +540,7 @@ class RecentPostsTilesCarousel extends Widget_Base {
|
|
540 |
Group_Control_Typography::get_type(),
|
541 |
array(
|
542 |
'name' => 'title_typography',
|
543 |
-
'scheme' =>
|
544 |
'selector' => '{{WRAPPER}} .entry-title',
|
545 |
'condition' => array(
|
546 |
'display_title' => 'yes',
|
@@ -644,7 +644,7 @@ class RecentPostsTilesCarousel extends Widget_Base {
|
|
644 |
Group_Control_Typography::get_type(),
|
645 |
array(
|
646 |
'name' => 'info_typography',
|
647 |
-
'scheme' =>
|
648 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
649 |
'condition' => array(
|
650 |
'show_info' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
540 |
Group_Control_Typography::get_type(),
|
541 |
array(
|
542 |
'name' => 'title_typography',
|
543 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
544 |
'selector' => '{{WRAPPER}} .entry-title',
|
545 |
'condition' => array(
|
546 |
'display_title' => 'yes',
|
644 |
Group_Control_Typography::get_type(),
|
645 |
array(
|
646 |
'name' => 'info_typography',
|
647 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
648 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
649 |
'condition' => array(
|
650 |
'show_info' => 'yes',
|
includes/elementor/widgets/recent-posts-tiles.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -481,7 +481,7 @@ class RecentPostsTiles extends Widget_Base {
|
|
481 |
Group_Control_Typography::get_type(),
|
482 |
array(
|
483 |
'name' => 'title_typography',
|
484 |
-
'scheme' =>
|
485 |
'selector' => '{{WRAPPER}} .entry-title',
|
486 |
'condition' => array(
|
487 |
'display_title' => 'yes',
|
@@ -585,7 +585,7 @@ class RecentPostsTiles extends Widget_Base {
|
|
585 |
Group_Control_Typography::get_type(),
|
586 |
array(
|
587 |
'name' => 'info_typography',
|
588 |
-
'scheme' =>
|
589 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
590 |
'condition' => array(
|
591 |
'show_info' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
481 |
Group_Control_Typography::get_type(),
|
482 |
array(
|
483 |
'name' => 'title_typography',
|
484 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
485 |
'selector' => '{{WRAPPER}} .entry-title',
|
486 |
'condition' => array(
|
487 |
'display_title' => 'yes',
|
585 |
Group_Control_Typography::get_type(),
|
586 |
array(
|
587 |
'name' => 'info_typography',
|
588 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
589 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
590 |
'condition' => array(
|
591 |
'show_info' => 'yes',
|
includes/elementor/widgets/recent-posts-timeline.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -663,7 +663,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
663 |
Group_Control_Typography::get_type(),
|
664 |
array(
|
665 |
'name' => 'title_typography',
|
666 |
-
'scheme' =>
|
667 |
'selector' => '{{WRAPPER}} .entry-title',
|
668 |
'condition' => array(
|
669 |
'display_title' => 'yes',
|
@@ -767,7 +767,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
767 |
Group_Control_Typography::get_type(),
|
768 |
array(
|
769 |
'name' => 'info_typography',
|
770 |
-
'scheme' =>
|
771 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
772 |
'condition' => array(
|
773 |
'show_info' => 'yes',
|
@@ -849,7 +849,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
849 |
Group_Control_Typography::get_type(),
|
850 |
array(
|
851 |
'name' => 'content_typography',
|
852 |
-
'scheme' =>
|
853 |
'selector' => '{{WRAPPER}} .entry-content',
|
854 |
'condition' => array(
|
855 |
'show_excerpt' => 'yes',
|
@@ -938,7 +938,7 @@ class RecentPostsTimeline extends Widget_Base {
|
|
938 |
Group_Control_Typography::get_type(),
|
939 |
array(
|
940 |
'name' => 'meta_typography',
|
941 |
-
'scheme' =>
|
942 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
943 |
)
|
944 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
663 |
Group_Control_Typography::get_type(),
|
664 |
array(
|
665 |
'name' => 'title_typography',
|
666 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
667 |
'selector' => '{{WRAPPER}} .entry-title',
|
668 |
'condition' => array(
|
669 |
'display_title' => 'yes',
|
767 |
Group_Control_Typography::get_type(),
|
768 |
array(
|
769 |
'name' => 'info_typography',
|
770 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
771 |
'selector' => '{{WRAPPER}} .entry-info, {{WRAPPER}} .entry-info a',
|
772 |
'condition' => array(
|
773 |
'show_info' => 'yes',
|
849 |
Group_Control_Typography::get_type(),
|
850 |
array(
|
851 |
'name' => 'content_typography',
|
852 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
853 |
'selector' => '{{WRAPPER}} .entry-content',
|
854 |
'condition' => array(
|
855 |
'show_excerpt' => 'yes',
|
938 |
Group_Control_Typography::get_type(),
|
939 |
array(
|
940 |
'name' => 'meta_typography',
|
941 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
942 |
'selector' => '{{WRAPPER}} .entry-meta, {{WRAPPER}} .entry-meta a, {{WRAPPER}} .entry-meta span'
|
943 |
)
|
944 |
);
|
includes/elementor/widgets/recent-products.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -566,7 +566,7 @@ class RecentProducts extends Widget_Base {
|
|
566 |
Group_Control_Typography::get_type(),
|
567 |
array(
|
568 |
'name' => 'title_typography',
|
569 |
-
'scheme' =>
|
570 |
'selector' => '{{WRAPPER}} .woocommerce-loop-product__title',
|
571 |
'condition' => array(
|
572 |
'display_title' => 'yes',
|
@@ -670,7 +670,7 @@ class RecentProducts extends Widget_Base {
|
|
670 |
Group_Control_Typography::get_type(),
|
671 |
array(
|
672 |
'name' => 'category_typography',
|
673 |
-
'scheme' =>
|
674 |
'selector' => '{{WRAPPER}} .auxshp-meta-terms, {{WRAPPER}} .auxshp-meta-terms a',
|
675 |
'condition' => array(
|
676 |
'display_categories' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
566 |
Group_Control_Typography::get_type(),
|
567 |
array(
|
568 |
'name' => 'title_typography',
|
569 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
570 |
'selector' => '{{WRAPPER}} .woocommerce-loop-product__title',
|
571 |
'condition' => array(
|
572 |
'display_title' => 'yes',
|
670 |
Group_Control_Typography::get_type(),
|
671 |
array(
|
672 |
'name' => 'category_typography',
|
673 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
674 |
'selector' => '{{WRAPPER}} .auxshp-meta-terms, {{WRAPPER}} .auxshp-meta-terms a',
|
675 |
'condition' => array(
|
676 |
'display_categories' => 'yes',
|
includes/elementor/widgets/responsive-table.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Background;
|
10 |
|
11 |
|
@@ -168,7 +168,7 @@ class ResponsiveTable extends Widget_Base {
|
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
'name' => 'table_body_typography',
|
171 |
-
'scheme' =>
|
172 |
'selector' => '{{WRAPPER}} td'
|
173 |
)
|
174 |
);
|
@@ -235,7 +235,7 @@ class ResponsiveTable extends Widget_Base {
|
|
235 |
Group_Control_Typography::get_type(),
|
236 |
array(
|
237 |
'name' => 'table_head_typography',
|
238 |
-
'scheme' =>
|
239 |
'selector' => '{{WRAPPER}} th'
|
240 |
)
|
241 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
|
11 |
|
168 |
Group_Control_Typography::get_type(),
|
169 |
array(
|
170 |
'name' => 'table_body_typography',
|
171 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
172 |
'selector' => '{{WRAPPER}} td'
|
173 |
)
|
174 |
);
|
235 |
Group_Control_Typography::get_type(),
|
236 |
array(
|
237 |
'name' => 'table_head_typography',
|
238 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
239 |
'selector' => '{{WRAPPER}} th'
|
240 |
)
|
241 |
);
|
includes/elementor/widgets/staff.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
@@ -517,7 +517,7 @@ class Staff extends Widget_Base {
|
|
517 |
Group_Control_Typography::get_type(),
|
518 |
array(
|
519 |
'name' => 'title_typography',
|
520 |
-
'scheme' =>
|
521 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
522 |
'condition' => array(
|
523 |
'title!' => '',
|
@@ -598,7 +598,7 @@ class Staff extends Widget_Base {
|
|
598 |
Group_Control_Typography::get_type(),
|
599 |
array(
|
600 |
'name' => 'subtitle_typography',
|
601 |
-
'scheme' =>
|
602 |
'selector' => '{{WRAPPER}} .aux-staff-content .col-subtitle',
|
603 |
'condition' => array(
|
604 |
'subtitle!' => '',
|
@@ -660,7 +660,7 @@ class Staff extends Widget_Base {
|
|
660 |
Group_Control_Typography::get_type(),
|
661 |
array(
|
662 |
'name' => 'content_typography',
|
663 |
-
'scheme' =>
|
664 |
'selector' => '{{WRAPPER}} .entry-content',
|
665 |
'condition' => array(
|
666 |
'content!' => '',
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
|
517 |
Group_Control_Typography::get_type(),
|
518 |
array(
|
519 |
'name' => 'title_typography',
|
520 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
521 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
522 |
'condition' => array(
|
523 |
'title!' => '',
|
598 |
Group_Control_Typography::get_type(),
|
599 |
array(
|
600 |
'name' => 'subtitle_typography',
|
601 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
602 |
'selector' => '{{WRAPPER}} .aux-staff-content .col-subtitle',
|
603 |
'condition' => array(
|
604 |
'subtitle!' => '',
|
660 |
Group_Control_Typography::get_type(),
|
661 |
array(
|
662 |
'name' => 'content_typography',
|
663 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
664 |
'selector' => '{{WRAPPER}} .entry-content',
|
665 |
'condition' => array(
|
666 |
'content!' => '',
|
includes/elementor/widgets/tabs.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
@@ -423,7 +423,7 @@ class Tabs extends Widget_Base {
|
|
423 |
Group_Control_Typography::get_type(),
|
424 |
array(
|
425 |
'name' => 'title_typography',
|
426 |
-
'scheme' =>
|
427 |
'selector' => '{{WRAPPER}} .tabs a'
|
428 |
)
|
429 |
);
|
@@ -456,7 +456,7 @@ class Tabs extends Widget_Base {
|
|
456 |
Group_Control_Typography::get_type(),
|
457 |
array(
|
458 |
'name' => 'content_typography',
|
459 |
-
'scheme' =>
|
460 |
'selector' => '{{WRAPPER}} .tabs-content .entry-editor'
|
461 |
)
|
462 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
11 |
use Elementor\Group_Control_Background;
|
423 |
Group_Control_Typography::get_type(),
|
424 |
array(
|
425 |
'name' => 'title_typography',
|
426 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
427 |
'selector' => '{{WRAPPER}} .tabs a'
|
428 |
)
|
429 |
);
|
456 |
Group_Control_Typography::get_type(),
|
457 |
array(
|
458 |
'name' => 'content_typography',
|
459 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
460 |
'selector' => '{{WRAPPER}} .tabs-content .entry-editor'
|
461 |
)
|
462 |
);
|
includes/elementor/widgets/testimonial.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -381,7 +381,7 @@ class Testimonial extends Widget_Base {
|
|
381 |
Group_Control_Typography::get_type(),
|
382 |
array(
|
383 |
'name' => 'title_typography',
|
384 |
-
'scheme' =>
|
385 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
386 |
'condition' => array(
|
387 |
'title!' => ''
|
@@ -420,7 +420,7 @@ class Testimonial extends Widget_Base {
|
|
420 |
Group_Control_Typography::get_type(),
|
421 |
array(
|
422 |
'name' => 'title_hover_typography',
|
423 |
-
'scheme' =>
|
424 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-title, {{WRAPPER}} .aux-widget-testimonial:hover .col-title a',
|
425 |
'condition' => array(
|
426 |
'title!' => ''
|
@@ -495,7 +495,7 @@ class Testimonial extends Widget_Base {
|
|
495 |
Group_Control_Typography::get_type(),
|
496 |
array(
|
497 |
'name' => 'subtitle_typography',
|
498 |
-
'scheme' =>
|
499 |
'selector' => '{{WRAPPER}} .col-subtitle',
|
500 |
'condition' => array(
|
501 |
'subtitle!' => ''
|
@@ -533,7 +533,7 @@ class Testimonial extends Widget_Base {
|
|
533 |
Group_Control_Typography::get_type(),
|
534 |
array(
|
535 |
'name' => 'subtitle_hover_typography',
|
536 |
-
'scheme' =>
|
537 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-subtitle',
|
538 |
'condition' => array(
|
539 |
'subtitle!' => ''
|
@@ -613,7 +613,7 @@ class Testimonial extends Widget_Base {
|
|
613 |
Group_Control_Typography::get_type(),
|
614 |
array(
|
615 |
'name' => 'content_typography',
|
616 |
-
'scheme' =>
|
617 |
'selector' => '{{WRAPPER}} .aux-testimonial-content',
|
618 |
'condition' => array(
|
619 |
'content!' => ''
|
@@ -651,7 +651,7 @@ class Testimonial extends Widget_Base {
|
|
651 |
Group_Control_Typography::get_type(),
|
652 |
array(
|
653 |
'name' => 'content_typography_hover',
|
654 |
-
'scheme' =>
|
655 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .aux-testimonial-content',
|
656 |
'condition' => array(
|
657 |
'content!' => ''
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Utils;
|
11 |
use Elementor\Group_Control_Border;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
381 |
Group_Control_Typography::get_type(),
|
382 |
array(
|
383 |
'name' => 'title_typography',
|
384 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
385 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a',
|
386 |
'condition' => array(
|
387 |
'title!' => ''
|
420 |
Group_Control_Typography::get_type(),
|
421 |
array(
|
422 |
'name' => 'title_hover_typography',
|
423 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
424 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-title, {{WRAPPER}} .aux-widget-testimonial:hover .col-title a',
|
425 |
'condition' => array(
|
426 |
'title!' => ''
|
495 |
Group_Control_Typography::get_type(),
|
496 |
array(
|
497 |
'name' => 'subtitle_typography',
|
498 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
499 |
'selector' => '{{WRAPPER}} .col-subtitle',
|
500 |
'condition' => array(
|
501 |
'subtitle!' => ''
|
533 |
Group_Control_Typography::get_type(),
|
534 |
array(
|
535 |
'name' => 'subtitle_hover_typography',
|
536 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
537 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .col-subtitle',
|
538 |
'condition' => array(
|
539 |
'subtitle!' => ''
|
613 |
Group_Control_Typography::get_type(),
|
614 |
array(
|
615 |
'name' => 'content_typography',
|
616 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
617 |
'selector' => '{{WRAPPER}} .aux-testimonial-content',
|
618 |
'condition' => array(
|
619 |
'content!' => ''
|
651 |
Group_Control_Typography::get_type(),
|
652 |
array(
|
653 |
'name' => 'content_typography_hover',
|
654 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
655 |
'selector' => '{{WRAPPER}} .aux-widget-testimonial:hover .aux-testimonial-content',
|
656 |
'condition' => array(
|
657 |
'content!' => ''
|
includes/elementor/widgets/text.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -740,7 +740,7 @@ class Text extends Widget_Base {
|
|
740 |
Group_Control_Typography::get_type(),
|
741 |
array(
|
742 |
'name' => 'title_typography',
|
743 |
-
'scheme' =>
|
744 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a'
|
745 |
)
|
746 |
);
|
@@ -836,7 +836,7 @@ class Text extends Widget_Base {
|
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'subtitle_typography',
|
839 |
-
'scheme' =>
|
840 |
'selector' => '{{WRAPPER}} .col-subtitle'
|
841 |
)
|
842 |
);
|
@@ -947,7 +947,7 @@ class Text extends Widget_Base {
|
|
947 |
Group_Control_Typography::get_type(),
|
948 |
array(
|
949 |
'name' => 'content_typography',
|
950 |
-
'scheme' =>
|
951 |
'selector' => '{{WRAPPER}} .widget-content'
|
952 |
)
|
953 |
);
|
@@ -1275,7 +1275,7 @@ class Text extends Widget_Base {
|
|
1275 |
Group_Control_Typography::get_type(),
|
1276 |
array(
|
1277 |
'name' => 'button_typography',
|
1278 |
-
'scheme' =>
|
1279 |
'selector' => '{{WRAPPER}} .aux-text'
|
1280 |
)
|
1281 |
);
|
@@ -1313,7 +1313,7 @@ class Text extends Widget_Base {
|
|
1313 |
Group_Control_Typography::get_type(),
|
1314 |
array(
|
1315 |
'name' => 'hover_button_typography',
|
1316 |
-
'scheme' =>
|
1317 |
'selector' => '{{WRAPPER}} .aux-text'
|
1318 |
)
|
1319 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
740 |
Group_Control_Typography::get_type(),
|
741 |
array(
|
742 |
'name' => 'title_typography',
|
743 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
744 |
'selector' => '{{WRAPPER}} .col-title, {{WRAPPER}} .col-title a'
|
745 |
)
|
746 |
);
|
836 |
Group_Control_Typography::get_type(),
|
837 |
array(
|
838 |
'name' => 'subtitle_typography',
|
839 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
840 |
'selector' => '{{WRAPPER}} .col-subtitle'
|
841 |
)
|
842 |
);
|
947 |
Group_Control_Typography::get_type(),
|
948 |
array(
|
949 |
'name' => 'content_typography',
|
950 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
951 |
'selector' => '{{WRAPPER}} .widget-content'
|
952 |
)
|
953 |
);
|
1275 |
Group_Control_Typography::get_type(),
|
1276 |
array(
|
1277 |
'name' => 'button_typography',
|
1278 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1279 |
'selector' => '{{WRAPPER}} .aux-text'
|
1280 |
)
|
1281 |
);
|
1313 |
Group_Control_Typography::get_type(),
|
1314 |
array(
|
1315 |
'name' => 'hover_button_typography',
|
1316 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1317 |
'selector' => '{{WRAPPER}} .aux-text'
|
1318 |
)
|
1319 |
);
|
includes/elementor/widgets/theme-elements/breadcrumbs.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Widget_Base;
|
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -338,7 +338,7 @@ class Breadcrumbs extends Widget_Base {
|
|
338 |
Group_Control_Typography::get_type(),
|
339 |
[
|
340 |
'name' => 'typography',
|
341 |
-
'scheme' =>
|
342 |
'selector' => '{{WRAPPER}} span'
|
343 |
]
|
344 |
);
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
use Elementor\Scheme_Color;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
338 |
Group_Control_Typography::get_type(),
|
339 |
[
|
340 |
'name' => 'typography',
|
341 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
342 |
'selector' => '{{WRAPPER}} span'
|
343 |
]
|
344 |
);
|
includes/elementor/widgets/theme-elements/copyright.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -191,7 +191,7 @@ class Copyright extends Widget_Base {
|
|
191 |
Group_Control_Typography::get_type(),
|
192 |
array(
|
193 |
'name' => 'copyright_typo',
|
194 |
-
'scheme' =>
|
195 |
'selector' => '{{WRAPPER}} small',
|
196 |
)
|
197 |
);
|
@@ -228,7 +228,7 @@ class Copyright extends Widget_Base {
|
|
228 |
Group_Control_Typography::get_type(),
|
229 |
array(
|
230 |
'name' => 'copyright_typo_hover',
|
231 |
-
'scheme' =>
|
232 |
'selector' => '{{WRAPPER}} small:hover',
|
233 |
)
|
234 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
191 |
Group_Control_Typography::get_type(),
|
192 |
array(
|
193 |
'name' => 'copyright_typo',
|
194 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
195 |
'selector' => '{{WRAPPER}} small',
|
196 |
)
|
197 |
);
|
228 |
Group_Control_Typography::get_type(),
|
229 |
array(
|
230 |
'name' => 'copyright_typo_hover',
|
231 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
232 |
'selector' => '{{WRAPPER}} small:hover',
|
233 |
)
|
234 |
);
|
includes/elementor/widgets/theme-elements/current-time.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -190,7 +190,7 @@ class Current_Time extends Widget_Base {
|
|
190 |
Group_Control_Typography::get_type(),
|
191 |
array(
|
192 |
'name' => 'text_typography',
|
193 |
-
'scheme' =>
|
194 |
'selector' => '{{WRAPPER}} .aux-current-time'
|
195 |
)
|
196 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
190 |
Group_Control_Typography::get_type(),
|
191 |
array(
|
192 |
'name' => 'text_typography',
|
193 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
194 |
'selector' => '{{WRAPPER}} .aux-current-time'
|
195 |
)
|
196 |
);
|
includes/elementor/widgets/theme-elements/logo.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
@@ -482,7 +482,7 @@ class Logo extends Widget_Base {
|
|
482 |
Group_Control_Typography::get_type(),
|
483 |
array(
|
484 |
'name' => 'title_typography',
|
485 |
-
'scheme' =>
|
486 |
'selector' => '{{WRAPPER}} .site-title a'
|
487 |
)
|
488 |
);
|
@@ -574,7 +574,7 @@ class Logo extends Widget_Base {
|
|
574 |
Group_Control_Typography::get_type(),
|
575 |
array(
|
576 |
'name' => 'desc_typography',
|
577 |
-
'scheme' =>
|
578 |
'selector' => '{{WRAPPER}} .site-description'
|
579 |
)
|
580 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
12 |
use Elementor\Group_Control_Text_Shadow;
|
482 |
Group_Control_Typography::get_type(),
|
483 |
array(
|
484 |
'name' => 'title_typography',
|
485 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
486 |
'selector' => '{{WRAPPER}} .site-title a'
|
487 |
)
|
488 |
);
|
574 |
Group_Control_Typography::get_type(),
|
575 |
array(
|
576 |
'name' => 'desc_typography',
|
577 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
578 |
'selector' => '{{WRAPPER}} .site-description'
|
579 |
)
|
580 |
);
|
includes/elementor/widgets/theme-elements/menu.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -375,7 +375,7 @@ class MenuBox extends Widget_Base {
|
|
375 |
Group_Control_Typography::get_type(),
|
376 |
array(
|
377 |
'name' => 'menu_item_typo',
|
378 |
-
'scheme' =>
|
379 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0 > .aux-item-content'
|
380 |
)
|
381 |
);
|
@@ -452,7 +452,7 @@ class MenuBox extends Widget_Base {
|
|
452 |
Group_Control_Typography::get_type(),
|
453 |
array(
|
454 |
'name' => 'menu_item_typo_hover',
|
455 |
-
'scheme' =>
|
456 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.aux-hover > .aux-item-content',
|
457 |
)
|
458 |
);
|
@@ -565,7 +565,7 @@ class MenuBox extends Widget_Base {
|
|
565 |
Group_Control_Typography::get_type(),
|
566 |
array(
|
567 |
'name' => 'menu_item_current_typography',
|
568 |
-
'scheme' =>
|
569 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.current-menu-item > a'
|
570 |
)
|
571 |
);
|
@@ -813,7 +813,7 @@ class MenuBox extends Widget_Base {
|
|
813 |
Group_Control_Typography::get_type(),
|
814 |
array(
|
815 |
'name' => 'menu_sub_item_typo',
|
816 |
-
'scheme' =>
|
817 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item',
|
818 |
)
|
819 |
);
|
@@ -892,7 +892,7 @@ class MenuBox extends Widget_Base {
|
|
892 |
Group_Control_Typography::get_type(),
|
893 |
array(
|
894 |
'name' => 'menu_sub_item_typo_hover',
|
895 |
-
'scheme' =>
|
896 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item.aux-hover',
|
897 |
)
|
898 |
);
|
@@ -1173,7 +1173,7 @@ class MenuBox extends Widget_Base {
|
|
1173 |
Group_Control_Typography::get_type(),
|
1174 |
array(
|
1175 |
'name' => 'fullscr_menu_item_typo',
|
1176 |
-
'scheme' =>
|
1177 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item > .aux-item-content',
|
1178 |
)
|
1179 |
);
|
@@ -1251,7 +1251,7 @@ class MenuBox extends Widget_Base {
|
|
1251 |
Group_Control_Typography::get_type(),
|
1252 |
array(
|
1253 |
'name' => 'fullscr_menu_item_typo_hover',
|
1254 |
-
'scheme' =>
|
1255 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item.aux-hover > .aux-item-content',
|
1256 |
)
|
1257 |
);
|
@@ -1379,7 +1379,7 @@ class MenuBox extends Widget_Base {
|
|
1379 |
Group_Control_Typography::get_type(),
|
1380 |
array(
|
1381 |
'name' => 'fullscr_current_item_typography',
|
1382 |
-
'scheme' =>
|
1383 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a'
|
1384 |
)
|
1385 |
);
|
@@ -1480,7 +1480,7 @@ class MenuBox extends Widget_Base {
|
|
1480 |
array(
|
1481 |
'name' => 'fullscr_window_title_typo',
|
1482 |
'label' => __( 'Menu Title Typography', 'auxin-elements' ),
|
1483 |
-
'scheme' =>
|
1484 |
'selector' => '{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before',
|
1485 |
'condition' => array(
|
1486 |
'fullscr_window_has_title' => 'yes'
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
use Elementor\Group_Control_Background;
|
11 |
use Elementor\Group_Control_Box_Shadow;
|
375 |
Group_Control_Typography::get_type(),
|
376 |
array(
|
377 |
'name' => 'menu_item_typo',
|
378 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
379 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0 > .aux-item-content'
|
380 |
)
|
381 |
);
|
452 |
Group_Control_Typography::get_type(),
|
453 |
array(
|
454 |
'name' => 'menu_item_typo_hover',
|
455 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
456 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.aux-hover > .aux-item-content',
|
457 |
)
|
458 |
);
|
565 |
Group_Control_Typography::get_type(),
|
566 |
array(
|
567 |
'name' => 'menu_item_current_typography',
|
568 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
569 |
'selector' => '{{WRAPPER}} .aux-menu-depth-0.current-menu-item > a'
|
570 |
)
|
571 |
);
|
813 |
Group_Control_Typography::get_type(),
|
814 |
array(
|
815 |
'name' => 'menu_sub_item_typo',
|
816 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
817 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item',
|
818 |
)
|
819 |
);
|
892 |
Group_Control_Typography::get_type(),
|
893 |
array(
|
894 |
'name' => 'menu_sub_item_typo_hover',
|
895 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
896 |
'selector' => '{{WRAPPER}} .aux-submenu .aux-menu-item.aux-hover',
|
897 |
)
|
898 |
);
|
1173 |
Group_Control_Typography::get_type(),
|
1174 |
array(
|
1175 |
'name' => 'fullscr_menu_item_typo',
|
1176 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1177 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item > .aux-item-content',
|
1178 |
)
|
1179 |
);
|
1251 |
Group_Control_Typography::get_type(),
|
1252 |
array(
|
1253 |
'name' => 'fullscr_menu_item_typo_hover',
|
1254 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1255 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-item.aux-hover > .aux-item-content',
|
1256 |
)
|
1257 |
);
|
1379 |
Group_Control_Typography::get_type(),
|
1380 |
array(
|
1381 |
'name' => 'fullscr_current_item_typography',
|
1382 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1383 |
'selector' => '{{WRAPPER}} .aux-fs-menu .aux-menu-depth-0.current-menu-item > a'
|
1384 |
)
|
1385 |
);
|
1480 |
array(
|
1481 |
'name' => 'fullscr_window_title_typo',
|
1482 |
'label' => __( 'Menu Title Typography', 'auxin-elements' ),
|
1483 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
1484 |
'selector' => '{{WRAPPER}} .aux-has-menu-title .aux-fs-menu:before',
|
1485 |
'condition' => array(
|
1486 |
'fullscr_window_has_title' => 'yes'
|
includes/elementor/widgets/theme-elements/modern-search.php
CHANGED
@@ -4,7 +4,7 @@ namespace Auxin\Plugin\CoreElements\Elementor\Elements\Theme_Elements;
|
|
4 |
use Elementor\Widget_Base;
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
-
use Elementor\
|
8 |
use Elementor\Group_Control_Text_Shadow;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -369,7 +369,7 @@ class ModernSearch extends Widget_Base {
|
|
369 |
Group_Control_Typography::get_type(),
|
370 |
[
|
371 |
'name' => 'text_typo_normal',
|
372 |
-
'scheme' =>
|
373 |
'selector' => '{{WRAPPER}} .aux-search-submit'
|
374 |
]
|
375 |
);
|
@@ -406,7 +406,7 @@ class ModernSearch extends Widget_Base {
|
|
406 |
Group_Control_Typography::get_type(),
|
407 |
[
|
408 |
'name' => 'text_typo_hover',
|
409 |
-
'scheme' =>
|
410 |
'selector' => '{{WRAPPER}} .aux-search-submit:hover'
|
411 |
]
|
412 |
);
|
@@ -628,7 +628,7 @@ class ModernSearch extends Widget_Base {
|
|
628 |
Group_Control_Typography::get_type(),
|
629 |
[
|
630 |
'name' => 'input_typo',
|
631 |
-
'scheme' =>
|
632 |
'selector' => '{{WRAPPER}} .aux-search-popup .aux-search-field',
|
633 |
'separator' => 'before'
|
634 |
]
|
@@ -858,7 +858,7 @@ class ModernSearch extends Widget_Base {
|
|
858 |
Group_Control_Typography::get_type(),
|
859 |
[
|
860 |
'name' => 'title_typo',
|
861 |
-
'scheme' =>
|
862 |
'selector' => '{{WRAPPER}} .aux-search-form-legend'
|
863 |
]
|
864 |
);
|
4 |
use Elementor\Widget_Base;
|
5 |
use Elementor\Controls_Manager;
|
6 |
use Elementor\Group_Control_Typography;
|
7 |
+
use Elementor\Core\Schemes\Typography;
|
8 |
use Elementor\Group_Control_Text_Shadow;
|
9 |
use Elementor\Group_Control_Background;
|
10 |
use Elementor\Group_Control_Box_Shadow;
|
369 |
Group_Control_Typography::get_type(),
|
370 |
[
|
371 |
'name' => 'text_typo_normal',
|
372 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
373 |
'selector' => '{{WRAPPER}} .aux-search-submit'
|
374 |
]
|
375 |
);
|
406 |
Group_Control_Typography::get_type(),
|
407 |
[
|
408 |
'name' => 'text_typo_hover',
|
409 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
410 |
'selector' => '{{WRAPPER}} .aux-search-submit:hover'
|
411 |
]
|
412 |
);
|
628 |
Group_Control_Typography::get_type(),
|
629 |
[
|
630 |
'name' => 'input_typo',
|
631 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
632 |
'selector' => '{{WRAPPER}} .aux-search-popup .aux-search-field',
|
633 |
'separator' => 'before'
|
634 |
]
|
858 |
Group_Control_Typography::get_type(),
|
859 |
[
|
860 |
'name' => 'title_typo',
|
861 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
862 |
'selector' => '{{WRAPPER}} .aux-search-form-legend'
|
863 |
]
|
864 |
);
|
includes/elementor/widgets/theme-elements/search.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
@@ -277,7 +277,7 @@ class SearchBox extends Widget_Base {
|
|
277 |
Group_Control_Typography::get_type(),
|
278 |
array(
|
279 |
'name' => 'form_typgraphy',
|
280 |
-
'scheme' =>
|
281 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-field'
|
282 |
)
|
283 |
);
|
@@ -438,7 +438,7 @@ class SearchBox extends Widget_Base {
|
|
438 |
Group_Control_Typography::get_type(),
|
439 |
array(
|
440 |
'name' => 'button_typgraphy',
|
441 |
-
'scheme' =>
|
442 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-submit'
|
443 |
)
|
444 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Border;
|
10 |
|
11 |
|
277 |
Group_Control_Typography::get_type(),
|
278 |
array(
|
279 |
'name' => 'form_typgraphy',
|
280 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
281 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-field'
|
282 |
)
|
283 |
);
|
438 |
Group_Control_Typography::get_type(),
|
439 |
array(
|
440 |
'name' => 'button_typgraphy',
|
441 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
442 |
'selector' => '{{WRAPPER}} .aux-search-form .aux-search-submit'
|
443 |
)
|
444 |
);
|
includes/elementor/widgets/theme-elements/shopping-cart.php
CHANGED
@@ -6,7 +6,7 @@ use Elementor\Widget_Base;
|
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
-
use Elementor\
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Background;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
@@ -258,7 +258,7 @@ class Shopping_Cart extends Widget_Base {
|
|
258 |
Group_Control_Typography::get_type(),
|
259 |
array(
|
260 |
'name' => 'bubble_typography',
|
261 |
-
'scheme' =>
|
262 |
'selector' => '{{WRAPPER}} .aux-cart-contents > span'
|
263 |
)
|
264 |
);
|
@@ -528,7 +528,7 @@ class Shopping_Cart extends Widget_Base {
|
|
528 |
array(
|
529 |
'label' => __('Title Typography', 'auxin-elements' ),
|
530 |
'name' => 'title_typography',
|
531 |
-
'scheme' =>
|
532 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item h3'
|
533 |
)
|
534 |
);
|
@@ -550,7 +550,7 @@ class Shopping_Cart extends Widget_Base {
|
|
550 |
array(
|
551 |
'label' => __('Price Typography', 'auxin-elements' ),
|
552 |
'name' => 'price_typography',
|
553 |
-
'scheme' =>
|
554 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item span'
|
555 |
)
|
556 |
);
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Image_Size;
|
8 |
use Elementor\Group_Control_Typography;
|
9 |
+
use Elementor\Core\Schemes\Typography;
|
10 |
use Elementor\Group_Control_Border;
|
11 |
use Elementor\Group_Control_Background;
|
12 |
use Elementor\Group_Control_Box_Shadow;
|
258 |
Group_Control_Typography::get_type(),
|
259 |
array(
|
260 |
'name' => 'bubble_typography',
|
261 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
262 |
'selector' => '{{WRAPPER}} .aux-cart-contents > span'
|
263 |
)
|
264 |
);
|
528 |
array(
|
529 |
'label' => __('Title Typography', 'auxin-elements' ),
|
530 |
'name' => 'title_typography',
|
531 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
532 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item h3'
|
533 |
)
|
534 |
);
|
550 |
array(
|
551 |
'label' => __('Price Typography', 'auxin-elements' ),
|
552 |
'name' => 'price_typography',
|
553 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
554 |
'selector' => '{{WRAPPER}} .aux-cart-wrapper .aux-card-item span'
|
555 |
)
|
556 |
);
|
includes/elementor/widgets/theme-elements/site-title.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
@@ -323,7 +323,7 @@ class SiteTitle extends Widget_Base {
|
|
323 |
Group_Control_Typography::get_type(),
|
324 |
array(
|
325 |
'name' => 'title_typography',
|
326 |
-
'scheme' =>
|
327 |
'selector' => '{{WRAPPER}} .aux-site-title-heading'
|
328 |
)
|
329 |
);
|
@@ -389,7 +389,7 @@ class SiteTitle extends Widget_Base {
|
|
389 |
Group_Control_Typography::get_type(),
|
390 |
array(
|
391 |
'name' => 'before_title_typography',
|
392 |
-
'scheme' =>
|
393 |
'selector' => '{{WRAPPER}} .aux-site-title-before-heading'
|
394 |
)
|
395 |
);
|
@@ -455,7 +455,7 @@ class SiteTitle extends Widget_Base {
|
|
455 |
Group_Control_Typography::get_type(),
|
456 |
array(
|
457 |
'name' => 'after_title_typography',
|
458 |
-
'scheme' =>
|
459 |
'selector' => '{{WRAPPER}} .aux-site-title-after-heading'
|
460 |
)
|
461 |
);
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
use Elementor\Group_Control_Text_Shadow;
|
10 |
|
11 |
|
323 |
Group_Control_Typography::get_type(),
|
324 |
array(
|
325 |
'name' => 'title_typography',
|
326 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
327 |
'selector' => '{{WRAPPER}} .aux-site-title-heading'
|
328 |
)
|
329 |
);
|
389 |
Group_Control_Typography::get_type(),
|
390 |
array(
|
391 |
'name' => 'before_title_typography',
|
392 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
393 |
'selector' => '{{WRAPPER}} .aux-site-title-before-heading'
|
394 |
)
|
395 |
);
|
455 |
Group_Control_Typography::get_type(),
|
456 |
array(
|
457 |
'name' => 'after_title_typography',
|
458 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
459 |
'selector' => '{{WRAPPER}} .aux-site-title-after-heading'
|
460 |
)
|
461 |
);
|
includes/elementor/widgets/touch-slider.php
CHANGED
@@ -5,7 +5,7 @@ use Elementor\Plugin;
|
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
-
use Elementor\
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
@@ -355,7 +355,7 @@ class TouchSlider extends Widget_Base {
|
|
355 |
Group_Control_Typography::get_type(),
|
356 |
array(
|
357 |
'name' => 'title_typography',
|
358 |
-
'scheme' =>
|
359 |
'selector' => '{{WRAPPER}} .aux-slide-title h3',
|
360 |
'condition' => array(
|
361 |
'add_title' => 'yes',
|
@@ -413,7 +413,7 @@ class TouchSlider extends Widget_Base {
|
|
413 |
Group_Control_Typography::get_type(),
|
414 |
array(
|
415 |
'name' => 'caption_typography',
|
416 |
-
'scheme' =>
|
417 |
'selector' => '{{WRAPPER}} .aux-slide-info',
|
418 |
'condition' => array(
|
419 |
'add_caption' => 'yes',
|
5 |
use Elementor\Widget_Base;
|
6 |
use Elementor\Controls_Manager;
|
7 |
use Elementor\Group_Control_Typography;
|
8 |
+
use Elementor\Core\Schemes\Typography;
|
9 |
|
10 |
|
11 |
if ( ! defined( 'ABSPATH' ) ) {
|
355 |
Group_Control_Typography::get_type(),
|
356 |
array(
|
357 |
'name' => 'title_typography',
|
358 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
359 |
'selector' => '{{WRAPPER}} .aux-slide-title h3',
|
360 |
'condition' => array(
|
361 |
'add_title' => 'yes',
|
413 |
Group_Control_Typography::get_type(),
|
414 |
array(
|
415 |
'name' => 'caption_typography',
|
416 |
+
'scheme' => Typography::TYPOGRAPHY_1,
|
417 |
'selector' => '{{WRAPPER}} .aux-slide-info',
|
418 |
'condition' => array(
|
419 |
'add_caption' => 'yes',
|
includes/general-hooks.php
CHANGED
@@ -21,9 +21,14 @@
|
|
21 |
function auxels_body_class( $classes ) {
|
22 |
$classes[] = '_auxels';
|
23 |
|
|
|
|
|
|
|
|
|
|
|
24 |
return $classes;
|
25 |
}
|
26 |
-
add_filter( 'body_class', 'auxels_body_class' );
|
27 |
|
28 |
|
29 |
/**
|
21 |
function auxels_body_class( $classes ) {
|
22 |
$classes[] = '_auxels';
|
23 |
|
24 |
+
if ( auxin_get_option('page_animation_nav_enable') && class_exists( '\Elementor\Plugin' ) && \Elementor\Plugin::$instance->preview->is_preview_mode() ) {
|
25 |
+
unset( $classes[ array_search( 'aux-page-animation', $classes ) ] );
|
26 |
+
unset( $classes[ array_search( 'aux-page-animation-' . esc_attr( auxin_get_option('page_animation_nav_type', 'fade') ), $classes ) ] );
|
27 |
+
}
|
28 |
+
|
29 |
return $classes;
|
30 |
}
|
31 |
+
add_filter( 'body_class', 'auxels_body_class', 13 );
|
32 |
|
33 |
|
34 |
/**
|
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-04-
|
6 |
"PO-Revision-Date: 2016-11-09 12:50+0330\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: \n"
|
@@ -213,12 +213,12 @@ msgid ""
|
|
213 |
"Please make sure the image aspect ratio for all image sizes are the same."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: admin/includes/admin-hooks.php:686 includes/general-hooks.php:
|
217 |
#, fuzzy
|
218 |
msgid "Footer Brand Image"
|
219 |
msgstr "تصویر پوستر"
|
220 |
|
221 |
-
#: admin/includes/admin-hooks.php:687 includes/general-hooks.php:
|
222 |
msgid "This image appears as site brand image on footer section."
|
223 |
msgstr ""
|
224 |
|
@@ -424,7 +424,7 @@ msgstr ""
|
|
424 |
|
425 |
#: admin/includes/compatibility/siteorigin/fields/iconpicker.class.php:13
|
426 |
#: includes/classes/class-auxin-widget.php:126
|
427 |
-
#: includes/classes/class-auxin-widget.php:151 includes/general-hooks.php:
|
428 |
msgid "Choose .."
|
429 |
msgstr "انتخاب .."
|
430 |
|
@@ -840,7 +840,7 @@ msgstr ""
|
|
840 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:71
|
841 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:27
|
842 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:27
|
843 |
-
#: includes/general-hooks.php:
|
844 |
msgid "Disable it to replace header section with an Elementor template"
|
845 |
msgstr ""
|
846 |
|
@@ -969,7 +969,7 @@ msgstr ""
|
|
969 |
#: admin/includes/metaboxes/metabox-fields-general-header-template.php:70
|
970 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:26
|
971 |
#: admin/includes/metaboxes/metabox-fields-general-top-header.php:26
|
972 |
-
#: includes/general-hooks.php:
|
973 |
msgid "Use Legacy Header"
|
974 |
msgstr ""
|
975 |
|
@@ -1094,7 +1094,7 @@ msgstr ""
|
|
1094 |
|
1095 |
#: admin/includes/metaboxes/metabox-fields-general-header.php:202
|
1096 |
#: includes/elements/staff.php:207 includes/elements/text.php:105
|
1097 |
-
#: includes/general-hooks.php:
|
1098 |
msgid "Boxed"
|
1099 |
msgstr "جعبه ای"
|
1100 |
|
@@ -1314,7 +1314,7 @@ msgstr ""
|
|
1314 |
#: includes/elements/recent-posts-grid-carousel.php:663
|
1315 |
#: includes/elements/recent-posts-timeline.php:272
|
1316 |
#: includes/elements/staff.php:280 includes/elements/text.php:129
|
1317 |
-
#: includes/elements/text.php:157 includes/general-hooks.php:
|
1318 |
msgid "Center"
|
1319 |
msgstr "وسط"
|
1320 |
|
@@ -1360,8 +1360,8 @@ msgstr "وسط"
|
|
1360 |
#: includes/elements/staff.php:238 includes/elements/staff.php:276
|
1361 |
#: includes/elements/text.php:125 includes/elements/text.php:153
|
1362 |
#: includes/elements/text.php:620 includes/elements/text.php:807
|
1363 |
-
#: includes/general-hooks.php:
|
1364 |
-
#: includes/general-hooks.php:
|
1365 |
msgid "Left"
|
1366 |
msgstr "چپ"
|
1367 |
|
@@ -1412,7 +1412,7 @@ msgstr "تراز المان خط زمانی را مشخص می کند."
|
|
1412 |
#: includes/elements/divider.php:90 includes/elements/socials-list.php:63
|
1413 |
#: includes/elements/socials-list.php:201 includes/elements/staff.php:463
|
1414 |
#: includes/elements/text.php:469 includes/elements/text.php:677
|
1415 |
-
#: includes/general-hooks.php:
|
1416 |
msgid "Small"
|
1417 |
msgstr "کوچک"
|
1418 |
|
@@ -1428,8 +1428,8 @@ msgstr "کوچک"
|
|
1428 |
#: includes/elements/socials-list.php:64 includes/elements/socials-list.php:202
|
1429 |
#: includes/elements/staff.php:111 includes/elements/staff.php:464
|
1430 |
#: includes/elements/text.php:430 includes/elements/text.php:470
|
1431 |
-
#: includes/elements/text.php:676 includes/general-hooks.php:
|
1432 |
-
#: includes/general-hooks.php:
|
1433 |
msgid "Medium"
|
1434 |
msgstr "متوسط"
|
1435 |
|
@@ -1444,7 +1444,7 @@ msgstr "متوسط"
|
|
1444 |
#: includes/elements/socials-list.php:203 includes/elements/staff.php:110
|
1445 |
#: includes/elements/staff.php:465 includes/elements/text.php:429
|
1446 |
#: includes/elements/text.php:471 includes/elements/text.php:675
|
1447 |
-
#: includes/general-hooks.php:
|
1448 |
msgid "Large"
|
1449 |
msgstr "بزرگ"
|
1450 |
|
@@ -1516,8 +1516,8 @@ msgstr ""
|
|
1516 |
#: includes/elements/gallery.php:120 includes/elements/quote.php:109
|
1517 |
#: includes/elements/recent-posts-tiles-carousel.php:298
|
1518 |
#: includes/elements/recent-posts-tiles.php:328 includes/elements/text.php:180
|
1519 |
-
#: includes/elements/text.php:806 includes/general-hooks.php:
|
1520 |
-
#: includes/general-hooks.php:
|
1521 |
msgid "Default"
|
1522 |
msgstr "پیش فرض"
|
1523 |
|
@@ -1901,16 +1901,12 @@ msgid ""
|
|
1901 |
"Animoto, Wistia link or iFrame code."
|
1902 |
msgstr ""
|
1903 |
|
1904 |
-
#: auxin-elements.php:
|
1905 |
-
msgid "Page Builder by SiteOrigin"
|
1906 |
-
msgstr ""
|
1907 |
-
|
1908 |
-
#: auxin-elements.php:64 includes/classes/class-auxin-welcome-sections.php:531
|
1909 |
#, fuzzy
|
1910 |
msgid "Phlox Pro"
|
1911 |
msgstr "[فلوکس] کد"
|
1912 |
|
1913 |
-
#: auxin-elements.php:
|
1914 |
msgid "Phlox"
|
1915 |
msgstr ""
|
1916 |
|
@@ -2967,7 +2963,7 @@ msgstr "تنظیمات طراحی"
|
|
2967 |
#: includes/elements/recent-posts-masonry.php:16
|
2968 |
#: includes/elements/recent-posts-tiles.php:16
|
2969 |
#: includes/elements/recent-posts-timeline.php:16
|
2970 |
-
#: includes/elements/recent-posts-widget.php:16 includes/general-hooks.php:
|
2971 |
msgid "All Categories"
|
2972 |
msgstr "همه دسته ها"
|
2973 |
|
@@ -2986,25 +2982,25 @@ msgid "Select Image"
|
|
2986 |
msgstr "انتخاب اظهار نظر"
|
2987 |
|
2988 |
#: includes/classes/class-auxin-widget.php:387
|
2989 |
-
#: includes/classes/class-auxin-widget.php:388 includes/general-hooks.php:
|
2990 |
-
#: includes/general-hooks.php:
|
2991 |
#, fuzzy
|
2992 |
msgid "Add Video"
|
2993 |
msgstr "افزودن بخش"
|
2994 |
|
2995 |
-
#: includes/classes/class-auxin-widget.php:389 includes/general-hooks.php:
|
2996 |
#, fuzzy
|
2997 |
msgid "Select Video"
|
2998 |
msgstr "تکرار ویدیو"
|
2999 |
|
3000 |
#: includes/classes/class-auxin-widget.php:411
|
3001 |
-
#: includes/classes/class-auxin-widget.php:412 includes/general-hooks.php:
|
3002 |
-
#: includes/general-hooks.php:
|
3003 |
#, fuzzy
|
3004 |
msgid "Add Audio"
|
3005 |
msgstr "افزودن بخش"
|
3006 |
|
3007 |
-
#: includes/classes/class-auxin-widget.php:413 includes/general-hooks.php:
|
3008 |
#, fuzzy
|
3009 |
msgid "Select Audio"
|
3010 |
msgstr "انتخاب شکاف آکاردئون"
|
@@ -3266,8 +3262,8 @@ msgstr "بالا"
|
|
3266 |
#: includes/elements/staff.php:230 includes/elements/staff.php:284
|
3267 |
#: includes/elements/text.php:133 includes/elements/text.php:161
|
3268 |
#: includes/elements/text.php:624 includes/elements/text.php:808
|
3269 |
-
#: includes/general-hooks.php:
|
3270 |
-
#: includes/general-hooks.php:
|
3271 |
msgid "Right"
|
3272 |
msgstr "راست"
|
3273 |
|
@@ -3561,7 +3557,7 @@ msgstr "پیوند"
|
|
3561 |
#: includes/elements/recent-posts-tiles.php:154
|
3562 |
#: includes/elements/recent-posts-timeline.php:149
|
3563 |
#: includes/elements/testimonial.php:132 includes/elements/text.php:903
|
3564 |
-
#: includes/general-hooks.php:
|
3565 |
#: public/templates/vcomposer/auxin_vc_extendes.php:63
|
3566 |
msgid "None"
|
3567 |
msgstr "هیچکدام"
|
@@ -4409,7 +4405,7 @@ msgid "Logo"
|
|
4409 |
msgstr ""
|
4410 |
|
4411 |
#: includes/elementor/modules/settings/general/manager.php:47
|
4412 |
-
#: includes/general-hooks.php:
|
4413 |
#, fuzzy
|
4414 |
msgid "Footer Brand Height"
|
4415 |
msgstr "ارتفاع لوگو"
|
@@ -4435,7 +4431,7 @@ msgid "Select Post Type"
|
|
4435 |
msgstr "نوع گالری را انتخاب کنید."
|
4436 |
|
4437 |
#: includes/elementor/modules/theme-builder/module.php:131
|
4438 |
-
#: includes/general-hooks.php:
|
4439 |
#, fuzzy
|
4440 |
msgid "404 Page"
|
4441 |
msgstr "صفحه"
|
@@ -4703,7 +4699,7 @@ msgstr "کادربندی شده"
|
|
4703 |
#: includes/elementor/widgets/theme-elements/modern-search.php:353
|
4704 |
#: includes/elementor/widgets/theme-elements/modern-search.php:444
|
4705 |
#: includes/elements/button.php:118 includes/elements/text.php:738
|
4706 |
-
#: includes/general-hooks.php:
|
4707 |
msgid "Normal"
|
4708 |
msgstr "معمولی"
|
4709 |
|
@@ -5419,8 +5415,8 @@ msgstr "عرض"
|
|
5419 |
#: includes/elements/text.php:764 includes/elements/text.php:780
|
5420 |
#: includes/elements/text.php:796 includes/elements/text.php:821
|
5421 |
#: includes/elements/text.php:839 includes/elements/text.php:856
|
5422 |
-
#: includes/elements/text.php:877 includes/general-hooks.php:
|
5423 |
-
#: includes/general-hooks.php:
|
5424 |
#, fuzzy
|
5425 |
msgid "Button"
|
5426 |
msgstr "اندازه دکمه"
|
@@ -5459,8 +5455,8 @@ msgstr "اندازه دکمه"
|
|
5459 |
#: includes/elementor/widgets/button.php:160
|
5460 |
#: includes/elementor/widgets/modern-button.php:308
|
5461 |
#: includes/elementor/widgets/text.php:1033 includes/elements/button.php:63
|
5462 |
-
#: includes/elements/text.php:674 includes/general-hooks.php:
|
5463 |
-
#: includes/general-hooks.php:
|
5464 |
msgid "Exlarge"
|
5465 |
msgstr "خیلی بزرگ"
|
5466 |
|
@@ -5469,7 +5465,7 @@ msgstr "خیلی بزرگ"
|
|
5469 |
#: includes/elementor/widgets/modern-button.php:312
|
5470 |
#: includes/elementor/widgets/text.php:1037 includes/elements/button.php:67
|
5471 |
#: includes/elements/divider.php:91 includes/elements/text.php:678
|
5472 |
-
#: includes/general-hooks.php:
|
5473 |
msgid "Tiny"
|
5474 |
msgstr "خیلی کوچک"
|
5475 |
|
@@ -5492,16 +5488,16 @@ msgstr "جعبه"
|
|
5492 |
#: includes/elementor/widgets/button.php:192
|
5493 |
#: includes/elementor/widgets/modern-button.php:295
|
5494 |
#: includes/elementor/widgets/text.php:1362 includes/elements/button.php:95
|
5495 |
-
#: includes/elements/text.php:712 includes/general-hooks.php:
|
5496 |
-
#: includes/general-hooks.php:
|
5497 |
msgid "Round"
|
5498 |
msgstr "گرد"
|
5499 |
|
5500 |
#: includes/elementor/widgets/button.php:196
|
5501 |
#: includes/elementor/widgets/modern-button.php:296
|
5502 |
#: includes/elementor/widgets/text.php:1366 includes/elements/button.php:99
|
5503 |
-
#: includes/elements/text.php:716 includes/general-hooks.php:
|
5504 |
-
#: includes/general-hooks.php:
|
5505 |
msgid "Curve"
|
5506 |
msgstr "منحنی"
|
5507 |
|
@@ -5512,16 +5508,16 @@ msgstr "ظاهر دکمه"
|
|
5512 |
|
5513 |
#: includes/elementor/widgets/button.php:215
|
5514 |
#: includes/elementor/widgets/text.php:1386 includes/elements/button.php:122
|
5515 |
-
#: includes/elements/text.php:742 includes/general-hooks.php:
|
5516 |
-
#: includes/general-hooks.php:
|
5517 |
msgid "3D"
|
5518 |
msgstr "سه بعدی"
|
5519 |
|
5520 |
#: includes/elementor/widgets/button.php:219
|
5521 |
#: includes/elementor/widgets/modern-button.php:282
|
5522 |
#: includes/elementor/widgets/text.php:1390 includes/elements/button.php:126
|
5523 |
-
#: includes/elements/text.php:746 includes/general-hooks.php:
|
5524 |
-
#: includes/general-hooks.php:
|
5525 |
msgid "Outline"
|
5526 |
msgstr "خط بیرونی"
|
5527 |
|
@@ -5597,10 +5593,10 @@ msgstr "اندازه پس زمینه"
|
|
5597 |
#: includes/elementor/widgets/theme-elements/search.php:178
|
5598 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:108
|
5599 |
#: includes/elements/custom-list.php:74 includes/elements/text.php:374
|
5600 |
-
#: includes/elements/text.php:386 includes/general-hooks.php:
|
5601 |
-
#: includes/general-hooks.php:
|
5602 |
-
#: includes/general-hooks.php:
|
5603 |
-
#: includes/general-hooks.php:
|
5604 |
msgid "Icon"
|
5605 |
msgstr "شکلک"
|
5606 |
|
@@ -5612,22 +5608,22 @@ msgstr "شکلک برای دکمه"
|
|
5612 |
|
5613 |
#: includes/elementor/widgets/button.php:373
|
5614 |
#: includes/elementor/widgets/text.php:1135 includes/elements/button.php:171
|
5615 |
-
#: includes/elements/text.php:800 includes/general-hooks.php:
|
5616 |
msgid "Icon alignment"
|
5617 |
msgstr "تراز شکلک"
|
5618 |
|
5619 |
#: includes/elementor/widgets/button.php:380
|
5620 |
#: includes/elementor/widgets/modern-button.php:804
|
5621 |
#: includes/elementor/widgets/text.php:1142 includes/elements/button.php:191
|
5622 |
-
#: includes/elements/text.php:809 includes/general-hooks.php:
|
5623 |
-
#: includes/general-hooks.php:
|
5624 |
msgid "Over"
|
5625 |
msgstr "رو"
|
5626 |
|
5627 |
#: includes/elementor/widgets/button.php:381
|
5628 |
#: includes/elementor/widgets/text.php:1143 includes/elements/button.php:195
|
5629 |
-
#: includes/elements/text.php:810 includes/general-hooks.php:
|
5630 |
-
#: includes/general-hooks.php:
|
5631 |
msgid "Animate from Left"
|
5632 |
msgstr "متحرک سازی از چپ"
|
5633 |
|
@@ -6125,7 +6121,7 @@ msgstr ""
|
|
6125 |
#: includes/elementor/widgets/theme-elements/search.php:201
|
6126 |
#: includes/elementor/widgets/theme-elements/search.php:404
|
6127 |
#: includes/elementor/widgets/touch-slider.php:303
|
6128 |
-
#: includes/general-hooks.php:
|
6129 |
msgid "Background Color"
|
6130 |
msgstr "رنگ پس زمینه"
|
6131 |
|
@@ -6313,7 +6309,7 @@ msgstr "فاصله خالی"
|
|
6313 |
#: includes/elements/about-widget.php:121 includes/elements/divider.php:69
|
6314 |
#: includes/elements/dropcap.php:72 includes/elements/staff.php:168
|
6315 |
#: includes/elements/text.php:539 includes/elements/text.php:581
|
6316 |
-
#: includes/general-hooks.php:
|
6317 |
msgid "Circle"
|
6318 |
msgstr "دایره"
|
6319 |
|
@@ -6746,7 +6742,7 @@ msgstr "شکل"
|
|
6746 |
|
6747 |
#: includes/elementor/widgets/icon.php:141
|
6748 |
#: includes/elements/about-widget.php:122 includes/elements/dropcap.php:60
|
6749 |
-
#: includes/general-hooks.php:
|
6750 |
msgid "Square"
|
6751 |
msgstr "مربع"
|
6752 |
|
@@ -6881,7 +6877,7 @@ msgstr ""
|
|
6881 |
|
6882 |
#: includes/elementor/widgets/image.php:278
|
6883 |
#: includes/elementor/widgets/theme-elements/shopping-cart.php:101
|
6884 |
-
#: includes/general-hooks.php:
|
6885 |
msgid "Settings"
|
6886 |
msgstr ""
|
6887 |
|
@@ -8050,7 +8046,7 @@ msgstr ""
|
|
8050 |
#: includes/elements/recent-posts-tiles-carousel.php:199
|
8051 |
#: includes/elements/recent-posts-tiles.php:229
|
8052 |
#: includes/elements/recent-posts-timeline.php:224
|
8053 |
-
#: includes/general-hooks.php:
|
8054 |
msgid "Include posts"
|
8055 |
msgstr "شامل شدن این نوشته ها"
|
8056 |
|
@@ -8979,8 +8975,8 @@ msgstr "نوع دکمه"
|
|
8979 |
msgid "Shape Style"
|
8980 |
msgstr "ظاهر نقشه"
|
8981 |
|
8982 |
-
#: includes/elementor/widgets/text.php:1377 includes/general-hooks.php:
|
8983 |
-
#: includes/general-hooks.php:
|
8984 |
#, fuzzy
|
8985 |
msgid "Button Style"
|
8986 |
msgstr "ظاهر دکمه"
|
@@ -9757,7 +9753,7 @@ msgstr "یک المان درباره نویسنده اضافه می کند."
|
|
9757 |
msgid "The name which appears in about widget."
|
9758 |
msgstr "نامی که در ابزارک درباره ما نشان داده می شود."
|
9759 |
|
9760 |
-
#: includes/elements/about-widget.php:72 includes/general-hooks.php:
|
9761 |
msgid "Skills"
|
9762 |
msgstr "مهارت ها"
|
9763 |
|
@@ -9940,14 +9936,14 @@ msgstr "تیره تر کردن برچسب"
|
|
9940 |
msgid "Darken label of button."
|
9941 |
msgstr "برچسب دکمه"
|
9942 |
|
9943 |
-
#: includes/elements/button.php:199 includes/general-hooks.php:
|
9944 |
-
#: includes/general-hooks.php:
|
9945 |
#, fuzzy
|
9946 |
msgid "Animate from Righ"
|
9947 |
msgstr "متحرک سازی از راست"
|
9948 |
|
9949 |
-
#: includes/elements/button.php:227 includes/general-hooks.php:
|
9950 |
-
#: includes/general-hooks.php:
|
9951 |
#, fuzzy
|
9952 |
msgid "Button Link"
|
9953 |
msgstr "اندازه دکمه"
|
@@ -9957,12 +9953,12 @@ msgid "Open link in"
|
|
9957 |
msgstr "باز کردن پیوند در"
|
9958 |
|
9959 |
#: includes/elements/button.php:247 includes/elements/text.php:866
|
9960 |
-
#: includes/general-hooks.php:
|
9961 |
msgid "Current page"
|
9962 |
msgstr "صفحه جاری"
|
9963 |
|
9964 |
#: includes/elements/button.php:248 includes/elements/text.php:867
|
9965 |
-
#: includes/general-hooks.php:
|
9966 |
msgid "New page"
|
9967 |
msgstr "صفحه جدید"
|
9968 |
|
@@ -10213,7 +10209,7 @@ msgstr "حرف بزرگ سبک دهی شده در اول پاراگراف"
|
|
10213 |
msgid "Dropcap style"
|
10214 |
msgstr "ظاهر دراپ کپ"
|
10215 |
|
10216 |
-
#: includes/elements/dropcap.php:64 includes/general-hooks.php:
|
10217 |
msgid "Outline Square"
|
10218 |
msgstr "مربع با خط بیرونی"
|
10219 |
|
@@ -10221,7 +10217,7 @@ msgstr "مربع با خط بیرونی"
|
|
10221 |
msgid "Round Square"
|
10222 |
msgstr "مربع لبه گرد"
|
10223 |
|
10224 |
-
#: includes/elements/dropcap.php:76 includes/general-hooks.php:
|
10225 |
msgid "Outline Circle"
|
10226 |
msgstr "دایره با خط بیرونی"
|
10227 |
|
@@ -10820,7 +10816,7 @@ msgstr "تعداد تصاویر برای نمایش اولیه. حداکثر 33.
|
|
10820 |
msgid "Resolution/size of the photos. "
|
10821 |
msgstr "رزولوشن/اندازه تصاویر."
|
10822 |
|
10823 |
-
#: includes/elements/instagram-feed.php:96 includes/general-hooks.php:
|
10824 |
msgid "Auto"
|
10825 |
|