James Nylen
James Nylen
We need to come up with a better way to list and recognize ClassicPress contributors. Previously we were using OpenCollective to show a list of all code contributors, but as...
Whenever I write a plugin or theme that enqueues JavaScript or CSS, I always add a custom version to it so that I can bump the version and clear browser...
With the release of the security screen in 1.1.0 we started using the https://link.classicpress.net/ subdomain as the link target for any new links within the dashboard. We need to update...
We need to do #487 again, since WP has added more files in recent versions that are not present in ClassicPress.
@striebwj has reported an issue where migrating from WordPress to ClassicPress sometimes shows the following error at the end of the migration process:  This issue only seems to happen...
On sites that use a customized `composer.json`, this file will be overwritten when ClassicPress is updated (manually or automatically). This is not the desired behavior as any dependencies will be...
Currently, the following code indicating that "future security updates will be applied automatically" will never be triggered: https://github.com/ClassicPress/ClassicPress/blob/cf5f3de426a92623231ed55053d2c3ae1e94ce14/src/wp-admin/update-core.php#L186-L199 More info about this code path: https://github.com/ClassicPress/ClassicPress/blob/cf5f3de426a92623231ed55053d2c3ae1e94ce14/src/wp-admin/includes/class-wp-automatic-updater.php#L130-L152 https://github.com/ClassicPress/ClassicPress/blob/cf5f3de426a92623231ed55053d2c3ae1e94ce14/src/wp-admin/includes/class-core-upgrader.php#L318-L330 See also ClassicPress/ClassicPress-v1#156, ClassicPress/ClassicPress#357.
With JS disabled, you can click these links and nothing appears to happen.  The same bug should apply to WordPress, since we haven't changed this code.
The income & expense charts appear to have some issues with calculating dates. To reproduce on @redmountainmakers gnucash-django install: 1. View the PayPal account and filter for min date =...
Something like this maybe: ``` js $(window).on('resize', function() { var graphWidth, graphHeight; // compute graphWidth, graphHeight graph.force.size([graphWidth, graphHeight]); graph.force.start(); }); ```