Daniel M. Hendricks
Daniel M. Hendricks
If you do a PR, I will merge it!
I'm a bit swamped this week, but I will try to get back to you with an answer soon.
I actually don't know, sorry. I have not been able to work on this plugin due to time constraints this year. I will probably eventually drop the media sync part...
Yes, I encountered the same issue. The class is [hard-coding](https://github.com/tareq1988/wordpress-settings-api-class/blob/master/src/class.settings-api.php#L531) `options.php`. I tried changing line 531 in `class.settings-api.php` to: ```
Well, including the above change, I got it to work with a **_total hack_**. Given [this example](https://github.com/tareq1988/wordpress-settings-api-class/blob/master/example/oop-example.php)... I added something like this to manually update options when the page is...
@faiyazalam - [Carbon Fields](https://carbonfields.net/) is about the only custom fields framework I've observed that supports [network settings pages](https://github.com/htmlburger/carbon-fields-docs/blob/master/documentation/10-containers/31-network.md). It is available as a [plugin](https://carbonfields.net/release-archive/) and also [via Composer](https://carbonfields.net/docs/carbon-fields-quickstart/).
1. At minimum, I would recommend a more Composer- and WP-typical project slug and rename `index.php` to something descriptive. 2. I think that this is a good idea. Some considerations...
Feedback: 1. You might also consider a more Composer-friendly slug, since more and more people are using Composer to manage WordPress. Something like "codesign2/wp-enable-svg" or "codesign2/enable-svg-uploads" whatever (neither of those...
(also, though it will have **no impact** on function, it's not typical in WP to name the main plugin file `index.php`. Generally, they are named something like `my-plugin-name/my-plugin-name.php` or `enable-svg-uploads/enable-svg.php`,...