Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for WordPress 5.0 #233

Merged
merged 3 commits into from Dec 5, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 5 additions & 1 deletion wordpress/wp-content/plugins/memberful-wp/readme.txt
Expand Up @@ -2,7 +2,7 @@
Contributors: matt-button, drewstrojny, dwestendorf, rusuandreirobert, sumobi, Webby Scots
Tags: memberful, member, membership, memberships, recurring payments, recurring billing, paywall, subscriptions, stripe, oauth, oauth2
Requires at least: 3.6
Tested up to: 4.9
Tested up to: 5.0
Stable tag: 1.43.1
License: GPLv2 or later

Expand Down Expand Up @@ -48,6 +48,10 @@ Glad you asked! We manage development of the plugin over at the [Memberful WP Gi

== Changelog ==

= unreleased =

* Add basic support for WordPress 5.0.

= 1.43.1 =

* Fix for WP Ultimate Recipe Premium integration.
Expand Down
5 changes: 4 additions & 1 deletion wordpress/wp-content/plugins/memberful-wp/src/metabox.php
Expand Up @@ -21,7 +21,10 @@ function memberful_wp_add_metabox() {
'memberful_acl',
'Memberful: Restrict Access',
'memberful_wp_metabox',
$type
$type,
'advanced',
'default',
array('__block_editor_compatible_meta_box' => false)
);
}
}
Expand Down