reduxframework / redux-framework-4

Redux v4
https://redux.io/redux-4/
Other
97 stars 32 forks source link

Warning Message in the ThemeOptions #150

Closed wilokecom closed 4 years ago

wilokecom commented 4 years ago

Any Error Details (PHP/JavaScript)

When a customer uses select post type features, it is causing https://i0.wp.com/documentation.wilcity.com/wp-content/uploads/2020/08/Screen-Shot-2020-08-25-at-09.02.33.png?resize=768%2C336&ssl=1 We can resolve this issue by replacing $args['post__in'] = $current_value; under redux-core -> inc -> classes -> Go to line 582 with $args['post__in'] = is_array($current_value) ? $current_value : [$current_value];

dovy commented 4 years ago

Great catch. I've placed it in this repo. The fix will be in the next release hopefully due out today.