Version Description
- New feature added, ICOBOX - from now on, more power to the Icon Box widget
- WIDGET STALKER for BREAKING BAD, fix for the horizontal alignment issue of widgets
- BREAKING BAD, added new option to align the Inner Section horizontally
- IMBOX, added more controls to the "Image Box" widget; stretch the image full-height, apply clip-path, add the background, padding, margin
Download this release
Release Info
Developer | ooohboi |
Plugin | OoohBoi Steroids for Elementor |
Version | 1.6.5 |
Comparing to | |
See all releases |
Code changes from version 1.6.4 to 1.6.5
- assets/css/editor.css +4 -0
- controls/ooohboi-breaking-bad.php +31 -8
- controls/ooohboi-icobox.php +258 -0
- controls/ooohboi-imbox.php +175 -9
- controls/ooohboi-widget-stalker.php +4 -4
- inc/common-functions.php +6 -0
- lang/ooohboi-steroids.pot +236 -133
- ooohboi-steroids.php +10 -7
- readme.txt +14 -8
assets/css/editor.css
CHANGED
@@ -19,6 +19,8 @@
|
|
19 |
.elementor-control-_ob_spacerat:after,
|
20 |
.elementor-control-_ob_imbox_img:after,
|
21 |
.elementor-control-_ob_imbox_cont:after,
|
|
|
|
|
22 |
.elementor-control-_ob_hoveranimator_section_title:after,
|
23 |
.elementor-control-_ob_hoveranimator_panel:after,
|
24 |
.elementor-control-_ob_kontrolz:after,
|
@@ -75,6 +77,8 @@
|
|
75 |
.rtl .elementor-control-_ob_spacerat:after,
|
76 |
.rtl .elementor-control-_ob_imbox_img:after,
|
77 |
.rtl .elementor-control-_ob_imbox_cont:after,
|
|
|
|
|
78 |
.rtl .elementor-control-_ob_hoveranimator_section_title:after,
|
79 |
.rtl .elementor-control-_ob_hoveranimator_panel:after,
|
80 |
.rtl .elementor-control-_ob_kontrolz:after,
|
19 |
.elementor-control-_ob_spacerat:after,
|
20 |
.elementor-control-_ob_imbox_img:after,
|
21 |
.elementor-control-_ob_imbox_cont:after,
|
22 |
+
.elementor-control-_ob_icobox_img:after,
|
23 |
+
.elementor-control-_ob_icobox_cont:after,
|
24 |
.elementor-control-_ob_hoveranimator_section_title:after,
|
25 |
.elementor-control-_ob_hoveranimator_panel:after,
|
26 |
.elementor-control-_ob_kontrolz:after,
|
77 |
.rtl .elementor-control-_ob_spacerat:after,
|
78 |
.rtl .elementor-control-_ob_imbox_img:after,
|
79 |
.rtl .elementor-control-_ob_imbox_cont:after,
|
80 |
+
.rtl .elementor-control-_ob_icobox_img:after,
|
81 |
+
.rtl .elementor-control-_ob_icobox_cont:after,
|
82 |
.rtl .elementor-control-_ob_hoveranimator_section_title:after,
|
83 |
.rtl .elementor-control-_ob_hoveranimator_panel:after,
|
84 |
.rtl .elementor-control-_ob_kontrolz:after,
|
controls/ooohboi-breaking-bad.php
CHANGED
@@ -298,12 +298,12 @@ class OoohBoi_Breaking_Bad {
|
|
298 |
],
|
299 |
]
|
300 |
);
|
301 |
-
// ------------------------------------------------------------------------- CONTROL: align self
|
302 |
$element->add_responsive_control(
|
303 |
'_ob_bbad_inner_align_self',
|
304 |
[
|
305 |
-
'label' => __( 'Align self', 'ooohboi-steroids' ),
|
306 |
-
'description' => __( 'Align this Inner Section vertically', 'ooohboi-steroids' ),
|
307 |
'type' => Controls_Manager::SELECT,
|
308 |
'hide_in_top' => true,
|
309 |
'default' => 'auto',
|
@@ -321,6 +321,29 @@ class OoohBoi_Breaking_Bad {
|
|
321 |
],
|
322 |
]
|
323 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
// --------------------------------------------------------------------------------------------- inner order
|
325 |
$element->add_responsive_control(
|
326 |
'_ob_bbad_inner_widget_order',
|
@@ -437,7 +460,7 @@ href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/O
|
|
437 |
'type' => Controls_Manager::SELECT,
|
438 |
'default' => 'inherit',
|
439 |
'options' => [
|
440 |
-
'
|
441 |
'flex-start' => __( 'Start', 'ooohboi-steroids' ),
|
442 |
'center' => __( 'Center', 'ooohboi-steroids' ),
|
443 |
'flex-end' => __( 'End', 'ooohboi-steroids' ),
|
@@ -508,7 +531,7 @@ href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/O
|
|
508 |
'type' => Controls_Manager::SELECT,
|
509 |
'default' => 'inherit',
|
510 |
'options' => [
|
511 |
-
'inherit' => __( '
|
512 |
'column' => __( 'Column', 'ooohboi-steroids' ),
|
513 |
],
|
514 |
'selectors' => [
|
@@ -520,11 +543,11 @@ href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/O
|
|
520 |
],
|
521 |
]
|
522 |
);
|
523 |
-
// ------------------------------------------------------------------------- CONTROL: Align
|
524 |
$element->add_responsive_control(
|
525 |
'_ob_bbad_ws_widgets_horiz_align',
|
526 |
[
|
527 |
-
'label' => __( 'Align
|
528 |
'type' => Controls_Manager::SELECT,
|
529 |
'default' => 'flex-start',
|
530 |
'options' => [
|
@@ -557,7 +580,7 @@ href="https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Flexible_Box_Layout/O
|
|
557 |
'flex-end' => __( 'End', 'ooohboi-steroids' ),
|
558 |
],
|
559 |
'selectors' => [
|
560 |
-
'{{WRAPPER}}.elementor-column.ob-is-stalker .elementor-widget-wrap' => 'align-items: {{VALUE}};',
|
561 |
],
|
562 |
'condition' => [
|
563 |
'_ob_bbad_is_stalker' => 'yes',
|
298 |
],
|
299 |
]
|
300 |
);
|
301 |
+
// ------------------------------------------------------------------------- CONTROL: align self vertically
|
302 |
$element->add_responsive_control(
|
303 |
'_ob_bbad_inner_align_self',
|
304 |
[
|
305 |
+
'label' => __( 'Align self Vertically', 'ooohboi-steroids' ),
|
306 |
+
'description' => __( 'Align this Inner Section vertically (when the wrapper element widgets direction is Row or Inherit).', 'ooohboi-steroids' ),
|
307 |
'type' => Controls_Manager::SELECT,
|
308 |
'hide_in_top' => true,
|
309 |
'default' => 'auto',
|
321 |
],
|
322 |
]
|
323 |
);
|
324 |
+
// ------------------------------------------------------------------------- CONTROL: align self horizontally
|
325 |
+
$element->add_responsive_control(
|
326 |
+
'_ob_bbad_inner_align_self_horiz',
|
327 |
+
[
|
328 |
+
'label' => __( 'Align self Horizontally', 'ooohboi-steroids' ),
|
329 |
+
'description' => __( 'Align this Inner Section horizontally (when the wrapper element widgets direction is Column).', 'ooohboi-steroids' ),
|
330 |
+
'type' => Controls_Manager::SELECT,
|
331 |
+
'hide_in_top' => true,
|
332 |
+
'default' => 'inherit',
|
333 |
+
'options' => [
|
334 |
+
'inherit' => __( 'Inherit', 'ooohboi-steroids' ),
|
335 |
+
'flex-start' => __( 'Start', 'ooohboi-steroids' ),
|
336 |
+
'center' => __( 'Center', 'ooohboi-steroids' ),
|
337 |
+
'flex-end' => __( 'End', 'ooohboi-steroids' ),
|
338 |
+
],
|
339 |
+
'selectors' => [
|
340 |
+
'{{WRAPPER}}.ob-is-breaking-bad.ob-bb-inner' => 'align-self: {{VALUE}};',
|
341 |
+
],
|
342 |
+
'condition' => [
|
343 |
+
'_ob_bbad_use_it' => 'yes',
|
344 |
+
],
|
345 |
+
]
|
346 |
+
);
|
347 |
// --------------------------------------------------------------------------------------------- inner order
|
348 |
$element->add_responsive_control(
|
349 |
'_ob_bbad_inner_widget_order',
|
460 |
'type' => Controls_Manager::SELECT,
|
461 |
'default' => 'inherit',
|
462 |
'options' => [
|
463 |
+
'inherit' => __( 'Inherit', 'ooohboi-steroids' ),
|
464 |
'flex-start' => __( 'Start', 'ooohboi-steroids' ),
|
465 |
'center' => __( 'Center', 'ooohboi-steroids' ),
|
466 |
'flex-end' => __( 'End', 'ooohboi-steroids' ),
|
531 |
'type' => Controls_Manager::SELECT,
|
532 |
'default' => 'inherit',
|
533 |
'options' => [
|
534 |
+
'inherit' => __( 'Row', 'ooohboi-steroids' ),
|
535 |
'column' => __( 'Column', 'ooohboi-steroids' ),
|
536 |
],
|
537 |
'selectors' => [
|
543 |
],
|
544 |
]
|
545 |
);
|
546 |
+
// ------------------------------------------------------------------------- CONTROL: Align widgets
|
547 |
$element->add_responsive_control(
|
548 |
'_ob_bbad_ws_widgets_horiz_align',
|
549 |
[
|
550 |
+
'label' => __( 'Align Widgets', 'ooohboi-steroids' ),
|
551 |
'type' => Controls_Manager::SELECT,
|
552 |
'default' => 'flex-start',
|
553 |
'options' => [
|
580 |
'flex-end' => __( 'End', 'ooohboi-steroids' ),
|
581 |
],
|
582 |
'selectors' => [
|
583 |
+
'{{WRAPPER}}.elementor-column.ob-is-stalker .elementor-widget-wrap' => 'align-items: {{VALUE}}; align-content: unset;',
|
584 |
],
|
585 |
'condition' => [
|
586 |
'_ob_bbad_is_stalker' => 'yes',
|
controls/ooohboi-icobox.php
ADDED
@@ -0,0 +1,258 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
use Elementor\Controls_Manager;
|
3 |
+
use Elementor\Group_Control_Box_Shadow;
|
4 |
+
use Elementor\Group_Control_Background;
|
5 |
+
|
6 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
7 |
+
exit; // Exit if accessed directly.
|
8 |
+
}
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Main OoohBoi_Icobox class
|
12 |
+
*
|
13 |
+
* The main class that initiates and runs the plugin.
|
14 |
+
*
|
15 |
+
* @since 1.6.5
|
16 |
+
*/
|
17 |
+
final class OoohBoi_Icobox {
|
18 |
+
|
19 |
+
/**
|
20 |
+
* Initialize
|
21 |
+
*
|
22 |
+
* @since 1.6.5
|
23 |
+
*
|
24 |
+
* @access public
|
25 |
+
*/
|
26 |
+
public static function init() {
|
27 |
+
|
28 |
+
add_action( 'elementor/element/icon-box/section_style_icon/before_section_end', [ __CLASS__, 'ooohboi_icobox_img_controls' ], 10, 2 );
|
29 |
+
add_action( 'elementor/element/icon-box/section_style_content/before_section_end', [ __CLASS__, 'ooohboi_icobox_cont_controls' ], 10, 2 );
|
30 |
+
|
31 |
+
}
|
32 |
+
|
33 |
+
public static function ooohboi_icobox_img_controls( $element, $args ) {
|
34 |
+
|
35 |
+
$element->add_control(
|
36 |
+
'_ob_icobox_img',
|
37 |
+
[
|
38 |
+
'label' => 'I C O B O X',
|
39 |
+
'type' => Controls_Manager::HEADING,
|
40 |
+
'separator' => 'before',
|
41 |
+
]
|
42 |
+
);
|
43 |
+
// --------------------------------------------------------------------------------------------- CONTROL DIVIDER !!!!!
|
44 |
+
$element->add_control(
|
45 |
+
'_ob_icobox_separator_x',
|
46 |
+
[
|
47 |
+
'type' => Controls_Manager::DIVIDER,
|
48 |
+
]
|
49 |
+
);
|
50 |
+
// --------------------------------------------------------------------------------------------- CONTROL Box Shadow Regular
|
51 |
+
$element->add_group_control(
|
52 |
+
Group_Control_Box_Shadow::get_type(),
|
53 |
+
[
|
54 |
+
'name' => '_ob_icobox_shadow',
|
55 |
+
'label' => __( 'Box Shadow', 'ooohboi-steroids' ),
|
56 |
+
'separator' => 'before',
|
57 |
+
'selector' => '{{WRAPPER}} .elementor-icon-box-img',
|
58 |
+
'fields_options' => [
|
59 |
+
'box_shadow' => [
|
60 |
+
'default' => [
|
61 |
+
'horizontal' => 0,
|
62 |
+
'vertical' => 0,
|
63 |
+
'blur' => 0,
|
64 |
+
'spread' => 0,
|
65 |
+
'color' => 'rgba(0,0,0,0.5)',
|
66 |
+
],
|
67 |
+
],
|
68 |
+
],
|
69 |
+
]
|
70 |
+
);
|
71 |
+
// ------------------------------------------------------------------------- CONTROL: Visibility
|
72 |
+
$element->add_control(
|
73 |
+
'_ob_icobox_visibility',
|
74 |
+
[
|
75 |
+
'label' => __( 'Content Overflow', 'ooohboi-steroids' ),
|
76 |
+
'type' => Controls_Manager::SELECT,
|
77 |
+
'default' => 'hidden',
|
78 |
+
'separator' => 'before',
|
79 |
+
'options' => [
|
80 |
+
'visible' => __( 'Visible', 'ooohboi-steroids' ),
|
81 |
+
'hidden' => __( 'Hidden', 'ooohboi-steroids' ),
|
82 |
+
],
|
83 |
+
'selectors' => [
|
84 |
+
'{{WRAPPER}} .elementor-icon-box-img' => 'overflow: {{value}};',
|
85 |
+
],
|
86 |
+
]
|
87 |
+
);
|
88 |
+
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
89 |
+
$element->add_control(
|
90 |
+
'_ob_icobox_override_defaults',
|
91 |
+
[
|
92 |
+
'label' => __( 'Overrides', 'ooohboi-steroids' ),
|
93 |
+
'description' => __( 'Allow more basic controls?', 'ooohboi-steroids' ),
|
94 |
+
'separator' => 'before',
|
95 |
+
'type' => Controls_Manager::SWITCHER,
|
96 |
+
'label_on' => __( 'Yes', 'ooohboi-steroids' ),
|
97 |
+
'label_off' => __( 'No', 'ooohboi-steroids' ),
|
98 |
+
'return_value' => 'yes',
|
99 |
+
'default' => 'no',
|
100 |
+
]
|
101 |
+
);
|
102 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Padding
|
103 |
+
$element->add_responsive_control(
|
104 |
+
'_ob_icobox_padding_icon',
|
105 |
+
[
|
106 |
+
'label' => __( 'Icon Padding', 'ooohboi-steroids' ),
|
107 |
+
'separator' => 'before',
|
108 |
+
'type' => Controls_Manager::DIMENSIONS,
|
109 |
+
'size_units' => [ 'px', 'em', '%' ],
|
110 |
+
'selectors' => [
|
111 |
+
'{{WRAPPER}} .elementor-icon-box-wrapper .elementor-icon-box-icon' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
112 |
+
],
|
113 |
+
'condition' => [
|
114 |
+
'_ob_icobox_override_defaults' => 'yes',
|
115 |
+
],
|
116 |
+
]
|
117 |
+
);
|
118 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Margin
|
119 |
+
$element->add_responsive_control(
|
120 |
+
'_ob_icobox_margin_icon',
|
121 |
+
[
|
122 |
+
'label' => __( 'Icon Margin', 'ooohboi-steroids' ),
|
123 |
+
'type' => Controls_Manager::DIMENSIONS,
|
124 |
+
'size_units' => [ 'px', 'em', '%' ],
|
125 |
+
'selectors' => [
|
126 |
+
'{{WRAPPER}} .elementor-icon-box-wrapper .elementor-icon-box-icon' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
127 |
+
],
|
128 |
+
'condition' => [
|
129 |
+
'_ob_icobox_override_defaults' => 'yes',
|
130 |
+
],
|
131 |
+
]
|
132 |
+
);
|
133 |
+
|
134 |
+
}
|
135 |
+
|
136 |
+
public static function ooohboi_icobox_cont_controls( $element, $args ) {
|
137 |
+
|
138 |
+
$element->add_control(
|
139 |
+
'_ob_icobox_cont',
|
140 |
+
[
|
141 |
+
'label' => 'I C O B O X',
|
142 |
+
'type' => Controls_Manager::HEADING,
|
143 |
+
'separator' => 'before',
|
144 |
+
]
|
145 |
+
);
|
146 |
+
|
147 |
+
// --------------------------------------------------------------------------------------------- CONTROL DIVIDER !!!!!
|
148 |
+
$element->add_control(
|
149 |
+
'_ob_icobox_separator_y',
|
150 |
+
[
|
151 |
+
'type' => Controls_Manager::DIVIDER,
|
152 |
+
]
|
153 |
+
);
|
154 |
+
|
155 |
+
// --------------------------------------------------------------------------------------------- CONTROL BACKGROUND
|
156 |
+
$element->add_group_control(
|
157 |
+
Group_Control_Background::get_type(),
|
158 |
+
[
|
159 |
+
'name' => '_ob_icobox_cont_background',
|
160 |
+
'selector' => '{{WRAPPER}} .elementor-icon-box-content',
|
161 |
+
]
|
162 |
+
);
|
163 |
+
|
164 |
+
// --------------------------------------------------------------------------------------------- CONTROL Padding
|
165 |
+
$element->add_responsive_control(
|
166 |
+
'_ob_icobox_padding_cont',
|
167 |
+
[
|
168 |
+
'label' => __( 'Box Padding', 'ooohboi-steroids' ),
|
169 |
+
'separator' => 'before',
|
170 |
+
'type' => Controls_Manager::DIMENSIONS,
|
171 |
+
'size_units' => [ 'px', 'em', '%' ],
|
172 |
+
'selectors' => [
|
173 |
+
'{{WRAPPER}} .elementor-icon-box-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
174 |
+
],
|
175 |
+
]
|
176 |
+
);
|
177 |
+
|
178 |
+
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
179 |
+
$element->add_control(
|
180 |
+
'_ob_icobox_overrides',
|
181 |
+
[
|
182 |
+
'label' => __( 'Overrides', 'ooohboi-steroids' ),
|
183 |
+
'description' => __( 'Allow separate controls for Title and Description?', 'ooohboi-steroids' ),
|
184 |
+
'separator' => 'before',
|
185 |
+
'type' => Controls_Manager::SWITCHER,
|
186 |
+
'label_on' => __( 'Yes', 'ooohboi-steroids' ),
|
187 |
+
'label_off' => __( 'No', 'ooohboi-steroids' ),
|
188 |
+
'return_value' => 'yes',
|
189 |
+
'default' => 'no',
|
190 |
+
]
|
191 |
+
);
|
192 |
+
|
193 |
+
// --------------------------------------------------------------------------------------------- CONTROL Title Padding
|
194 |
+
$element->add_responsive_control(
|
195 |
+
'_ob_icobox_padding_title',
|
196 |
+
[
|
197 |
+
'label' => __( 'Title Padding', 'ooohboi-steroids' ),
|
198 |
+
'separator' => 'before',
|
199 |
+
'type' => Controls_Manager::DIMENSIONS,
|
200 |
+
'size_units' => [ 'px', 'em', '%' ],
|
201 |
+
'selectors' => [
|
202 |
+
'{{WRAPPER}} .elementor-icon-box-content .elementor-icon-box-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
203 |
+
],
|
204 |
+
'condition' => [
|
205 |
+
'_ob_icobox_overrides' => 'yes',
|
206 |
+
],
|
207 |
+
]
|
208 |
+
);
|
209 |
+
// --------------------------------------------------------------------------------------------- CONTROL Title Margin
|
210 |
+
$element->add_responsive_control(
|
211 |
+
'_ob_icobox_margin_title',
|
212 |
+
[
|
213 |
+
'label' => __( 'Title Margin', 'ooohboi-steroids' ),
|
214 |
+
'type' => Controls_Manager::DIMENSIONS,
|
215 |
+
'size_units' => [ 'px', 'em', '%' ],
|
216 |
+
'selectors' => [
|
217 |
+
'{{WRAPPER}} .elementor-icon-box-content .elementor-icon-box-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
218 |
+
],
|
219 |
+
'condition' => [
|
220 |
+
'_ob_icobox_overrides' => 'yes',
|
221 |
+
],
|
222 |
+
]
|
223 |
+
);
|
224 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Padding
|
225 |
+
$element->add_responsive_control(
|
226 |
+
'_ob_icobox_padding_text',
|
227 |
+
[
|
228 |
+
'label' => __( 'Description Padding', 'ooohboi-steroids' ),
|
229 |
+
'separator' => 'before',
|
230 |
+
'type' => Controls_Manager::DIMENSIONS,
|
231 |
+
'size_units' => [ 'px', 'em', '%' ],
|
232 |
+
'selectors' => [
|
233 |
+
'{{WRAPPER}} .elementor-icon-box-content .elementor-icon-box-description' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
234 |
+
],
|
235 |
+
'condition' => [
|
236 |
+
'_ob_icobox_overrides' => 'yes',
|
237 |
+
],
|
238 |
+
]
|
239 |
+
);
|
240 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Margin
|
241 |
+
$element->add_responsive_control(
|
242 |
+
'_ob_icobox_margin_text',
|
243 |
+
[
|
244 |
+
'label' => __( 'Description Margin', 'ooohboi-steroids' ),
|
245 |
+
'type' => Controls_Manager::DIMENSIONS,
|
246 |
+
'size_units' => [ 'px', 'em', '%' ],
|
247 |
+
'selectors' => [
|
248 |
+
'{{WRAPPER}} .elementor-icon-box-content .elementor-icon-box-description' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
249 |
+
],
|
250 |
+
'condition' => [
|
251 |
+
'_ob_icobox_overrides' => 'yes',
|
252 |
+
],
|
253 |
+
]
|
254 |
+
);
|
255 |
+
|
256 |
+
}
|
257 |
+
|
258 |
+
}
|
controls/ooohboi-imbox.php
CHANGED
@@ -32,8 +32,6 @@ final class OoohBoi_Imbox {
|
|
32 |
|
33 |
public static function ooohboi_imbox_img_controls( $element, $args ) {
|
34 |
|
35 |
-
$selector = '{{WRAPPER}} .elementor-image-box-img';
|
36 |
-
|
37 |
$element->add_control(
|
38 |
'_ob_imbox_img',
|
39 |
[
|
@@ -56,7 +54,7 @@ final class OoohBoi_Imbox {
|
|
56 |
'name' => '_ob_imbox_shadow',
|
57 |
'label' => __( 'Box Shadow', 'ooohboi-steroids' ),
|
58 |
'separator' => 'before',
|
59 |
-
'selector' =>
|
60 |
'fields_options' => [
|
61 |
'box_shadow' => [
|
62 |
'default' => [
|
@@ -83,17 +81,106 @@ final class OoohBoi_Imbox {
|
|
83 |
'hidden' => __( 'Hidden', 'ooohboi-steroids' ),
|
84 |
],
|
85 |
'selectors' => [
|
86 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
],
|
88 |
]
|
89 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
}
|
92 |
|
93 |
public static function ooohboi_imbox_cont_controls( $element, $args ) {
|
94 |
|
95 |
-
$selector = '{{WRAPPER}} .elementor-image-box-content';
|
96 |
-
|
97 |
$element->add_control(
|
98 |
'_ob_imbox_cont',
|
99 |
[
|
@@ -116,7 +203,7 @@ final class OoohBoi_Imbox {
|
|
116 |
Group_Control_Background::get_type(),
|
117 |
[
|
118 |
'name' => '_ob_imbox_cont_background',
|
119 |
-
'selector' =>
|
120 |
]
|
121 |
);
|
122 |
|
@@ -124,13 +211,92 @@ final class OoohBoi_Imbox {
|
|
124 |
$element->add_responsive_control(
|
125 |
'_ob_imbox_padding_cont',
|
126 |
[
|
127 |
-
'label' => __( 'Padding', 'ooohboi-steroids' ),
|
128 |
'separator' => 'before',
|
129 |
'type' => Controls_Manager::DIMENSIONS,
|
130 |
'size_units' => [ 'px', 'em', '%' ],
|
131 |
'selectors' => [
|
132 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
],
|
|
|
|
|
|
|
134 |
]
|
135 |
);
|
136 |
|
32 |
|
33 |
public static function ooohboi_imbox_img_controls( $element, $args ) {
|
34 |
|
|
|
|
|
35 |
$element->add_control(
|
36 |
'_ob_imbox_img',
|
37 |
[
|
54 |
'name' => '_ob_imbox_shadow',
|
55 |
'label' => __( 'Box Shadow', 'ooohboi-steroids' ),
|
56 |
'separator' => 'before',
|
57 |
+
'selector' => '{{WRAPPER}} .elementor-image-box-img',
|
58 |
'fields_options' => [
|
59 |
'box_shadow' => [
|
60 |
'default' => [
|
81 |
'hidden' => __( 'Hidden', 'ooohboi-steroids' ),
|
82 |
],
|
83 |
'selectors' => [
|
84 |
+
'{{WRAPPER}} .elementor-image-box-img' => 'overflow: {{value}};',
|
85 |
+
],
|
86 |
+
]
|
87 |
+
);
|
88 |
+
|
89 |
+
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
90 |
+
$element->add_control(
|
91 |
+
'_ob_imbox_override_defaults',
|
92 |
+
[
|
93 |
+
'label' => __( 'Overrides', 'ooohboi-steroids' ),
|
94 |
+
'description' => __( 'Allow more basic controls?', 'ooohboi-steroids' ),
|
95 |
+
'separator' => 'before',
|
96 |
+
'type' => Controls_Manager::SWITCHER,
|
97 |
+
'label_on' => __( 'Yes', 'ooohboi-steroids' ),
|
98 |
+
'label_off' => __( 'No', 'ooohboi-steroids' ),
|
99 |
+
'return_value' => 'yes',
|
100 |
+
'default' => 'no',
|
101 |
+
]
|
102 |
+
);
|
103 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Padding
|
104 |
+
$element->add_responsive_control(
|
105 |
+
'_ob_imbox_padding_icon',
|
106 |
+
[
|
107 |
+
'label' => __( 'Image Padding', 'ooohboi-steroids' ),
|
108 |
+
'separator' => 'before',
|
109 |
+
'type' => Controls_Manager::DIMENSIONS,
|
110 |
+
'size_units' => [ 'px', 'em', '%' ],
|
111 |
+
'selectors' => [
|
112 |
+
'{{WRAPPER}} .elementor-image-box-img' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
113 |
+
],
|
114 |
+
'condition' => [
|
115 |
+
'_ob_imbox_override_defaults' => 'yes',
|
116 |
+
],
|
117 |
+
]
|
118 |
+
);
|
119 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Margin
|
120 |
+
$element->add_responsive_control(
|
121 |
+
'_ob_imbox_margin_icon',
|
122 |
+
[
|
123 |
+
'label' => __( 'Image Margin', 'ooohboi-steroids' ),
|
124 |
+
'type' => Controls_Manager::DIMENSIONS,
|
125 |
+
'size_units' => [ 'px', 'em', '%' ],
|
126 |
+
'selectors' => [
|
127 |
+
'{{WRAPPER}} .elementor-image-box-img' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
128 |
+
],
|
129 |
+
'condition' => [
|
130 |
+
'_ob_imbox_override_defaults' => 'yes',
|
131 |
+
],
|
132 |
+
]
|
133 |
+
);
|
134 |
+
// ------------------------------------------------------------------------- CONTROL: Yes 4 Full height image !
|
135 |
+
$element->add_control(
|
136 |
+
'_ob_imbox-full-height',
|
137 |
+
[
|
138 |
+
'label' => __( 'Enable full-height?', 'ooohboi-steroids' ),
|
139 |
+
'description' => __( 'That will make the photo full-height. Makes sense only if the photo is placed left or the right-hand side!', 'ooohboi-steroids' ),
|
140 |
+
'type' => Controls_Manager::SWITCHER,
|
141 |
+
'default' => false,
|
142 |
+
'separator' => 'before',
|
143 |
+
'selectors' => [
|
144 |
+
'{{WRAPPER}} .elementor-image-box-wrapper' => 'align-items: stretch;',
|
145 |
+
'{{WRAPPER}}.elementor-position-left .elementor-image-box-img img' => 'object-fit: cover; object-position: 50% 50%; height: 100%;',
|
146 |
+
'{{WRAPPER}}.elementor-position-right .elementor-image-box-img img' => 'object-fit: cover; object-position: 50% 50%; height: 100%;',
|
147 |
+
],
|
148 |
+
]
|
149 |
+
);
|
150 |
+
// --------------------------------------------------------------------------------------------- CONTROL CLIP PATH
|
151 |
+
$element->add_control(
|
152 |
+
'_ob_imbox_clip_path',
|
153 |
+
[
|
154 |
+
'label' => __( 'Image clip path', 'ooohboi-steroids' ),
|
155 |
+
'description' => sprintf(
|
156 |
+
__( 'Enter the full clip-path property! See the copy-paste examples at %sClippy%s', 'ooohboi-steroids' ),
|
157 |
+
'<a href="https://bennettfeely.com/clippy/" target="_blank">',
|
158 |
+
'</a>'
|
159 |
+
),
|
160 |
+
'default' => '',
|
161 |
+
'type' => Controls_Manager::TEXTAREA,
|
162 |
+
'rows' => 3,
|
163 |
+
'selectors' => [
|
164 |
+
'{{WRAPPER}} .elementor-image-box-img' => '{{VALUE}}',
|
165 |
+
],
|
166 |
+
'condition' => [
|
167 |
+
'_ob_imbox_override_defaults' => 'yes',
|
168 |
],
|
169 |
]
|
170 |
);
|
171 |
+
// --------------------------------------------------------------------------------------------- CONTROL BACKGROUND
|
172 |
+
$element->add_group_control(
|
173 |
+
Group_Control_Background::get_type(),
|
174 |
+
[
|
175 |
+
'name' => '_ob_imbox_img_background',
|
176 |
+
'selector' => '{{WRAPPER}} .elementor-image-box-img',
|
177 |
+
]
|
178 |
+
);
|
179 |
|
180 |
}
|
181 |
|
182 |
public static function ooohboi_imbox_cont_controls( $element, $args ) {
|
183 |
|
|
|
|
|
184 |
$element->add_control(
|
185 |
'_ob_imbox_cont',
|
186 |
[
|
203 |
Group_Control_Background::get_type(),
|
204 |
[
|
205 |
'name' => '_ob_imbox_cont_background',
|
206 |
+
'selector' => '{{WRAPPER}} .elementor-image-box-content',
|
207 |
]
|
208 |
);
|
209 |
|
211 |
$element->add_responsive_control(
|
212 |
'_ob_imbox_padding_cont',
|
213 |
[
|
214 |
+
'label' => __( 'Box Padding', 'ooohboi-steroids' ),
|
215 |
'separator' => 'before',
|
216 |
'type' => Controls_Manager::DIMENSIONS,
|
217 |
'size_units' => [ 'px', 'em', '%' ],
|
218 |
'selectors' => [
|
219 |
+
'{{WRAPPER}} .elementor-image-box-content' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
220 |
+
],
|
221 |
+
]
|
222 |
+
);
|
223 |
+
|
224 |
+
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
225 |
+
$element->add_control(
|
226 |
+
'_ob_imbox_overrides',
|
227 |
+
[
|
228 |
+
'label' => __( 'Overrides', 'ooohboi-steroids' ),
|
229 |
+
'description' => __( 'Allow separate controls for Title and Description?', 'ooohboi-steroids' ),
|
230 |
+
'separator' => 'before',
|
231 |
+
'type' => Controls_Manager::SWITCHER,
|
232 |
+
'label_on' => __( 'Yes', 'ooohboi-steroids' ),
|
233 |
+
'label_off' => __( 'No', 'ooohboi-steroids' ),
|
234 |
+
'return_value' => 'yes',
|
235 |
+
'default' => 'no',
|
236 |
+
]
|
237 |
+
);
|
238 |
+
|
239 |
+
// --------------------------------------------------------------------------------------------- CONTROL Title Padding
|
240 |
+
$element->add_responsive_control(
|
241 |
+
'_ob_imbox_padding_title',
|
242 |
+
[
|
243 |
+
'label' => __( 'Title Padding', 'ooohboi-steroids' ),
|
244 |
+
'separator' => 'before',
|
245 |
+
'type' => Controls_Manager::DIMENSIONS,
|
246 |
+
'size_units' => [ 'px', 'em', '%' ],
|
247 |
+
'selectors' => [
|
248 |
+
'{{WRAPPER}} .elementor-image-box-content .elementor-image-box-title' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
249 |
+
],
|
250 |
+
'condition' => [
|
251 |
+
'_ob_imbox_overrides' => 'yes',
|
252 |
+
],
|
253 |
+
]
|
254 |
+
);
|
255 |
+
// --------------------------------------------------------------------------------------------- CONTROL Title Margin
|
256 |
+
$element->add_responsive_control(
|
257 |
+
'_ob_imbox_margin_title',
|
258 |
+
[
|
259 |
+
'label' => __( 'Title Margin', 'ooohboi-steroids' ),
|
260 |
+
'type' => Controls_Manager::DIMENSIONS,
|
261 |
+
'size_units' => [ 'px', 'em', '%' ],
|
262 |
+
'selectors' => [
|
263 |
+
'{{WRAPPER}} .elementor-image-box-content .elementor-image-box-title' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
264 |
+
],
|
265 |
+
'condition' => [
|
266 |
+
'_ob_imbox_overrides' => 'yes',
|
267 |
+
],
|
268 |
+
]
|
269 |
+
);
|
270 |
+
|
271 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Padding
|
272 |
+
$element->add_responsive_control(
|
273 |
+
'_ob_imbox_padding_text',
|
274 |
+
[
|
275 |
+
'label' => __( 'Description Padding', 'ooohboi-steroids' ),
|
276 |
+
'separator' => 'before',
|
277 |
+
'type' => Controls_Manager::DIMENSIONS,
|
278 |
+
'size_units' => [ 'px', 'em', '%' ],
|
279 |
+
'selectors' => [
|
280 |
+
'{{WRAPPER}} .elementor-image-box-content .elementor-image-box-description' => 'padding: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
281 |
+
],
|
282 |
+
'condition' => [
|
283 |
+
'_ob_imbox_overrides' => 'yes',
|
284 |
+
],
|
285 |
+
]
|
286 |
+
);
|
287 |
+
// --------------------------------------------------------------------------------------------- CONTROL Content Margin
|
288 |
+
$element->add_responsive_control(
|
289 |
+
'_ob_imbox_margin_text',
|
290 |
+
[
|
291 |
+
'label' => __( 'Description Margin', 'ooohboi-steroids' ),
|
292 |
+
'type' => Controls_Manager::DIMENSIONS,
|
293 |
+
'size_units' => [ 'px', 'em', '%' ],
|
294 |
+
'selectors' => [
|
295 |
+
'{{WRAPPER}} .elementor-image-box-content .elementor-image-box-description' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}} !important;',
|
296 |
],
|
297 |
+
'condition' => [
|
298 |
+
'_ob_imbox_overrides' => 'yes',
|
299 |
+
],
|
300 |
]
|
301 |
);
|
302 |
|
controls/ooohboi-widget-stalker.php
CHANGED
@@ -32,9 +32,9 @@ class OoohBoi_Widget_Stalker {
|
|
32 |
|
33 |
public static function ob_widget_stalker_add_attributes( Element_Base $element ) {
|
34 |
|
35 |
-
if
|
36 |
|
37 |
-
if
|
38 |
|
39 |
$settings = $element->get_settings_for_display();
|
40 |
|
@@ -56,7 +56,7 @@ class OoohBoi_Widget_Stalker {
|
|
56 |
]
|
57 |
);
|
58 |
|
59 |
-
// ------------------------------------------------------------------------- CONTROL: Use
|
60 |
$element->add_control(
|
61 |
'_ob_widget_stalker_use',
|
62 |
[
|
@@ -72,7 +72,7 @@ class OoohBoi_Widget_Stalker {
|
|
72 |
]
|
73 |
);
|
74 |
|
75 |
-
// ------------------------------------------------------------------------- CONTROL:
|
76 |
$element->add_responsive_control(
|
77 |
'_ob_ws_width_method',
|
78 |
[
|
32 |
|
33 |
public static function ob_widget_stalker_add_attributes( Element_Base $element ) {
|
34 |
|
35 |
+
if( in_array( $element->get_name(), [ 'section', 'column' ] ) ) return;
|
36 |
|
37 |
+
if( \Elementor\Plugin::instance()->editor->is_edit_mode() ) return;
|
38 |
|
39 |
$settings = $element->get_settings_for_display();
|
40 |
|
56 |
]
|
57 |
);
|
58 |
|
59 |
+
// ------------------------------------------------------------------------- CONTROL: Use Stalker
|
60 |
$element->add_control(
|
61 |
'_ob_widget_stalker_use',
|
62 |
[
|
72 |
]
|
73 |
);
|
74 |
|
75 |
+
// ------------------------------------------------------------------------- CONTROL: Size Method
|
76 |
$element->add_responsive_control(
|
77 |
'_ob_ws_width_method',
|
78 |
[
|
inc/common-functions.php
CHANGED
@@ -115,6 +115,12 @@ $options_page = array(
|
|
115 |
'text' => sprintf( __( '%sImage Box widget extra controls', 'ooohboi-steroids%s' ), '<span class="ob-option-desc">', '</span>' ),
|
116 |
'checked' => 1,
|
117 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
'ob_use_hoveranimator' => array(
|
119 |
'title' => 'HOVER ANIMATOR',
|
120 |
'type' => 'checkbox',
|
115 |
'text' => sprintf( __( '%sImage Box widget extra controls', 'ooohboi-steroids%s' ), '<span class="ob-option-desc">', '</span>' ),
|
116 |
'checked' => 1,
|
117 |
),
|
118 |
+
'ob_use_icobox' => array(
|
119 |
+
'title' => 'ICOBOX',
|
120 |
+
'type' => 'checkbox',
|
121 |
+
'text' => sprintf( __( '%Icon Box widget extra controls', 'ooohboi-steroids%s' ), '<span class="ob-option-desc">', '</span>' ),
|
122 |
+
'checked' => 1,
|
123 |
+
),
|
124 |
'ob_use_hoveranimator' => array(
|
125 |
'title' => 'HOVER ANIMATOR',
|
126 |
'type' => 'checkbox',
|
lang/ooohboi-steroids.pot
CHANGED
@@ -3,8 +3,8 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: OoohBoi Steroids for Elementor\n"
|
6 |
-
"POT-Creation-Date: 2021-03-
|
7 |
-
"PO-Revision-Date: 2021-03-
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -32,16 +32,18 @@ msgid ""
|
|
32 |
msgstr ""
|
33 |
|
34 |
#: controls/ooohboi-breaking-bad.php:91 controls/ooohboi-breaking-bad.php:173
|
35 |
-
#: controls/ooohboi-breaking-bad.php:
|
36 |
#: controls/ooohboi-butter-button.php:71 controls/ooohboi-commentz.php:71
|
37 |
#: controls/ooohboi-glider.php:68 controls/ooohboi-glider.php:83
|
38 |
#: controls/ooohboi-glider.php:134 controls/ooohboi-glider.php:359
|
39 |
#: controls/ooohboi-glider.php:515 controls/ooohboi-glider.php:555
|
40 |
#: controls/ooohboi-glider.php:590 controls/ooohboi-glider.php:608
|
41 |
#: controls/ooohboi-harakiri.php:81 controls/ooohboi-hover-animator.php:68
|
42 |
-
#: controls/ooohboi-hover-animator.php:145 controls/ooohboi-
|
43 |
-
#: controls/ooohboi-
|
44 |
-
#: controls/ooohboi-
|
|
|
|
|
45 |
#: controls/ooohboi-perspektive.php:74 controls/ooohboi-photomorph.php:66
|
46 |
#: controls/ooohboi-photomorph.php:142 controls/ooohboi-shadough.php:50
|
47 |
#: controls/ooohboi-spacerat.php:69 controls/ooohboi-spacerat.php:339
|
@@ -50,16 +52,18 @@ msgid "Yes"
|
|
50 |
msgstr ""
|
51 |
|
52 |
#: controls/ooohboi-breaking-bad.php:92 controls/ooohboi-breaking-bad.php:174
|
53 |
-
#: controls/ooohboi-breaking-bad.php:
|
54 |
#: controls/ooohboi-butter-button.php:72 controls/ooohboi-commentz.php:72
|
55 |
#: controls/ooohboi-glider.php:69 controls/ooohboi-glider.php:84
|
56 |
#: controls/ooohboi-glider.php:135 controls/ooohboi-glider.php:360
|
57 |
#: controls/ooohboi-glider.php:516 controls/ooohboi-glider.php:556
|
58 |
#: controls/ooohboi-glider.php:591 controls/ooohboi-glider.php:609
|
59 |
#: controls/ooohboi-harakiri.php:82 controls/ooohboi-hover-animator.php:69
|
60 |
-
#: controls/ooohboi-hover-animator.php:146 controls/ooohboi-
|
61 |
-
#: controls/ooohboi-
|
62 |
-
#: controls/ooohboi-
|
|
|
|
|
63 |
#: controls/ooohboi-perspektive.php:75 controls/ooohboi-photomorph.php:67
|
64 |
#: controls/ooohboi-photomorph.php:143 controls/ooohboi-shadough.php:51
|
65 |
#: controls/ooohboi-spacerat.php:70 controls/ooohboi-spacerat.php:340
|
@@ -72,33 +76,36 @@ msgid "Align Columns"
|
|
72 |
msgstr ""
|
73 |
|
74 |
#: controls/ooohboi-breaking-bad.php:106 controls/ooohboi-breaking-bad.php:152
|
75 |
-
#: controls/ooohboi-breaking-bad.php:
|
|
|
76 |
msgid "Start"
|
77 |
msgstr ""
|
78 |
|
79 |
#: controls/ooohboi-breaking-bad.php:107 controls/ooohboi-breaking-bad.php:153
|
80 |
-
#: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-breaking-bad.php:
|
81 |
-
#: controls/ooohboi-breaking-bad.php:
|
|
|
82 |
#: controls/ooohboi-commentz.php:654 controls/ooohboi-widget-stalker.php:196
|
83 |
msgid "Center"
|
84 |
msgstr ""
|
85 |
|
86 |
#: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
|
87 |
-
#: controls/ooohboi-breaking-bad.php:314 controls/ooohboi-breaking-bad.php:
|
88 |
-
#: controls/ooohboi-breaking-bad.php:
|
|
|
89 |
#: controls/ooohboi-widget-stalker.php:197
|
90 |
msgid "End"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: controls/ooohboi-breaking-bad.php:109
|
94 |
msgid "Space Between"
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: controls/ooohboi-breaking-bad.php:110
|
98 |
msgid "Space Around"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: controls/ooohboi-breaking-bad.php:111
|
102 |
msgid "Space Evenly"
|
103 |
msgstr ""
|
104 |
|
@@ -106,11 +113,11 @@ msgstr ""
|
|
106 |
msgid "Columns Direction"
|
107 |
msgstr ""
|
108 |
|
109 |
-
#: controls/ooohboi-breaking-bad.php:130
|
110 |
msgid "Row"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: controls/ooohboi-breaking-bad.php:131 controls/ooohboi-breaking-bad.php:
|
114 |
msgid "Column"
|
115 |
msgstr ""
|
116 |
|
@@ -149,14 +156,14 @@ msgstr ""
|
|
149 |
#: controls/ooohboi-breaking-bad.php:247 controls/ooohboi-overlaiz.php:75
|
150 |
#: controls/ooohboi-overlaiz.php:578 controls/ooohboi-overlay-underlay.php:170
|
151 |
#: controls/ooohboi-overlay-underlay.php:557
|
152 |
-
#: controls/ooohboi-overlay-underlay.php:
|
153 |
-
#: controls/ooohboi-overlay-underlay.php:
|
154 |
#: controls/ooohboi-videomasq.php:122
|
155 |
msgid "Width"
|
156 |
msgstr ""
|
157 |
|
158 |
#: controls/ooohboi-breaking-bad.php:253 controls/ooohboi-breaking-bad.php:292
|
159 |
-
#: controls/ooohboi-breaking-bad.php:
|
160 |
#: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
|
161 |
#: controls/ooohboi-teleporter.php:203 controls/ooohboi-widget-stalker.php:138
|
162 |
#: controls/ooohboi-widget-stalker.php:176
|
@@ -165,23 +172,24 @@ msgid ""
|
|
165 |
"calc(100% - 300px)."
|
166 |
msgstr ""
|
167 |
|
168 |
-
#: controls/ooohboi-breaking-bad.php:287 controls/ooohboi-breaking-bad.php:
|
169 |
#: controls/ooohboi-widget-stalker.php:172
|
170 |
msgid "Max Width"
|
171 |
msgstr ""
|
172 |
|
173 |
#: controls/ooohboi-breaking-bad.php:305
|
174 |
-
|
175 |
-
msgid "Align self"
|
176 |
msgstr ""
|
177 |
|
178 |
#: controls/ooohboi-breaking-bad.php:306
|
179 |
-
msgid "
|
|
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
#: controls/ooohboi-breaking-bad.php:311 controls/ooohboi-overlaiz.php:558
|
183 |
#: controls/ooohboi-overlay-underlay.php:539
|
184 |
-
#: controls/ooohboi-overlay-underlay.php:
|
185 |
#: controls/ooohboi-videomasq.php:104 controls/ooohboi-widget-stalker.php:194
|
186 |
msgid "Auto"
|
187 |
msgstr ""
|
@@ -192,79 +200,81 @@ msgid "Baseline"
|
|
192 |
msgstr ""
|
193 |
|
194 |
#: controls/ooohboi-breaking-bad.php:328
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgid "Stacking Order"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: controls/ooohboi-breaking-bad.php:
|
199 |
#: controls/ooohboi-widget-stalker.php:213
|
200 |
#, php-format
|
201 |
msgid "More info at %sMozilla%s."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: controls/ooohboi-breaking-bad.php:
|
205 |
msgid "Custom Width"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: controls/ooohboi-breaking-bad.php:
|
209 |
msgid ""
|
210 |
"You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
|
211 |
"calc(100% - 300px). NOTE: If you want to make the columns wrap, Enable "
|
212 |
"Breaking Bad for this Column parent SECTION!"
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: controls/ooohboi-breaking-bad.php:
|
216 |
msgid "Custom Height"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: controls/ooohboi-breaking-bad.php:
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: controls/ooohboi-breaking-bad.php:
|
224 |
-
msgid "
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: controls/ooohboi-breaking-bad.php:
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: controls/ooohboi-breaking-bad.php:
|
232 |
msgid "Scrollable Column?"
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: controls/ooohboi-breaking-bad.php:
|
236 |
#, php-format
|
237 |
msgid "Widget Stalker%sNEW!%s"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: controls/ooohboi-breaking-bad.php:
|
241 |
msgid "Enable Widget Stalker?"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: controls/ooohboi-breaking-bad.php:
|
245 |
msgid ""
|
246 |
"NOTE: It changes the default alignment of widgets inside this column - "
|
247 |
"including the Ineer Section widget."
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: controls/ooohboi-breaking-bad.php:
|
251 |
msgid "Widgets Direction"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: controls/ooohboi-breaking-bad.php:
|
255 |
-
|
256 |
-
#: controls/ooohboi-hover-animator.php:428
|
257 |
-
#: controls/ooohboi-hover-animator.php:580
|
258 |
-
#: controls/ooohboi-hover-animator.php:815
|
259 |
-
#: controls/ooohboi-hover-animator.php:971 controls/ooohboi-overlaiz.php:527
|
260 |
-
#: controls/ooohboi-overlaiz.php:557 controls/ooohboi-overlay-underlay.php:510
|
261 |
-
#: controls/ooohboi-overlay-underlay.php:538
|
262 |
-
#: controls/ooohboi-overlay-underlay.php:1065
|
263 |
-
#: controls/ooohboi-overlay-underlay.php:1092
|
264 |
-
#: controls/ooohboi-photomorph.php:189 controls/ooohboi-spacerat.php:191
|
265 |
-
#: controls/ooohboi-spacerat.php:219 controls/ooohboi-videomasq.php:75
|
266 |
-
#: controls/ooohboi-videomasq.php:103
|
267 |
-
msgid "Default"
|
268 |
msgstr ""
|
269 |
|
270 |
#: controls/ooohboi-butter-button.php:68
|
@@ -289,8 +299,8 @@ msgstr ""
|
|
289 |
|
290 |
#: controls/ooohboi-butter-button.php:158 controls/ooohboi-commentz.php:150
|
291 |
#: controls/ooohboi-commentz.php:734 controls/ooohboi-commentz.php:961
|
292 |
-
#: controls/ooohboi-glider.php:277 controls/ooohboi-
|
293 |
-
#: controls/ooohboi-
|
294 |
msgid "Padding"
|
295 |
msgstr ""
|
296 |
|
@@ -315,8 +325,8 @@ msgstr ""
|
|
315 |
#: controls/ooohboi-overlaiz.php:368 controls/ooohboi-overlaiz.php:387
|
316 |
#: controls/ooohboi-overlay-underlay.php:426
|
317 |
#: controls/ooohboi-overlay-underlay.php:443
|
318 |
-
#: controls/ooohboi-overlay-underlay.php:
|
319 |
-
#: controls/ooohboi-overlay-underlay.php:
|
320 |
#: controls/ooohboi-paginini.php:195
|
321 |
msgid "Border"
|
322 |
msgstr ""
|
@@ -328,14 +338,14 @@ msgstr ""
|
|
328 |
#: controls/ooohboi-glider.php:472 controls/ooohboi-kontrolz.php:95
|
329 |
#: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:399
|
330 |
#: controls/ooohboi-overlay-underlay.php:454
|
331 |
-
#: controls/ooohboi-overlay-underlay.php:
|
332 |
#: controls/ooohboi-paginini.php:203
|
333 |
msgid "Border Radius"
|
334 |
msgstr ""
|
335 |
|
336 |
#: controls/ooohboi-butter-button.php:264
|
337 |
-
#: controls/ooohboi-butter-button.php:377 controls/ooohboi-
|
338 |
-
#: controls/ooohboi-overlaiz.php:419
|
339 |
msgid "Box Shadow"
|
340 |
msgstr ""
|
341 |
|
@@ -681,7 +691,7 @@ msgid "Vertical RL"
|
|
681 |
msgstr ""
|
682 |
|
683 |
#: controls/ooohboi-harakiri.php:67 controls/ooohboi-overlay-underlay.php:131
|
684 |
-
#: controls/ooohboi-overlay-underlay.php:
|
685 |
#: controls/ooohboi-teleporter.php:129
|
686 |
msgid "Normal"
|
687 |
msgstr ""
|
@@ -692,17 +702,32 @@ msgstr ""
|
|
692 |
|
693 |
#: controls/ooohboi-harakiri.php:118 controls/ooohboi-overlaiz.php:142
|
694 |
#: controls/ooohboi-overlay-underlay.php:227
|
695 |
-
#: controls/ooohboi-overlay-underlay.php:
|
696 |
msgid "Height"
|
697 |
msgstr ""
|
698 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
699 |
#: controls/ooohboi-harakiri.php:123
|
700 |
msgid "Inline"
|
701 |
msgstr ""
|
702 |
|
703 |
#: controls/ooohboi-harakiri.php:124 controls/ooohboi-overlaiz.php:561
|
704 |
#: controls/ooohboi-overlay-underlay.php:542
|
705 |
-
#: controls/ooohboi-overlay-underlay.php:
|
706 |
#: controls/ooohboi-videomasq.php:107
|
707 |
msgid "Custom"
|
708 |
msgstr ""
|
@@ -721,8 +746,9 @@ msgid ""
|
|
721 |
"event. Animation panel is available under the Advanced tab, per widget!"
|
722 |
msgstr ""
|
723 |
|
724 |
-
#: controls/ooohboi-hover-animator.php:88 controls/ooohboi-
|
725 |
-
#: controls/ooohboi-
|
|
|
726 |
msgid "Content Overflow"
|
727 |
msgstr ""
|
728 |
|
@@ -732,13 +758,15 @@ msgid ""
|
|
732 |
"HIDDEN - hides everything outside this Column boundaries."
|
733 |
msgstr ""
|
734 |
|
735 |
-
#: controls/ooohboi-hover-animator.php:94 controls/ooohboi-
|
736 |
-
#: controls/ooohboi-
|
|
|
737 |
msgid "Visible"
|
738 |
msgstr ""
|
739 |
|
740 |
-
#: controls/ooohboi-hover-animator.php:95 controls/ooohboi-
|
741 |
-
#: controls/ooohboi-
|
|
|
742 |
msgid "Hidden"
|
743 |
msgstr ""
|
744 |
|
@@ -754,7 +782,7 @@ msgstr ""
|
|
754 |
|
755 |
#: controls/ooohboi-hover-animator.php:157
|
756 |
#: controls/ooohboi-overlay-underlay.php:94
|
757 |
-
#: controls/ooohboi-overlay-underlay.php:
|
758 |
msgid "Opacity"
|
759 |
msgstr ""
|
760 |
|
@@ -816,7 +844,7 @@ msgstr ""
|
|
816 |
|
817 |
#: controls/ooohboi-hover-animator.php:298
|
818 |
#: controls/ooohboi-overlay-underlay.php:284
|
819 |
-
#: controls/ooohboi-overlay-underlay.php:
|
820 |
msgid "Offset Top"
|
821 |
msgstr ""
|
822 |
|
@@ -830,7 +858,7 @@ msgstr ""
|
|
830 |
|
831 |
#: controls/ooohboi-hover-animator.php:450
|
832 |
#: controls/ooohboi-overlay-underlay.php:341
|
833 |
-
#: controls/ooohboi-overlay-underlay.php:
|
834 |
msgid "Offset Left"
|
835 |
msgstr ""
|
836 |
|
@@ -883,6 +911,79 @@ msgstr ""
|
|
883 |
msgid "Blur Hover"
|
884 |
msgstr ""
|
885 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
886 |
#: controls/ooohboi-kontrolz.php:183
|
887 |
msgid "NOTE: It works only with the pagination style set to Dots!"
|
888 |
msgstr ""
|
@@ -892,7 +993,7 @@ msgid "Enable Overlaiz?"
|
|
892 |
msgstr ""
|
893 |
|
894 |
#: controls/ooohboi-overlaiz.php:126 controls/ooohboi-overlay-underlay.php:212
|
895 |
-
#: controls/ooohboi-overlay-underlay.php:
|
896 |
msgid "Calc Width"
|
897 |
msgstr ""
|
898 |
|
@@ -900,14 +1001,14 @@ msgstr ""
|
|
900 |
#: controls/ooohboi-overlaiz.php:261 controls/ooohboi-overlaiz.php:328
|
901 |
#: controls/ooohboi-overlay-underlay.php:213
|
902 |
#: controls/ooohboi-overlay-underlay.php:327
|
903 |
-
#: controls/ooohboi-overlay-underlay.php:
|
904 |
-
#: controls/ooohboi-overlay-underlay.php:
|
905 |
-
#: controls/ooohboi-overlay-underlay.php:
|
906 |
msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
|
907 |
msgstr ""
|
908 |
|
909 |
#: controls/ooohboi-overlaiz.php:193 controls/ooohboi-overlay-underlay.php:269
|
910 |
-
#: controls/ooohboi-overlay-underlay.php:
|
911 |
msgid "Calc Height"
|
912 |
msgstr ""
|
913 |
|
@@ -931,17 +1032,11 @@ msgstr ""
|
|
931 |
msgid "Rotation"
|
932 |
msgstr ""
|
933 |
|
934 |
-
#: controls/ooohboi-overlaiz.php:445 controls/ooohboi-
|
|
|
935 |
msgid "Clip path"
|
936 |
msgstr ""
|
937 |
|
938 |
-
#: controls/ooohboi-overlaiz.php:461 controls/ooohboi-photomorph.php:89
|
939 |
-
#: controls/ooohboi-photomorph.php:119 controls/ooohboi-spacerat.php:496
|
940 |
-
#, php-format
|
941 |
-
msgid ""
|
942 |
-
"Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
|
943 |
-
msgstr ""
|
944 |
-
|
945 |
#: controls/ooohboi-overlaiz.php:484
|
946 |
msgid "Mask"
|
947 |
msgstr ""
|
@@ -954,12 +1049,12 @@ msgid ""
|
|
954 |
msgstr ""
|
955 |
|
956 |
#: controls/ooohboi-overlaiz.php:503 controls/ooohboi-overlay-underlay.php:488
|
957 |
-
#: controls/ooohboi-overlay-underlay.php:
|
958 |
msgid "Choose Image Mask"
|
959 |
msgstr ""
|
960 |
|
961 |
#: controls/ooohboi-overlaiz.php:504 controls/ooohboi-overlay-underlay.php:489
|
962 |
-
#: controls/ooohboi-overlay-underlay.php:
|
963 |
#, php-format
|
964 |
msgid ""
|
965 |
"NOTE: Image Mask should be black-and-transparent SVG file! Anything that’s "
|
@@ -968,115 +1063,115 @@ msgid ""
|
|
968 |
msgstr ""
|
969 |
|
970 |
#: controls/ooohboi-overlaiz.php:523 controls/ooohboi-overlay-underlay.php:506
|
971 |
-
#: controls/ooohboi-overlay-underlay.php:
|
972 |
#: controls/ooohboi-videomasq.php:71
|
973 |
msgid "Mask position"
|
974 |
msgstr ""
|
975 |
|
976 |
#: controls/ooohboi-overlaiz.php:528 controls/ooohboi-overlay-underlay.php:511
|
977 |
-
#: controls/ooohboi-overlay-underlay.php:
|
978 |
#: controls/ooohboi-videomasq.php:76
|
979 |
msgid "Center Center"
|
980 |
msgstr ""
|
981 |
|
982 |
#: controls/ooohboi-overlaiz.php:529 controls/ooohboi-overlay-underlay.php:512
|
983 |
-
#: controls/ooohboi-overlay-underlay.php:
|
984 |
#: controls/ooohboi-videomasq.php:77
|
985 |
msgid "Center Left"
|
986 |
msgstr ""
|
987 |
|
988 |
#: controls/ooohboi-overlaiz.php:530 controls/ooohboi-overlay-underlay.php:513
|
989 |
-
#: controls/ooohboi-overlay-underlay.php:
|
990 |
#: controls/ooohboi-videomasq.php:78
|
991 |
msgid "Center Right"
|
992 |
msgstr ""
|
993 |
|
994 |
#: controls/ooohboi-overlaiz.php:531 controls/ooohboi-overlay-underlay.php:514
|
995 |
-
#: controls/ooohboi-overlay-underlay.php:
|
996 |
#: controls/ooohboi-videomasq.php:79
|
997 |
msgid "Top Center"
|
998 |
msgstr ""
|
999 |
|
1000 |
#: controls/ooohboi-overlaiz.php:532 controls/ooohboi-overlay-underlay.php:515
|
1001 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1002 |
#: controls/ooohboi-videomasq.php:80
|
1003 |
msgid "Top Left"
|
1004 |
msgstr ""
|
1005 |
|
1006 |
#: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:516
|
1007 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1008 |
#: controls/ooohboi-videomasq.php:81
|
1009 |
msgid "Top Right"
|
1010 |
msgstr ""
|
1011 |
|
1012 |
#: controls/ooohboi-overlaiz.php:534 controls/ooohboi-overlay-underlay.php:517
|
1013 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1014 |
#: controls/ooohboi-videomasq.php:82
|
1015 |
msgid "Bottom Center"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
#: controls/ooohboi-overlaiz.php:535 controls/ooohboi-overlay-underlay.php:518
|
1019 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1020 |
#: controls/ooohboi-videomasq.php:83
|
1021 |
msgid "Bottom Left"
|
1022 |
msgstr ""
|
1023 |
|
1024 |
#: controls/ooohboi-overlaiz.php:536 controls/ooohboi-overlay-underlay.php:519
|
1025 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1026 |
#: controls/ooohboi-videomasq.php:84
|
1027 |
msgid "Bottom Right"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
#: controls/ooohboi-overlaiz.php:553 controls/ooohboi-overlay-underlay.php:534
|
1031 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1032 |
#: controls/ooohboi-videomasq.php:99
|
1033 |
msgid "Mask size"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
#: controls/ooohboi-overlaiz.php:559 controls/ooohboi-overlay-underlay.php:540
|
1037 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1038 |
#: controls/ooohboi-videomasq.php:105
|
1039 |
msgid "Cover"
|
1040 |
msgstr ""
|
1041 |
|
1042 |
#: controls/ooohboi-overlaiz.php:560 controls/ooohboi-overlay-underlay.php:541
|
1043 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1044 |
#: controls/ooohboi-videomasq.php:106
|
1045 |
msgid "Contain"
|
1046 |
msgstr ""
|
1047 |
|
1048 |
#: controls/ooohboi-overlaiz.php:635 controls/ooohboi-overlay-underlay.php:606
|
1049 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1050 |
#: controls/ooohboi-videomasq.php:171
|
1051 |
msgid "Mask repeat"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: controls/ooohboi-overlaiz.php:639 controls/ooohboi-overlay-underlay.php:610
|
1055 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1056 |
#: controls/ooohboi-videomasq.php:175
|
1057 |
msgid "No-repeat"
|
1058 |
msgstr ""
|
1059 |
|
1060 |
#: controls/ooohboi-overlaiz.php:640 controls/ooohboi-overlay-underlay.php:611
|
1061 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1062 |
#: controls/ooohboi-videomasq.php:176
|
1063 |
msgid "Repeat"
|
1064 |
msgstr ""
|
1065 |
|
1066 |
#: controls/ooohboi-overlaiz.php:641 controls/ooohboi-overlay-underlay.php:612
|
1067 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1068 |
#: controls/ooohboi-videomasq.php:177
|
1069 |
msgid "Repeat-x"
|
1070 |
msgstr ""
|
1071 |
|
1072 |
#: controls/ooohboi-overlaiz.php:642 controls/ooohboi-overlay-underlay.php:613
|
1073 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1074 |
#: controls/ooohboi-videomasq.php:178
|
1075 |
msgid "Repeat-y"
|
1076 |
msgstr ""
|
1077 |
|
1078 |
-
#: controls/ooohboi-overlaiz.php:662 controls/ooohboi-overlay-underlay.php:
|
1079 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1080 |
msgid "Z-Index"
|
1081 |
msgstr ""
|
1082 |
|
@@ -1085,33 +1180,33 @@ msgid "Overlay"
|
|
1085 |
msgstr ""
|
1086 |
|
1087 |
#: controls/ooohboi-overlay-underlay.php:128
|
1088 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1089 |
msgid "Blend Mode"
|
1090 |
msgstr ""
|
1091 |
|
1092 |
#: controls/ooohboi-overlay-underlay.php:154
|
1093 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1094 |
msgid "Position and Size"
|
1095 |
msgstr ""
|
1096 |
|
1097 |
#: controls/ooohboi-overlay-underlay.php:270
|
1098 |
#: controls/ooohboi-overlay-underlay.php:384
|
1099 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1100 |
msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
|
1101 |
msgstr ""
|
1102 |
|
1103 |
#: controls/ooohboi-overlay-underlay.php:326
|
1104 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1105 |
msgid "Calc Offset Top"
|
1106 |
msgstr ""
|
1107 |
|
1108 |
#: controls/ooohboi-overlay-underlay.php:383
|
1109 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1110 |
msgid "Calc Offset Left"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: controls/ooohboi-overlay-underlay.php:399
|
1114 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1115 |
msgid "Rotate"
|
1116 |
msgstr ""
|
1117 |
|
@@ -1119,61 +1214,61 @@ msgstr ""
|
|
1119 |
msgid "Overlay Mask"
|
1120 |
msgstr ""
|
1121 |
|
1122 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1123 |
msgid "Underlay"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1127 |
msgid "Underlay Mask"
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1131 |
msgid "Get rid of the Horizontal scroller?"
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1135 |
msgid ""
|
1136 |
"OoohBoi POOOPART may cause Horizontal Scroller to show up. This is how you "
|
1137 |
"can remove it."
|
1138 |
msgstr ""
|
1139 |
|
1140 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1141 |
msgid "Baseline Grid"
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1145 |
msgid "Baseline grid helps you maintain accuracy and consistency"
|
1146 |
msgstr ""
|
1147 |
|
1148 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1149 |
msgid "Grid style"
|
1150 |
msgstr ""
|
1151 |
|
1152 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1153 |
msgid "Squares"
|
1154 |
msgstr ""
|
1155 |
|
1156 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1157 |
msgid "Vertical lines"
|
1158 |
msgstr ""
|
1159 |
|
1160 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1161 |
msgid "Horizontal lines"
|
1162 |
msgstr ""
|
1163 |
|
1164 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1165 |
msgid "Grid color"
|
1166 |
msgstr ""
|
1167 |
|
1168 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1169 |
msgid "Grid size"
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1173 |
msgid "Vertical Spacing"
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: controls/ooohboi-overlay-underlay.php:
|
1177 |
msgid "Horizontal Spacing"
|
1178 |
msgstr ""
|
1179 |
|
@@ -1444,6 +1539,10 @@ msgstr ""
|
|
1444 |
msgid "Widget width"
|
1445 |
msgstr ""
|
1446 |
|
|
|
|
|
|
|
|
|
1447 |
#: controls/ooohboi-widget-stalker.php:190
|
1448 |
msgid "Align this widget vertically"
|
1449 |
msgstr ""
|
@@ -1553,18 +1652,22 @@ msgid "%sImage Box widget extra controls"
|
|
1553 |
msgstr ""
|
1554 |
|
1555 |
#: inc/common-functions.php:121
|
|
|
|
|
|
|
|
|
1556 |
#, php-format
|
1557 |
msgid "%sAnimate widgets on columns mouse-over event"
|
1558 |
msgstr ""
|
1559 |
|
1560 |
-
#: inc/common-functions.php:
|
1561 |
#, php-format
|
1562 |
msgid ""
|
1563 |
"%sAllows you to additionaly style Image Carousel and Media Carousel controls"
|
1564 |
"%s"
|
1565 |
msgstr ""
|
1566 |
|
1567 |
-
#: inc/common-functions.php:
|
1568 |
#, php-format
|
1569 |
msgid "%sStack widgets like flex elements%s"
|
1570 |
msgstr ""
|
3 |
msgstr ""
|
4 |
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
5 |
"Project-Id-Version: OoohBoi Steroids for Elementor\n"
|
6 |
+
"POT-Creation-Date: 2021-03-21 12:02+0100\n"
|
7 |
+
"PO-Revision-Date: 2021-03-21 12:02+0100\n"
|
8 |
"Last-Translator: \n"
|
9 |
"Language-Team: \n"
|
10 |
"MIME-Version: 1.0\n"
|
32 |
msgstr ""
|
33 |
|
34 |
#: controls/ooohboi-breaking-bad.php:91 controls/ooohboi-breaking-bad.php:173
|
35 |
+
#: controls/ooohboi-breaking-bad.php:480 controls/ooohboi-breaking-bad.php:519
|
36 |
#: controls/ooohboi-butter-button.php:71 controls/ooohboi-commentz.php:71
|
37 |
#: controls/ooohboi-glider.php:68 controls/ooohboi-glider.php:83
|
38 |
#: controls/ooohboi-glider.php:134 controls/ooohboi-glider.php:359
|
39 |
#: controls/ooohboi-glider.php:515 controls/ooohboi-glider.php:555
|
40 |
#: controls/ooohboi-glider.php:590 controls/ooohboi-glider.php:608
|
41 |
#: controls/ooohboi-harakiri.php:81 controls/ooohboi-hover-animator.php:68
|
42 |
+
#: controls/ooohboi-hover-animator.php:145 controls/ooohboi-icobox.php:96
|
43 |
+
#: controls/ooohboi-icobox.php:186 controls/ooohboi-imbox.php:97
|
44 |
+
#: controls/ooohboi-imbox.php:232 controls/ooohboi-overlaiz.php:61
|
45 |
+
#: controls/ooohboi-overlay-underlay.php:1258
|
46 |
+
#: controls/ooohboi-overlay-underlay.php:1277 controls/ooohboi-paginini.php:220
|
47 |
#: controls/ooohboi-perspektive.php:74 controls/ooohboi-photomorph.php:66
|
48 |
#: controls/ooohboi-photomorph.php:142 controls/ooohboi-shadough.php:50
|
49 |
#: controls/ooohboi-spacerat.php:69 controls/ooohboi-spacerat.php:339
|
52 |
msgstr ""
|
53 |
|
54 |
#: controls/ooohboi-breaking-bad.php:92 controls/ooohboi-breaking-bad.php:174
|
55 |
+
#: controls/ooohboi-breaking-bad.php:481 controls/ooohboi-breaking-bad.php:520
|
56 |
#: controls/ooohboi-butter-button.php:72 controls/ooohboi-commentz.php:72
|
57 |
#: controls/ooohboi-glider.php:69 controls/ooohboi-glider.php:84
|
58 |
#: controls/ooohboi-glider.php:135 controls/ooohboi-glider.php:360
|
59 |
#: controls/ooohboi-glider.php:516 controls/ooohboi-glider.php:556
|
60 |
#: controls/ooohboi-glider.php:591 controls/ooohboi-glider.php:609
|
61 |
#: controls/ooohboi-harakiri.php:82 controls/ooohboi-hover-animator.php:69
|
62 |
+
#: controls/ooohboi-hover-animator.php:146 controls/ooohboi-icobox.php:97
|
63 |
+
#: controls/ooohboi-icobox.php:187 controls/ooohboi-imbox.php:98
|
64 |
+
#: controls/ooohboi-imbox.php:233 controls/ooohboi-overlaiz.php:62
|
65 |
+
#: controls/ooohboi-overlay-underlay.php:1259
|
66 |
+
#: controls/ooohboi-overlay-underlay.php:1278 controls/ooohboi-paginini.php:221
|
67 |
#: controls/ooohboi-perspektive.php:75 controls/ooohboi-photomorph.php:67
|
68 |
#: controls/ooohboi-photomorph.php:143 controls/ooohboi-shadough.php:51
|
69 |
#: controls/ooohboi-spacerat.php:70 controls/ooohboi-spacerat.php:340
|
76 |
msgstr ""
|
77 |
|
78 |
#: controls/ooohboi-breaking-bad.php:106 controls/ooohboi-breaking-bad.php:152
|
79 |
+
#: controls/ooohboi-breaking-bad.php:335 controls/ooohboi-breaking-bad.php:464
|
80 |
+
#: controls/ooohboi-breaking-bad.php:554 controls/ooohboi-breaking-bad.php:578
|
81 |
msgid "Start"
|
82 |
msgstr ""
|
83 |
|
84 |
#: controls/ooohboi-breaking-bad.php:107 controls/ooohboi-breaking-bad.php:153
|
85 |
+
#: controls/ooohboi-breaking-bad.php:313 controls/ooohboi-breaking-bad.php:336
|
86 |
+
#: controls/ooohboi-breaking-bad.php:465 controls/ooohboi-breaking-bad.php:555
|
87 |
+
#: controls/ooohboi-breaking-bad.php:579 controls/ooohboi-commentz.php:134
|
88 |
#: controls/ooohboi-commentz.php:654 controls/ooohboi-widget-stalker.php:196
|
89 |
msgid "Center"
|
90 |
msgstr ""
|
91 |
|
92 |
#: controls/ooohboi-breaking-bad.php:108 controls/ooohboi-breaking-bad.php:154
|
93 |
+
#: controls/ooohboi-breaking-bad.php:314 controls/ooohboi-breaking-bad.php:337
|
94 |
+
#: controls/ooohboi-breaking-bad.php:466 controls/ooohboi-breaking-bad.php:556
|
95 |
+
#: controls/ooohboi-breaking-bad.php:580
|
96 |
#: controls/ooohboi-widget-stalker.php:197
|
97 |
msgid "End"
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: controls/ooohboi-breaking-bad.php:109 controls/ooohboi-breaking-bad.php:557
|
101 |
msgid "Space Between"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: controls/ooohboi-breaking-bad.php:110 controls/ooohboi-breaking-bad.php:558
|
105 |
msgid "Space Around"
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: controls/ooohboi-breaking-bad.php:111 controls/ooohboi-breaking-bad.php:559
|
109 |
msgid "Space Evenly"
|
110 |
msgstr ""
|
111 |
|
113 |
msgid "Columns Direction"
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: controls/ooohboi-breaking-bad.php:130 controls/ooohboi-breaking-bad.php:534
|
117 |
msgid "Row"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: controls/ooohboi-breaking-bad.php:131 controls/ooohboi-breaking-bad.php:535
|
121 |
msgid "Column"
|
122 |
msgstr ""
|
123 |
|
156 |
#: controls/ooohboi-breaking-bad.php:247 controls/ooohboi-overlaiz.php:75
|
157 |
#: controls/ooohboi-overlaiz.php:578 controls/ooohboi-overlay-underlay.php:170
|
158 |
#: controls/ooohboi-overlay-underlay.php:557
|
159 |
+
#: controls/ooohboi-overlay-underlay.php:766
|
160 |
+
#: controls/ooohboi-overlay-underlay.php:1132 controls/ooohboi-spacerat.php:238
|
161 |
#: controls/ooohboi-videomasq.php:122
|
162 |
msgid "Width"
|
163 |
msgstr ""
|
164 |
|
165 |
#: controls/ooohboi-breaking-bad.php:253 controls/ooohboi-breaking-bad.php:292
|
166 |
+
#: controls/ooohboi-breaking-bad.php:404 controls/ooohboi-teleporter.php:137
|
167 |
#: controls/ooohboi-teleporter.php:155 controls/ooohboi-teleporter.php:186
|
168 |
#: controls/ooohboi-teleporter.php:203 controls/ooohboi-widget-stalker.php:138
|
169 |
#: controls/ooohboi-widget-stalker.php:176
|
172 |
"calc(100% - 300px)."
|
173 |
msgstr ""
|
174 |
|
175 |
+
#: controls/ooohboi-breaking-bad.php:287 controls/ooohboi-breaking-bad.php:400
|
176 |
#: controls/ooohboi-widget-stalker.php:172
|
177 |
msgid "Max Width"
|
178 |
msgstr ""
|
179 |
|
180 |
#: controls/ooohboi-breaking-bad.php:305
|
181 |
+
msgid "Align self Vertically"
|
|
|
182 |
msgstr ""
|
183 |
|
184 |
#: controls/ooohboi-breaking-bad.php:306
|
185 |
+
msgid ""
|
186 |
+
"Align this Inner Section vertically (when the wrapper element widgets "
|
187 |
+
"direction is Row or Inherit)."
|
188 |
msgstr ""
|
189 |
|
190 |
#: controls/ooohboi-breaking-bad.php:311 controls/ooohboi-overlaiz.php:558
|
191 |
#: controls/ooohboi-overlay-underlay.php:539
|
192 |
+
#: controls/ooohboi-overlay-underlay.php:1115 controls/ooohboi-spacerat.php:220
|
193 |
#: controls/ooohboi-videomasq.php:104 controls/ooohboi-widget-stalker.php:194
|
194 |
msgid "Auto"
|
195 |
msgstr ""
|
200 |
msgstr ""
|
201 |
|
202 |
#: controls/ooohboi-breaking-bad.php:328
|
203 |
+
msgid "Align self Horizontally"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: controls/ooohboi-breaking-bad.php:329
|
207 |
+
msgid ""
|
208 |
+
"Align this Inner Section horizontally (when the wrapper element widgets "
|
209 |
+
"direction is Column)."
|
210 |
+
msgstr ""
|
211 |
+
|
212 |
+
#: controls/ooohboi-breaking-bad.php:334 controls/ooohboi-breaking-bad.php:463
|
213 |
+
msgid "Inherit"
|
214 |
+
msgstr ""
|
215 |
+
|
216 |
+
#: controls/ooohboi-breaking-bad.php:351
|
217 |
msgid "Stacking Order"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: controls/ooohboi-breaking-bad.php:353 controls/ooohboi-breaking-bad.php:442
|
221 |
#: controls/ooohboi-widget-stalker.php:213
|
222 |
#, php-format
|
223 |
msgid "More info at %sMozilla%s."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: controls/ooohboi-breaking-bad.php:386
|
227 |
msgid "Custom Width"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: controls/ooohboi-breaking-bad.php:390
|
231 |
msgid ""
|
232 |
"You can enter any acceptable CSS value, for example: 50em, 300px, 100%, "
|
233 |
"calc(100% - 300px). NOTE: If you want to make the columns wrap, Enable "
|
234 |
"Breaking Bad for this Column parent SECTION!"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: controls/ooohboi-breaking-bad.php:414 controls/ooohboi-harakiri.php:142
|
238 |
msgid "Custom Height"
|
239 |
msgstr ""
|
240 |
|
241 |
+
#: controls/ooohboi-breaking-bad.php:440
|
242 |
+
msgid "Column Order"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: controls/ooohboi-breaking-bad.php:458 controls/ooohboi-breaking-bad.php:574
|
246 |
+
msgid "Align vertically"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: controls/ooohboi-breaking-bad.php:459
|
250 |
+
msgid "Defines the vertical alignmnet of this column only!"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: controls/ooohboi-breaking-bad.php:477
|
254 |
msgid "Scrollable Column?"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: controls/ooohboi-breaking-bad.php:505
|
258 |
#, php-format
|
259 |
msgid "Widget Stalker%sNEW!%s"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: controls/ooohboi-breaking-bad.php:515 controls/ooohboi-widget-stalker.php:63
|
263 |
msgid "Enable Widget Stalker?"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: controls/ooohboi-breaking-bad.php:516
|
267 |
msgid ""
|
268 |
"NOTE: It changes the default alignment of widgets inside this column - "
|
269 |
"including the Ineer Section widget."
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: controls/ooohboi-breaking-bad.php:530
|
273 |
msgid "Widgets Direction"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: controls/ooohboi-breaking-bad.php:550
|
277 |
+
msgid "Align Widgets"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgstr ""
|
279 |
|
280 |
#: controls/ooohboi-butter-button.php:68
|
299 |
|
300 |
#: controls/ooohboi-butter-button.php:158 controls/ooohboi-commentz.php:150
|
301 |
#: controls/ooohboi-commentz.php:734 controls/ooohboi-commentz.php:961
|
302 |
+
#: controls/ooohboi-glider.php:277 controls/ooohboi-kontrolz.php:107
|
303 |
+
#: controls/ooohboi-paginini.php:59
|
304 |
msgid "Padding"
|
305 |
msgstr ""
|
306 |
|
325 |
#: controls/ooohboi-overlaiz.php:368 controls/ooohboi-overlaiz.php:387
|
326 |
#: controls/ooohboi-overlay-underlay.php:426
|
327 |
#: controls/ooohboi-overlay-underlay.php:443
|
328 |
+
#: controls/ooohboi-overlay-underlay.php:1003
|
329 |
+
#: controls/ooohboi-overlay-underlay.php:1020 controls/ooohboi-paginini.php:146
|
330 |
#: controls/ooohboi-paginini.php:195
|
331 |
msgid "Border"
|
332 |
msgstr ""
|
338 |
#: controls/ooohboi-glider.php:472 controls/ooohboi-kontrolz.php:95
|
339 |
#: controls/ooohboi-kontrolz.php:207 controls/ooohboi-overlaiz.php:399
|
340 |
#: controls/ooohboi-overlay-underlay.php:454
|
341 |
+
#: controls/ooohboi-overlay-underlay.php:1031 controls/ooohboi-paginini.php:154
|
342 |
#: controls/ooohboi-paginini.php:203
|
343 |
msgid "Border Radius"
|
344 |
msgstr ""
|
345 |
|
346 |
#: controls/ooohboi-butter-button.php:264
|
347 |
+
#: controls/ooohboi-butter-button.php:377 controls/ooohboi-icobox.php:55
|
348 |
+
#: controls/ooohboi-imbox.php:55 controls/ooohboi-overlaiz.php:419
|
349 |
msgid "Box Shadow"
|
350 |
msgstr ""
|
351 |
|
691 |
msgstr ""
|
692 |
|
693 |
#: controls/ooohboi-harakiri.php:67 controls/ooohboi-overlay-underlay.php:131
|
694 |
+
#: controls/ooohboi-overlay-underlay.php:727 controls/ooohboi-photomorph.php:81
|
695 |
#: controls/ooohboi-teleporter.php:129
|
696 |
msgid "Normal"
|
697 |
msgstr ""
|
702 |
|
703 |
#: controls/ooohboi-harakiri.php:118 controls/ooohboi-overlaiz.php:142
|
704 |
#: controls/ooohboi-overlay-underlay.php:227
|
705 |
+
#: controls/ooohboi-overlay-underlay.php:819
|
706 |
msgid "Height"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: controls/ooohboi-harakiri.php:122 controls/ooohboi-hover-animator.php:276
|
710 |
+
#: controls/ooohboi-hover-animator.php:428
|
711 |
+
#: controls/ooohboi-hover-animator.php:580
|
712 |
+
#: controls/ooohboi-hover-animator.php:815
|
713 |
+
#: controls/ooohboi-hover-animator.php:971 controls/ooohboi-overlaiz.php:527
|
714 |
+
#: controls/ooohboi-overlaiz.php:557 controls/ooohboi-overlay-underlay.php:510
|
715 |
+
#: controls/ooohboi-overlay-underlay.php:538
|
716 |
+
#: controls/ooohboi-overlay-underlay.php:1087
|
717 |
+
#: controls/ooohboi-overlay-underlay.php:1114
|
718 |
+
#: controls/ooohboi-photomorph.php:189 controls/ooohboi-spacerat.php:191
|
719 |
+
#: controls/ooohboi-spacerat.php:219 controls/ooohboi-videomasq.php:75
|
720 |
+
#: controls/ooohboi-videomasq.php:103
|
721 |
+
msgid "Default"
|
722 |
+
msgstr ""
|
723 |
+
|
724 |
#: controls/ooohboi-harakiri.php:123
|
725 |
msgid "Inline"
|
726 |
msgstr ""
|
727 |
|
728 |
#: controls/ooohboi-harakiri.php:124 controls/ooohboi-overlaiz.php:561
|
729 |
#: controls/ooohboi-overlay-underlay.php:542
|
730 |
+
#: controls/ooohboi-overlay-underlay.php:1118 controls/ooohboi-spacerat.php:223
|
731 |
#: controls/ooohboi-videomasq.php:107
|
732 |
msgid "Custom"
|
733 |
msgstr ""
|
746 |
"event. Animation panel is available under the Advanced tab, per widget!"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: controls/ooohboi-hover-animator.php:88 controls/ooohboi-icobox.php:75
|
750 |
+
#: controls/ooohboi-imbox.php:75 controls/ooohboi-perspektive.php:225
|
751 |
+
#: controls/ooohboi-teleporter.php:361
|
752 |
msgid "Content Overflow"
|
753 |
msgstr ""
|
754 |
|
758 |
"HIDDEN - hides everything outside this Column boundaries."
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: controls/ooohboi-hover-animator.php:94 controls/ooohboi-icobox.php:80
|
762 |
+
#: controls/ooohboi-imbox.php:80 controls/ooohboi-perspektive.php:231
|
763 |
+
#: controls/ooohboi-teleporter.php:367
|
764 |
msgid "Visible"
|
765 |
msgstr ""
|
766 |
|
767 |
+
#: controls/ooohboi-hover-animator.php:95 controls/ooohboi-icobox.php:81
|
768 |
+
#: controls/ooohboi-imbox.php:81 controls/ooohboi-perspektive.php:232
|
769 |
+
#: controls/ooohboi-teleporter.php:368
|
770 |
msgid "Hidden"
|
771 |
msgstr ""
|
772 |
|
782 |
|
783 |
#: controls/ooohboi-hover-animator.php:157
|
784 |
#: controls/ooohboi-overlay-underlay.php:94
|
785 |
+
#: controls/ooohboi-overlay-underlay.php:690
|
786 |
msgid "Opacity"
|
787 |
msgstr ""
|
788 |
|
844 |
|
845 |
#: controls/ooohboi-hover-animator.php:298
|
846 |
#: controls/ooohboi-overlay-underlay.php:284
|
847 |
+
#: controls/ooohboi-overlay-underlay.php:872
|
848 |
msgid "Offset Top"
|
849 |
msgstr ""
|
850 |
|
858 |
|
859 |
#: controls/ooohboi-hover-animator.php:450
|
860 |
#: controls/ooohboi-overlay-underlay.php:341
|
861 |
+
#: controls/ooohboi-overlay-underlay.php:925
|
862 |
msgid "Offset Left"
|
863 |
msgstr ""
|
864 |
|
911 |
msgid "Blur Hover"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: controls/ooohboi-icobox.php:92 controls/ooohboi-icobox.php:182
|
915 |
+
#: controls/ooohboi-imbox.php:93 controls/ooohboi-imbox.php:228
|
916 |
+
msgid "Overrides"
|
917 |
+
msgstr ""
|
918 |
+
|
919 |
+
#: controls/ooohboi-icobox.php:93 controls/ooohboi-imbox.php:94
|
920 |
+
msgid "Allow more basic controls?"
|
921 |
+
msgstr ""
|
922 |
+
|
923 |
+
#: controls/ooohboi-icobox.php:106
|
924 |
+
msgid "Icon Padding"
|
925 |
+
msgstr ""
|
926 |
+
|
927 |
+
#: controls/ooohboi-icobox.php:122
|
928 |
+
msgid "Icon Margin"
|
929 |
+
msgstr ""
|
930 |
+
|
931 |
+
#: controls/ooohboi-icobox.php:168 controls/ooohboi-imbox.php:214
|
932 |
+
msgid "Box Padding"
|
933 |
+
msgstr ""
|
934 |
+
|
935 |
+
#: controls/ooohboi-icobox.php:183 controls/ooohboi-imbox.php:229
|
936 |
+
msgid "Allow separate controls for Title and Description?"
|
937 |
+
msgstr ""
|
938 |
+
|
939 |
+
#: controls/ooohboi-icobox.php:197 controls/ooohboi-imbox.php:243
|
940 |
+
msgid "Title Padding"
|
941 |
+
msgstr ""
|
942 |
+
|
943 |
+
#: controls/ooohboi-icobox.php:213 controls/ooohboi-imbox.php:259
|
944 |
+
msgid "Title Margin"
|
945 |
+
msgstr ""
|
946 |
+
|
947 |
+
#: controls/ooohboi-icobox.php:228 controls/ooohboi-imbox.php:275
|
948 |
+
msgid "Description Padding"
|
949 |
+
msgstr ""
|
950 |
+
|
951 |
+
#: controls/ooohboi-icobox.php:244 controls/ooohboi-imbox.php:291
|
952 |
+
msgid "Description Margin"
|
953 |
+
msgstr ""
|
954 |
+
|
955 |
+
#: controls/ooohboi-imbox.php:107
|
956 |
+
msgid "Image Padding"
|
957 |
+
msgstr ""
|
958 |
+
|
959 |
+
#: controls/ooohboi-imbox.php:123
|
960 |
+
msgid "Image Margin"
|
961 |
+
msgstr ""
|
962 |
+
|
963 |
+
#: controls/ooohboi-imbox.php:138
|
964 |
+
msgid "Enable full-height?"
|
965 |
+
msgstr ""
|
966 |
+
|
967 |
+
#: controls/ooohboi-imbox.php:139
|
968 |
+
msgid ""
|
969 |
+
"That will make the photo full-height. Makes sense only if the photo is "
|
970 |
+
"placed left or the right-hand side!"
|
971 |
+
msgstr ""
|
972 |
+
|
973 |
+
#: controls/ooohboi-imbox.php:154
|
974 |
+
msgid "Image clip path"
|
975 |
+
msgstr ""
|
976 |
+
|
977 |
+
#: controls/ooohboi-imbox.php:156 controls/ooohboi-overlaiz.php:461
|
978 |
+
#: controls/ooohboi-overlay-underlay.php:633
|
979 |
+
#: controls/ooohboi-overlay-underlay.php:1206
|
980 |
+
#: controls/ooohboi-photomorph.php:89 controls/ooohboi-photomorph.php:119
|
981 |
+
#: controls/ooohboi-spacerat.php:496
|
982 |
+
#, php-format
|
983 |
+
msgid ""
|
984 |
+
"Enter the full clip-path property! See the copy-paste examples at %sClippy%s"
|
985 |
+
msgstr ""
|
986 |
+
|
987 |
#: controls/ooohboi-kontrolz.php:183
|
988 |
msgid "NOTE: It works only with the pagination style set to Dots!"
|
989 |
msgstr ""
|
993 |
msgstr ""
|
994 |
|
995 |
#: controls/ooohboi-overlaiz.php:126 controls/ooohboi-overlay-underlay.php:212
|
996 |
+
#: controls/ooohboi-overlay-underlay.php:807
|
997 |
msgid "Calc Width"
|
998 |
msgstr ""
|
999 |
|
1001 |
#: controls/ooohboi-overlaiz.php:261 controls/ooohboi-overlaiz.php:328
|
1002 |
#: controls/ooohboi-overlay-underlay.php:213
|
1003 |
#: controls/ooohboi-overlay-underlay.php:327
|
1004 |
+
#: controls/ooohboi-overlay-underlay.php:808
|
1005 |
+
#: controls/ooohboi-overlay-underlay.php:914
|
1006 |
+
#: controls/ooohboi-overlay-underlay.php:967
|
1007 |
msgid "Enter CSS calc value only! Like: 100% - 50px or 100% + 2em"
|
1008 |
msgstr ""
|
1009 |
|
1010 |
#: controls/ooohboi-overlaiz.php:193 controls/ooohboi-overlay-underlay.php:269
|
1011 |
+
#: controls/ooohboi-overlay-underlay.php:860
|
1012 |
msgid "Calc Height"
|
1013 |
msgstr ""
|
1014 |
|
1032 |
msgid "Rotation"
|
1033 |
msgstr ""
|
1034 |
|
1035 |
+
#: controls/ooohboi-overlaiz.php:445 controls/ooohboi-overlay-underlay.php:631
|
1036 |
+
#: controls/ooohboi-overlay-underlay.php:1204 controls/ooohboi-spacerat.php:494
|
1037 |
msgid "Clip path"
|
1038 |
msgstr ""
|
1039 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1040 |
#: controls/ooohboi-overlaiz.php:484
|
1041 |
msgid "Mask"
|
1042 |
msgstr ""
|
1049 |
msgstr ""
|
1050 |
|
1051 |
#: controls/ooohboi-overlaiz.php:503 controls/ooohboi-overlay-underlay.php:488
|
1052 |
+
#: controls/ooohboi-overlay-underlay.php:1065 controls/ooohboi-spacerat.php:169
|
1053 |
msgid "Choose Image Mask"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
#: controls/ooohboi-overlaiz.php:504 controls/ooohboi-overlay-underlay.php:489
|
1057 |
+
#: controls/ooohboi-overlay-underlay.php:1066 controls/ooohboi-spacerat.php:170
|
1058 |
#, php-format
|
1059 |
msgid ""
|
1060 |
"NOTE: Image Mask should be black-and-transparent SVG file! Anything that’s "
|
1063 |
msgstr ""
|
1064 |
|
1065 |
#: controls/ooohboi-overlaiz.php:523 controls/ooohboi-overlay-underlay.php:506
|
1066 |
+
#: controls/ooohboi-overlay-underlay.php:1083 controls/ooohboi-spacerat.php:187
|
1067 |
#: controls/ooohboi-videomasq.php:71
|
1068 |
msgid "Mask position"
|
1069 |
msgstr ""
|
1070 |
|
1071 |
#: controls/ooohboi-overlaiz.php:528 controls/ooohboi-overlay-underlay.php:511
|
1072 |
+
#: controls/ooohboi-overlay-underlay.php:1088 controls/ooohboi-spacerat.php:192
|
1073 |
#: controls/ooohboi-videomasq.php:76
|
1074 |
msgid "Center Center"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
#: controls/ooohboi-overlaiz.php:529 controls/ooohboi-overlay-underlay.php:512
|
1078 |
+
#: controls/ooohboi-overlay-underlay.php:1089 controls/ooohboi-spacerat.php:193
|
1079 |
#: controls/ooohboi-videomasq.php:77
|
1080 |
msgid "Center Left"
|
1081 |
msgstr ""
|
1082 |
|
1083 |
#: controls/ooohboi-overlaiz.php:530 controls/ooohboi-overlay-underlay.php:513
|
1084 |
+
#: controls/ooohboi-overlay-underlay.php:1090 controls/ooohboi-spacerat.php:194
|
1085 |
#: controls/ooohboi-videomasq.php:78
|
1086 |
msgid "Center Right"
|
1087 |
msgstr ""
|
1088 |
|
1089 |
#: controls/ooohboi-overlaiz.php:531 controls/ooohboi-overlay-underlay.php:514
|
1090 |
+
#: controls/ooohboi-overlay-underlay.php:1091 controls/ooohboi-spacerat.php:195
|
1091 |
#: controls/ooohboi-videomasq.php:79
|
1092 |
msgid "Top Center"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
#: controls/ooohboi-overlaiz.php:532 controls/ooohboi-overlay-underlay.php:515
|
1096 |
+
#: controls/ooohboi-overlay-underlay.php:1092 controls/ooohboi-spacerat.php:196
|
1097 |
#: controls/ooohboi-videomasq.php:80
|
1098 |
msgid "Top Left"
|
1099 |
msgstr ""
|
1100 |
|
1101 |
#: controls/ooohboi-overlaiz.php:533 controls/ooohboi-overlay-underlay.php:516
|
1102 |
+
#: controls/ooohboi-overlay-underlay.php:1093 controls/ooohboi-spacerat.php:197
|
1103 |
#: controls/ooohboi-videomasq.php:81
|
1104 |
msgid "Top Right"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
#: controls/ooohboi-overlaiz.php:534 controls/ooohboi-overlay-underlay.php:517
|
1108 |
+
#: controls/ooohboi-overlay-underlay.php:1094 controls/ooohboi-spacerat.php:198
|
1109 |
#: controls/ooohboi-videomasq.php:82
|
1110 |
msgid "Bottom Center"
|
1111 |
msgstr ""
|
1112 |
|
1113 |
#: controls/ooohboi-overlaiz.php:535 controls/ooohboi-overlay-underlay.php:518
|
1114 |
+
#: controls/ooohboi-overlay-underlay.php:1095 controls/ooohboi-spacerat.php:199
|
1115 |
#: controls/ooohboi-videomasq.php:83
|
1116 |
msgid "Bottom Left"
|
1117 |
msgstr ""
|
1118 |
|
1119 |
#: controls/ooohboi-overlaiz.php:536 controls/ooohboi-overlay-underlay.php:519
|
1120 |
+
#: controls/ooohboi-overlay-underlay.php:1096 controls/ooohboi-spacerat.php:200
|
1121 |
#: controls/ooohboi-videomasq.php:84
|
1122 |
msgid "Bottom Right"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
#: controls/ooohboi-overlaiz.php:553 controls/ooohboi-overlay-underlay.php:534
|
1126 |
+
#: controls/ooohboi-overlay-underlay.php:1110 controls/ooohboi-spacerat.php:215
|
1127 |
#: controls/ooohboi-videomasq.php:99
|
1128 |
msgid "Mask size"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
#: controls/ooohboi-overlaiz.php:559 controls/ooohboi-overlay-underlay.php:540
|
1132 |
+
#: controls/ooohboi-overlay-underlay.php:1116 controls/ooohboi-spacerat.php:221
|
1133 |
#: controls/ooohboi-videomasq.php:105
|
1134 |
msgid "Cover"
|
1135 |
msgstr ""
|
1136 |
|
1137 |
#: controls/ooohboi-overlaiz.php:560 controls/ooohboi-overlay-underlay.php:541
|
1138 |
+
#: controls/ooohboi-overlay-underlay.php:1117 controls/ooohboi-spacerat.php:222
|
1139 |
#: controls/ooohboi-videomasq.php:106
|
1140 |
msgid "Contain"
|
1141 |
msgstr ""
|
1142 |
|
1143 |
#: controls/ooohboi-overlaiz.php:635 controls/ooohboi-overlay-underlay.php:606
|
1144 |
+
#: controls/ooohboi-overlay-underlay.php:1180 controls/ooohboi-spacerat.php:289
|
1145 |
#: controls/ooohboi-videomasq.php:171
|
1146 |
msgid "Mask repeat"
|
1147 |
msgstr ""
|
1148 |
|
1149 |
#: controls/ooohboi-overlaiz.php:639 controls/ooohboi-overlay-underlay.php:610
|
1150 |
+
#: controls/ooohboi-overlay-underlay.php:1184 controls/ooohboi-spacerat.php:293
|
1151 |
#: controls/ooohboi-videomasq.php:175
|
1152 |
msgid "No-repeat"
|
1153 |
msgstr ""
|
1154 |
|
1155 |
#: controls/ooohboi-overlaiz.php:640 controls/ooohboi-overlay-underlay.php:611
|
1156 |
+
#: controls/ooohboi-overlay-underlay.php:1185 controls/ooohboi-spacerat.php:294
|
1157 |
#: controls/ooohboi-videomasq.php:176
|
1158 |
msgid "Repeat"
|
1159 |
msgstr ""
|
1160 |
|
1161 |
#: controls/ooohboi-overlaiz.php:641 controls/ooohboi-overlay-underlay.php:612
|
1162 |
+
#: controls/ooohboi-overlay-underlay.php:1186 controls/ooohboi-spacerat.php:295
|
1163 |
#: controls/ooohboi-videomasq.php:177
|
1164 |
msgid "Repeat-x"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
#: controls/ooohboi-overlaiz.php:642 controls/ooohboi-overlay-underlay.php:613
|
1168 |
+
#: controls/ooohboi-overlay-underlay.php:1187 controls/ooohboi-spacerat.php:296
|
1169 |
#: controls/ooohboi-videomasq.php:178
|
1170 |
msgid "Repeat-y"
|
1171 |
msgstr ""
|
1172 |
|
1173 |
+
#: controls/ooohboi-overlaiz.php:662 controls/ooohboi-overlay-underlay.php:653
|
1174 |
+
#: controls/ooohboi-overlay-underlay.php:1226
|
1175 |
msgid "Z-Index"
|
1176 |
msgstr ""
|
1177 |
|
1180 |
msgstr ""
|
1181 |
|
1182 |
#: controls/ooohboi-overlay-underlay.php:128
|
1183 |
+
#: controls/ooohboi-overlay-underlay.php:724
|
1184 |
msgid "Blend Mode"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
#: controls/ooohboi-overlay-underlay.php:154
|
1188 |
+
#: controls/ooohboi-overlay-underlay.php:750
|
1189 |
msgid "Position and Size"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
#: controls/ooohboi-overlay-underlay.php:270
|
1193 |
#: controls/ooohboi-overlay-underlay.php:384
|
1194 |
+
#: controls/ooohboi-overlay-underlay.php:861
|
1195 |
msgid "Enter CSS calc value only! Like: 45% + 85px or 100% - 3em"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
#: controls/ooohboi-overlay-underlay.php:326
|
1199 |
+
#: controls/ooohboi-overlay-underlay.php:913
|
1200 |
msgid "Calc Offset Top"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
#: controls/ooohboi-overlay-underlay.php:383
|
1204 |
+
#: controls/ooohboi-overlay-underlay.php:966
|
1205 |
msgid "Calc Offset Left"
|
1206 |
msgstr ""
|
1207 |
|
1208 |
#: controls/ooohboi-overlay-underlay.php:399
|
1209 |
+
#: controls/ooohboi-overlay-underlay.php:979
|
1210 |
msgid "Rotate"
|
1211 |
msgstr ""
|
1212 |
|
1214 |
msgid "Overlay Mask"
|
1215 |
msgstr ""
|
1216 |
|
1217 |
+
#: controls/ooohboi-overlay-underlay.php:674
|
1218 |
msgid "Underlay"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: controls/ooohboi-overlay-underlay.php:1049
|
1222 |
msgid "Underlay Mask"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
+
#: controls/ooohboi-overlay-underlay.php:1255
|
1226 |
msgid "Get rid of the Horizontal scroller?"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: controls/ooohboi-overlay-underlay.php:1256
|
1230 |
msgid ""
|
1231 |
"OoohBoi POOOPART may cause Horizontal Scroller to show up. This is how you "
|
1232 |
"can remove it."
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: controls/ooohboi-overlay-underlay.php:1274
|
1236 |
msgid "Baseline Grid"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: controls/ooohboi-overlay-underlay.php:1275
|
1240 |
msgid "Baseline grid helps you maintain accuracy and consistency"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: controls/ooohboi-overlay-underlay.php:1288
|
1244 |
msgid "Grid style"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
+
#: controls/ooohboi-overlay-underlay.php:1292
|
1248 |
msgid "Squares"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: controls/ooohboi-overlay-underlay.php:1293
|
1252 |
msgid "Vertical lines"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: controls/ooohboi-overlay-underlay.php:1294
|
1256 |
msgid "Horizontal lines"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: controls/ooohboi-overlay-underlay.php:1304
|
1260 |
msgid "Grid color"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: controls/ooohboi-overlay-underlay.php:1315
|
1264 |
msgid "Grid size"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: controls/ooohboi-overlay-underlay.php:1339
|
1268 |
msgid "Vertical Spacing"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: controls/ooohboi-overlay-underlay.php:1363
|
1272 |
msgid "Horizontal Spacing"
|
1273 |
msgstr ""
|
1274 |
|
1539 |
msgid "Widget width"
|
1540 |
msgstr ""
|
1541 |
|
1542 |
+
#: controls/ooohboi-widget-stalker.php:189
|
1543 |
+
msgid "Align self"
|
1544 |
+
msgstr ""
|
1545 |
+
|
1546 |
#: controls/ooohboi-widget-stalker.php:190
|
1547 |
msgid "Align this widget vertically"
|
1548 |
msgstr ""
|
1652 |
msgstr ""
|
1653 |
|
1654 |
#: inc/common-functions.php:121
|
1655 |
+
msgid "%Icon Box widget extra controls"
|
1656 |
+
msgstr ""
|
1657 |
+
|
1658 |
+
#: inc/common-functions.php:127
|
1659 |
#, php-format
|
1660 |
msgid "%sAnimate widgets on columns mouse-over event"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
+
#: inc/common-functions.php:133
|
1664 |
#, php-format
|
1665 |
msgid ""
|
1666 |
"%sAllows you to additionaly style Image Carousel and Media Carousel controls"
|
1667 |
"%s"
|
1668 |
msgstr ""
|
1669 |
|
1670 |
+
#: inc/common-functions.php:139
|
1671 |
#, php-format
|
1672 |
msgid "%sStack widgets like flex elements%s"
|
1673 |
msgstr ""
|
ooohboi-steroids.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: OoohBoi Steroids for Elementor
|
4 |
* Description: An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels.
|
5 |
-
* Version: 1.6.
|
6 |
* Author: OoohBoi
|
7 |
* Author URI: https://www.youtube.com/c/OoohBoi
|
8 |
* Text Domain: ooohboi-steroids
|
@@ -31,7 +31,7 @@ final class OoohBoi_Steroids {
|
|
31 |
*
|
32 |
* @var string The plugin version.
|
33 |
*/
|
34 |
-
const VERSION = '1.6.
|
35 |
|
36 |
/**
|
37 |
* Minimum Elementor Version
|
@@ -215,7 +215,8 @@ final class OoohBoi_Steroids {
|
|
215 |
OoohBoi_PhotoMorph::init(); // OoohBoi PhotoMorph
|
216 |
OoohBoi_Commentz::init(); // OoohBoi Commentz
|
217 |
OoohBoi_SpaceRat::init(); // OoohBoi SpaceRat
|
218 |
-
OoohBoi_Imbox::init(); // OoohBoi Imbox
|
|
|
219 |
OoohBoi_Hover_Animator::init(); // OoohBoi Hover Animator
|
220 |
OoohBoi_Kontrolz::init(); // OoohBoi Kontrolz
|
221 |
OoohBoi_Widget_Stalker::init(); // OoohBoi Widget Stalker
|
@@ -238,6 +239,7 @@ final class OoohBoi_Steroids {
|
|
238 |
if( FALSE === isset( $ob_settings_options[ 'commentz' ] ) || 'on' === $ob_settings_options[ 'commentz' ] ) OoohBoi_Commentz::init(); // OoohBoi Commentz
|
239 |
if( FALSE === isset( $ob_settings_options[ 'spacerat' ] ) || 'on' === $ob_settings_options[ 'spacerat' ] ) OoohBoi_SpaceRat::init(); // OoohBoi SpaceRat
|
240 |
if( FALSE === isset( $ob_settings_options[ 'imbox' ] ) || 'on' === $ob_settings_options[ 'imbox' ] ) OoohBoi_Imbox::init(); // OoohBoi Imbox
|
|
|
241 |
if( FALSE === isset( $ob_settings_options[ 'hover_animator' ] ) || 'on' === $ob_settings_options[ 'hover_animator' ] ) OoohBoi_Hover_Animator::init(); // OoohBoi Hover Animator
|
242 |
if( FALSE === isset( $ob_settings_options[ 'kontrolz' ] ) || 'on' === $ob_settings_options[ 'kontrolz' ] ) OoohBoi_Kontrolz::init(); // OoohBoi Kontrolz
|
243 |
if( FALSE === isset( $ob_settings_options[ 'widget_stalker' ] ) || 'on' === $ob_settings_options[ 'widget_stalker' ] ) OoohBoi_Widget_Stalker::init(); // OoohBoi Widget Stalker
|
@@ -255,7 +257,7 @@ final class OoohBoi_Steroids {
|
|
255 |
*/
|
256 |
public function ooohboi_register_styles_editor() {
|
257 |
|
258 |
-
wp_enqueue_style( 'ooohboi-steroids-styles-editor', plugins_url( 'assets/css/editor.css', __FILE__ ), [ 'elementor-editor' ], self::VERSION . '
|
259 |
|
260 |
}
|
261 |
|
@@ -270,7 +272,7 @@ final class OoohBoi_Steroids {
|
|
270 |
*/
|
271 |
public function ooohboi_register_styles() {
|
272 |
|
273 |
-
wp_register_style( 'ooohboi-steroids-styles', plugins_url( 'assets/css/main.css', __FILE__ ), NULL, self::VERSION . '
|
274 |
|
275 |
}
|
276 |
|
@@ -285,7 +287,7 @@ final class OoohBoi_Steroids {
|
|
285 |
*/
|
286 |
public function ooohboi_register_scripts_front() {
|
287 |
|
288 |
-
wp_register_script( 'ooohboi-steroids', plugins_url( 'assets/js/ooohboi-steroids-min.js', __FILE__ ), [ 'jquery' ], self::VERSION . '
|
289 |
|
290 |
}
|
291 |
|
@@ -315,7 +317,8 @@ final class OoohBoi_Steroids {
|
|
315 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-photomorph.php'; // OoohBoi PhotoMorph
|
316 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-commentz.php'; // OoohBoi Commentz
|
317 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-spacerat.php'; // OoohBoi SpaceRat
|
318 |
-
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-imbox.php'; // OoohBoi Imbox
|
|
|
319 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-hover-animator.php'; // OoohBoi Hover Animator
|
320 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-kontrolz.php'; // OoohBoi Kontrolz
|
321 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-widget-stalker.php'; // OoohBoi Widget Stalker
|
2 |
/**
|
3 |
* Plugin Name: OoohBoi Steroids for Elementor
|
4 |
* Description: An awesome set of tools, options and settings that expand Elementor defaults. Instead of creating new Elementor Widgets, these act like an upgrade of existing options or the self-standing panels.
|
5 |
+
* Version: 1.6.5
|
6 |
* Author: OoohBoi
|
7 |
* Author URI: https://www.youtube.com/c/OoohBoi
|
8 |
* Text Domain: ooohboi-steroids
|
31 |
*
|
32 |
* @var string The plugin version.
|
33 |
*/
|
34 |
+
const VERSION = '1.6.5';
|
35 |
|
36 |
/**
|
37 |
* Minimum Elementor Version
|
215 |
OoohBoi_PhotoMorph::init(); // OoohBoi PhotoMorph
|
216 |
OoohBoi_Commentz::init(); // OoohBoi Commentz
|
217 |
OoohBoi_SpaceRat::init(); // OoohBoi SpaceRat
|
218 |
+
OoohBoi_Imbox::init(); // OoohBoi Imbox
|
219 |
+
OoohBoi_Icobox::init(); // OoohBoi Icobox
|
220 |
OoohBoi_Hover_Animator::init(); // OoohBoi Hover Animator
|
221 |
OoohBoi_Kontrolz::init(); // OoohBoi Kontrolz
|
222 |
OoohBoi_Widget_Stalker::init(); // OoohBoi Widget Stalker
|
239 |
if( FALSE === isset( $ob_settings_options[ 'commentz' ] ) || 'on' === $ob_settings_options[ 'commentz' ] ) OoohBoi_Commentz::init(); // OoohBoi Commentz
|
240 |
if( FALSE === isset( $ob_settings_options[ 'spacerat' ] ) || 'on' === $ob_settings_options[ 'spacerat' ] ) OoohBoi_SpaceRat::init(); // OoohBoi SpaceRat
|
241 |
if( FALSE === isset( $ob_settings_options[ 'imbox' ] ) || 'on' === $ob_settings_options[ 'imbox' ] ) OoohBoi_Imbox::init(); // OoohBoi Imbox
|
242 |
+
if( FALSE === isset( $ob_settings_options[ 'icobox' ] ) || 'on' === $ob_settings_options[ 'icobox' ] ) OoohBoi_Icobox::init(); // OoohBoi Icobox
|
243 |
if( FALSE === isset( $ob_settings_options[ 'hover_animator' ] ) || 'on' === $ob_settings_options[ 'hover_animator' ] ) OoohBoi_Hover_Animator::init(); // OoohBoi Hover Animator
|
244 |
if( FALSE === isset( $ob_settings_options[ 'kontrolz' ] ) || 'on' === $ob_settings_options[ 'kontrolz' ] ) OoohBoi_Kontrolz::init(); // OoohBoi Kontrolz
|
245 |
if( FALSE === isset( $ob_settings_options[ 'widget_stalker' ] ) || 'on' === $ob_settings_options[ 'widget_stalker' ] ) OoohBoi_Widget_Stalker::init(); // OoohBoi Widget Stalker
|
257 |
*/
|
258 |
public function ooohboi_register_styles_editor() {
|
259 |
|
260 |
+
wp_enqueue_style( 'ooohboi-steroids-styles-editor', plugins_url( 'assets/css/editor.css', __FILE__ ), [ 'elementor-editor' ], self::VERSION . '21032021' );
|
261 |
|
262 |
}
|
263 |
|
272 |
*/
|
273 |
public function ooohboi_register_styles() {
|
274 |
|
275 |
+
wp_register_style( 'ooohboi-steroids-styles', plugins_url( 'assets/css/main.css', __FILE__ ), NULL, self::VERSION . '21032021' );
|
276 |
|
277 |
}
|
278 |
|
287 |
*/
|
288 |
public function ooohboi_register_scripts_front() {
|
289 |
|
290 |
+
wp_register_script( 'ooohboi-steroids', plugins_url( 'assets/js/ooohboi-steroids-min.js', __FILE__ ), [ 'jquery' ], self::VERSION . '21032021', true );
|
291 |
|
292 |
}
|
293 |
|
317 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-photomorph.php'; // OoohBoi PhotoMorph
|
318 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-commentz.php'; // OoohBoi Commentz
|
319 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-spacerat.php'; // OoohBoi SpaceRat
|
320 |
+
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-imbox.php'; // OoohBoi Imbox
|
321 |
+
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-icobox.php'; // OoohBoi Icobox
|
322 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-hover-animator.php'; // OoohBoi Hover Animator
|
323 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-kontrolz.php'; // OoohBoi Kontrolz
|
324 |
include_once plugin_dir_path( __FILE__ ) . 'controls/ooohboi-widget-stalker.php'; // OoohBoi Widget Stalker
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: page-builder, elementor, add-on, background-overlay, vertical text, ghost
|
|
4 |
Donate link: https://www.paypal.me/ooohboi
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.7
|
7 |
-
Stable tag: 1.6.
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0
|
@@ -21,10 +21,7 @@ An awesome set of tools, options and settings that expand Elementor defaults. In
|
|
21 |
|
22 |
= What is new? =
|
23 |
|
24 |
-
|
25 |
-
Moreover, you can align each Inner Section vertically, and change its stacking order in responsive fashion (per device).
|
26 |
-
All of the above mentioned is applicable to any Elementor widget (native or the third-party) by using the Widget Stalker extension.
|
27 |
-
These two should reduce the need for new Sections and Columns, and thus significantly reduce the amount of HTML generated by Elementor.
|
28 |
|
29 |
= In the package so far =
|
30 |
|
@@ -86,12 +83,15 @@ More controls to the Image Box widget.
|
|
86 |
Animate widgets on column's mouse-over event
|
87 |
|
88 |
20. KONTROLZ
|
89 |
-
Allows you to additionaly style Image Carousel and Media Carousel controls
|
90 |
|
91 |
21. WIDGET STALKER
|
92 |
Stack widgets one after another inside the column.
|
93 |
|
94 |
-
|
|
|
|
|
|
|
95 |
|
96 |
== Installation ==
|
97 |
|
@@ -100,7 +100,7 @@ Stack widgets one after another inside the column.
|
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
-
1.6.
|
104 |
|
105 |
== Frequently Asked Questions ==
|
106 |
|
@@ -144,6 +144,12 @@ No, you don't. It'll work with both free version of Elementor and Elementor PRO.
|
|
144 |
|
145 |
== Changelog ==
|
146 |
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
= 1.6.4 =
|
148 |
- GLIDER, Prev and Next buttons positioning controls are now responsive
|
149 |
- POOPART, added clip-path option to Overlay and Underlay
|
4 |
Donate link: https://www.paypal.me/ooohboi
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 5.7
|
7 |
+
Stable tag: 1.6.5
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0
|
21 |
|
22 |
= What is new? =
|
23 |
|
24 |
+
Icon Box widget got bigger! More controls to all the individual elements of that very widget. Likewise, the Image Box widget is now more powerful; stretch the image full-height, apply clip-path, add the background, padding, margin, etc.
|
|
|
|
|
|
|
25 |
|
26 |
= In the package so far =
|
27 |
|
83 |
Animate widgets on column's mouse-over event
|
84 |
|
85 |
20. KONTROLZ
|
86 |
+
Allows you to additionaly style Image Carousel and Media Carousel controls.
|
87 |
|
88 |
21. WIDGET STALKER
|
89 |
Stack widgets one after another inside the column.
|
90 |
|
91 |
+
21. ICOBOX
|
92 |
+
More controls to the Icon Box widget.
|
93 |
+
|
94 |
+
23. MORE IS COMING SOON!
|
95 |
|
96 |
== Installation ==
|
97 |
|
100 |
|
101 |
== Upgrade Notice ==
|
102 |
|
103 |
+
1.6.5 - Beware of the changes to the language file!
|
104 |
|
105 |
== Frequently Asked Questions ==
|
106 |
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= 1.6.5 =
|
148 |
+
- New feature added, ICOBOX - from now on, more power to the Icon Box widget
|
149 |
+
- WIDGET STALKER for BREAKING BAD, fix for the horizontal alignment issue of widgets
|
150 |
+
- BREAKING BAD, added new option to align the Inner Section horizontally
|
151 |
+
- IMBOX, added more controls to the "Image Box" widget; stretch the image full-height, apply clip-path, add the background, padding, margin
|
152 |
+
|
153 |
= 1.6.4 =
|
154 |
- GLIDER, Prev and Next buttons positioning controls are now responsive
|
155 |
- POOPART, added clip-path option to Overlay and Underlay
|