https://github.com/gocodebox/lifterlms-blocks
WordPress Editor (Gutenberg) blocks for LifterLMS.
https://github.com/gocodebox/lifterlms-blocks
elearning hacktoberfest lifterlms lms node php react wordpress wordpress-plugin
Last synced: 10 months ago
JSON representation
WordPress Editor (Gutenberg) blocks for LifterLMS.
- Host: GitHub
- URL: https://github.com/gocodebox/lifterlms-blocks
- Owner: gocodebox
- Created: 2018-10-23T19:36:14.000Z (over 7 years ago)
- Default Branch: trunk
- Last Pushed: 2025-06-23T14:20:35.000Z (10 months ago)
- Last Synced: 2025-06-23T15:28:41.807Z (10 months ago)
- Topics: elearning, hacktoberfest, lifterlms, lms, node, php, react, wordpress, wordpress-plugin
- Language: JavaScript
- Homepage:
- Size: 12.1 MB
- Stars: 5
- Watchers: 4
- Forks: 12
- Open Issues: 21
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
LifterLMS Blocks
================
[](https://github.com/gocodebox/lifterlms-blocks/actions/workflows/test-phpunit.yml)
[](https://github.com/gocodebox/lifterlms-blocks/actions/workflows/php-test-coverage.yml)
[](https://github.com/gocodebox/lifterlms-blocks/actions/workflows/coding-standards.yml)
[](https://codeclimate.com/github/gocodebox/lifterlms-blocks/maintainability)
[](https://codeclimate.com/github/gocodebox/lifterlms-blocks/test_coverage)
WordPress Editor (Gutenberg) blocks for LifterLMS.
---
## Installing
**Via LifterLMS**
+ Since LifterLMS 3.25.0-alpha.1 this plugin is automatically included in the LifterLMS core codebase
**Installation of the plugin via Zip file**
+ Download the zip file using the "Clone or download" button
+ On your WordPress admin panel navigate to Plugins -> Add New
+ Upload the zip file
+ Activate the plugin
## Development
While developing Javascript within this plugin you can watch changes in the assets and (optionally) automatically reload using LiveReload
To watch changes in the `assets/src` directory, run `npm start`.
To use LiveReload, add the following to a mu-plugin to automatically reload during development:
```php
// add_action( 'wp_head', 'add_live_reload' ); // Auto-reload frontend.
// add_action( 'admin_head', 'add_live_reload' ); // Auto-reload admin panel.
function add_live_reload() {
echo '';
}
```