Version Description
- CRITICAL ERROR FIX
- ICOBOX, added new option to add the background/image to the icon element
Download this release
Release Info
Developer | ooohboi |
Plugin | OoohBoi Steroids for Elementor |
Version | 1.6.6 |
Comparing to | |
See all releases |
Code changes from version 1.6.5 to 1.6.6
- controls/ooohboi-icobox.php +8 -0
- controls/ooohboi-imbox.php +28 -0
- inc/common-functions.php +1 -1
- ooohboi-steroids.php +3 -3
- readme.txt +5 -1
controls/ooohboi-icobox.php
CHANGED
@@ -130,6 +130,14 @@ final class OoohBoi_Icobox {
|
|
130 |
],
|
131 |
]
|
132 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
|
134 |
}
|
135 |
|
130 |
],
|
131 |
]
|
132 |
);
|
133 |
+
// --------------------------------------------------------------------------------------------- CONTROL BACKGROUND
|
134 |
+
$element->add_group_control(
|
135 |
+
Group_Control_Background::get_type(),
|
136 |
+
[
|
137 |
+
'name' => '_ob_icobox_img_background',
|
138 |
+
'selector' => '{{WRAPPER}} .elementor-icon-box-wrapper .elementor-icon-box-icon',
|
139 |
+
]
|
140 |
+
);
|
141 |
|
142 |
}
|
143 |
|
controls/ooohboi-imbox.php
CHANGED
@@ -220,6 +220,34 @@ final class OoohBoi_Imbox {
|
|
220 |
],
|
221 |
]
|
222 |
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
225 |
$element->add_control(
|
220 |
],
|
221 |
]
|
222 |
);
|
223 |
+
// --------------------------------------------------------------------------------------------- CONTROL Margin
|
224 |
+
$element->add_responsive_control(
|
225 |
+
'_ob_imbox_margin_cont',
|
226 |
+
[
|
227 |
+
'label' => __( 'Box Margin', 'ooohboi-steroids' ),
|
228 |
+
'type' => Controls_Manager::DIMENSIONS,
|
229 |
+
'size_units' => [ 'px', 'em', '%' ],
|
230 |
+
'selectors' => [
|
231 |
+
'{{WRAPPER}} .elementor-image-box-content' => 'margin: {{TOP}}{{UNIT}} {{RIGHT}}{{UNIT}} {{BOTTOM}}{{UNIT}} {{LEFT}}{{UNIT}};',
|
232 |
+
],
|
233 |
+
]
|
234 |
+
);
|
235 |
+
// --------------------------------------------------------------------------------------------- CONTROL Z-INDeX
|
236 |
+
$element->add_control(
|
237 |
+
'_ob_imbox_box_z_index',
|
238 |
+
[
|
239 |
+
'label' => __( 'Box z-index', 'ooohboi-steroids' ),
|
240 |
+
'type' => Controls_Manager::NUMBER,
|
241 |
+
'separator' => 'before',
|
242 |
+
'min' => -9999,
|
243 |
+
'selectors' => [
|
244 |
+
'{{WRAPPER}} .elementor-image-box-content' => 'z-index: {{VALUE}}; position: relative;',
|
245 |
+
],
|
246 |
+
'condition' => [
|
247 |
+
'_ob_imbox_overrides' => 'yes',
|
248 |
+
],
|
249 |
+
]
|
250 |
+
);
|
251 |
|
252 |
// ------------------------------------------------------------------------- CONTROL: Yes 4 more controls
|
253 |
$element->add_control(
|
inc/common-functions.php
CHANGED
@@ -118,7 +118,7 @@ $options_page = array(
|
|
118 |
'ob_use_icobox' => array(
|
119 |
'title' => 'ICOBOX',
|
120 |
'type' => 'checkbox',
|
121 |
-
'text' => sprintf( __( '%
|
122 |
'checked' => 1,
|
123 |
),
|
124 |
'ob_use_hoveranimator' => array(
|
118 |
'ob_use_icobox' => array(
|
119 |
'title' => 'ICOBOX',
|
120 |
'type' => 'checkbox',
|
121 |
+
'text' => sprintf( __( '%sIcon Box widget extra controls', 'ooohboi-steroids%s' ), '<span class="ob-option-desc">', '</span>' ),
|
122 |
'checked' => 1,
|
123 |
),
|
124 |
'ob_use_hoveranimator' => array(
|
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
|
@@ -272,7 +272,7 @@ final class OoohBoi_Steroids {
|
|
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 . '
|
276 |
|
277 |
}
|
278 |
|
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
|
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.6';
|
35 |
|
36 |
/**
|
37 |
* Minimum Elementor Version
|
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 . '23032021' );
|
276 |
|
277 |
}
|
278 |
|
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
|
@@ -144,6 +144,10 @@ No, you don't. It'll work with both free version of Elementor and Elementor PRO.
|
|
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
|
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.6
|
8 |
Requires PHP: 7.0
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0
|
144 |
|
145 |
== Changelog ==
|
146 |
|
147 |
+
= 1.6.6 =
|
148 |
+
- CRITICAL ERROR FIX
|
149 |
+
- ICOBOX, added new option to add the background/image to the icon element
|
150 |
+
|
151 |
= 1.6.5 =
|
152 |
- New feature added, ICOBOX - from now on, more power to the Icon Box widget
|
153 |
- WIDGET STALKER for BREAKING BAD, fix for the horizontal alignment issue of widgets
|