Skip to content

Commit

Permalink
Merge pull request #46 from brainstormforce/repeater-fields-and-color…
Browse files Browse the repository at this point in the history
…-selection

Repeater fields not working and double color palette displaying
  • Loading branch information
premanshup authored Mar 24, 2022
2 parents ae6a812 + 2d0573c commit df304bc
Show file tree
Hide file tree
Showing 14 changed files with 314 additions and 1,269 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ module.exports = function( grunt ) {
},

} );

grunt.loadNpmTasks('grunt-rtlcss');
grunt.loadNpmTasks('grunt-sass');
grunt.loadNpmTasks('grunt-postcss');
Expand Down Expand Up @@ -346,7 +346,7 @@ module.exports = function( grunt ) {
grunt.registerTask( 'bump-version', function() {
var newVersion = grunt.option("ver");

if ( newVersion ) {
if ( newVersion ) {
grunt.task.run( "bumpup:" + newVersion );
grunt.task.run( "replace" );
}
Expand Down Expand Up @@ -376,4 +376,4 @@ module.exports = function( grunt ) {

grunt.util.linefeed = '\n';

};
};
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
**Donate link:** https://www.paypal.me/BrainstormForce
**Tags:** Address widget, Social profile widget, List icon widget, Social media, Add widget
**Requires at least:** 4.7
**Tested up to:** 5.9
**Tested up to:** 5.9.2
**Requires PHP:** 5.2
**Stable tag:** 1.2.9
**Stable tag:** 1.2.10
**License:** GPLv2 or later
**License URI:** http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -76,6 +76,11 @@ In your WordPress admin dashboard go to Appearance -> Widgets, drag the Astra :

## Changelog ##

### 1.2.10 ###
- Fix: Astra Social Profile: Repeater field not showing in widget block editor. ( https://wpastra.com/docs/resolving-repeater-fields-not-working-in-widget-block-editor/ )
- Fix: Astra List Icons: Repeater field not showing in widget block editor.
- Fix: Displaying double Color options when more than one widgets added.

### 1.2.9 ###
- Improvement: WordPress 5.8 compatibility.
- Fix: Handled PHP notice in customizer with Astra Social Profiles Widget.
Expand Down
2 changes: 1 addition & 1 deletion assets/css/minified/astra-widgets-admin-rtl.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion assets/css/minified/astra-widgets-admin.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions assets/css/unminified/astra-widgets-admin-rtl.css
Original file line number Diff line number Diff line change
Expand Up @@ -278,3 +278,13 @@
.astra-repeater-field title {
line-height: 1.4em;
}

/**
* Notice field
*/
.widgets-php .astra-widget-field-notice.notice {
display: block !important;
}
.astra-widget-field-notice.notice {
font-size: 15px;
}
10 changes: 10 additions & 0 deletions assets/css/unminified/astra-widgets-admin.css
Original file line number Diff line number Diff line change
Expand Up @@ -278,3 +278,13 @@
.astra-repeater-field title {
line-height: 1.4em;
}

/**
* Notice field
*/
.widgets-php .astra-widget-field-notice.notice {
display: block !important;
}
.astra-widget-field-notice.notice {
font-size: 15px;
}
Loading

0 comments on commit df304bc

Please sign in to comment.