Skip to content

Commit dc36e13

Browse files
authored
Version 1.8.3 (#89)
* Improved accessibility of the Video Popup block. * Added the ability to load block assets outside Getwid. * Fixed an issue with the Tabs block styles being broken when it's nested inside itself. * Fixed an issue with the Media Text Slider block not working properly in WP 6.1.
1 parent ac3f334 commit dc36e13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+129
-91
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
.idea
44
/stats.json
55
/src/blocks/all-blocks
6+
*.code-workspace

getwid.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Getwid
44
* Plugin URI: https://motopress.com/products/getwid/
55
* Description: Extra Gutenberg blocks for building seamless and aesthetic websites in the WordPress block editor.
6-
* Version: 1.8.2
6+
* Version: 1.8.3
77
* Author: MotoPress
88
* Author URI: https://motopress.com/
99
* License: GPLv2 or later

includes/blocks/accordion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function block_frontend_styles($styles) {
4646
return $styles;
4747
}
4848

49-
private function block_frontend_assets() {
49+
public function block_frontend_assets() {
5050

5151
if ( is_admin() ) {
5252
return;

includes/blocks/advanced-heading.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function getLabel() {
2222
return __('Advanced Heading', 'getwid');
2323
}
2424

25-
private function block_frontend_assets() {
25+
public function block_frontend_assets() {
2626

2727
if ( is_admin() ) {
2828
return;

includes/blocks/advanced-spacer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function getLabel() {
2323
return __('Advanced Spacer', 'getwid');
2424
}
2525

26-
private function block_frontend_assets( $attributes = null ) {
26+
public function block_frontend_assets( $attributes = null ) {
2727

2828
if ( is_admin() ) {
2929
return;

includes/blocks/banner.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function getLabel() {
2222
return __('Banner', 'getwid');
2323
}
2424

25-
private function block_frontend_assets( $attributes = null ) {
25+
public function block_frontend_assets( $attributes = null ) {
2626

2727
if ( is_admin() ) {
2828
return;

includes/blocks/circle-progress-bar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getLabel() {
3131
return __('Circular Progress Bar', 'getwid');
3232
}
3333

34-
private function block_frontend_assets( $attributes = null ) {
34+
public function block_frontend_assets( $attributes = null ) {
3535

3636
if ( is_admin() ) {
3737
return;

includes/blocks/contact-form.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public function render_captcha_block( $attributes ) {
114114
}
115115
/* #endregion */
116116

117-
private function block_frontend_assets() {
117+
public function block_frontend_assets() {
118118

119119
if ( is_admin() ) {
120120
return;

includes/blocks/content-slider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ public function block_editor_scripts($scripts) {
7777
return $scripts;
7878
}
7979

80-
private function block_frontend_assets() {
80+
public function block_frontend_assets() {
8181

8282
if ( is_admin() ) {
8383
return;

includes/blocks/content-timeline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public function getLabel() {
2323
return __('Content Timeline', 'getwid');
2424
}
2525

26-
private function block_frontend_assets() {
26+
public function block_frontend_assets() {
2727

2828
if ( is_admin() ) {
2929
return;

0 commit comments

Comments
 (0)