bigbite / themer

GNU General Public License v2.0
2 stars 0 forks source link

Themer

Themer is a WordPress plugin that provides a UI for users to edit the theme.json file of your currently active theme. It was built as a companion to the Site Editor allowing for even more granular control over your site styles through a dedicated UI.

Features

86068

Installing

Prerequisites

Via Composer

When installing to your site, add the following to you composer.json file. This will ensure that installation will use the build version of the package and allow it to be loaded using composer in the preferred path.

{
    "repositories": [
        {
            "type": "vcs",
            "url": "git@github.com:@bigbite/themer.git"
        }
    ],
    "require": {
        "@bigbite/themer": "^1.0.0"
    },
    "extra": {
        "installer-paths": {
            "plugins/{$name}/": [ "type:wordpress-plugin" ]
        }
    }
}

Local Development or Manual Install

Clone the repository into your plugins or client-mu-plugins directory.

git clone git@github.com:@bigbite/themer.git && cd themer

Install JS packages.

npm install

Build all assets

npm run build:prod

Install PHP packages and create autoloader for the plugin.

composer update

Issues

We welcome bug reports, feature requests, questions, and pull requests. If you spot any mistakes or have an idea to make the plugin better, just open an issue.

Contributing

Please read Code of Conduct for details on our code of conduct and Contributing for details on the process for submitting pull requests to us.