Works fine with 2 customizations
-
For those who work with a newer WP version with the build in REST API, you can add :
return;
after:
function check_rest_api_plugin() {
In class-fee.php in the root of the plugin folder. Now you dont need the WordPress Rest Api plugin.It seems like PUT and PATCH are not supported anymore and the new route for updating is a post to /pages/500 for example.
You can fix this by editing fee.js in the js folder.
Change line 23 to:
return Backbone.sync(‘create’, model, _.clone(options)).then(function (data, text, xhr) {
So update method to ‘create’.Hope this works for others, cause this plugin seems to be the best free front end editor ??
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Works fine with 2 customizations’ is closed to new replies.