lifterlms / lifterlms-blocks
WordPress Editor (Gutenberg) blocks for LifterLMS.
Installs: 149 710
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 6
Forks: 12
Open Issues: 31
Language:JavaScript
Type:wordpress-plugin
Requires
- php: >=7.3
Requires (Dev)
- lifterlms/lifterlms-cs: dev-trunk
- lifterlms/lifterlms-tests: ^4.3
- dev-trunk
- 2.5.8
- 2.5.7
- 2.5.6
- 2.5.5
- 2.5.4
- 2.5.3
- 2.5.2
- 2.5.1
- 2.5.0
- 2.4.3
- 2.4.2
- 2.4.1
- 2.4.0
- 2.3.2
- 2.3.1
- 2.3.0
- 2.2.1
- 2.2.0
- 2.1.1
- 2.1.0
- 2.0.1
- 2.0.0
- 2.0.0-rc.2
- 2.0.0-rc.1
- 2.0.0-beta.6
- 2.0.0-beta.5
- 2.0.0-beta.4
- 2.0.0-beta.3
- 2.0.0-beta.2
- 2.0.0-beta.1
- 1.12.0
- 1.11.1
- 1.11.0
- 1.10.0
- 1.9.1
- 1.9.0
- 1.8.0
- 1.7.3
- 1.7.2
- 1.7.1
- 1.7.0
- 1.6.0
- 1.5.2
- 1.5.1
- 1.5.0
- 1.4.1
- 1.4.0
- 1.3.8
- 1.3.7
- 1.3.6
- 1.3.5
- 1.3.4
- 1.3.3
- 1.3.2
- 1.3.1
- 1.3.0
- 1.2.0
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.1
- 1.0.0
- dev-dev
- dev-dependabot/npm_and_yarn/multi-9f37c16f8f
- dev-release
- dev-fix/kadence-blocks-launch-course-builder-missing
- dev-fix/avoid-unsaved-changes-error
- dev-dependabot/npm_and_yarn/multi-9423f4c335
- dev-dependabot/npm_and_yarn/multi-cf87d80143
- dev-dependabot/npm_and_yarn/multi-d66d039ac5
- dev-fix/pricing-table-block-output
- dev-fix/plugin-checks
- dev-fix/elementor
- dev-removing-cs
- dev-fix/cs-check
- dev-feature/improved-message-when-launching-course-builder
- dev-build-2.4.3
- dev-fix-tests
- dev-upgrade-deps
- dev-component-extensibility
- dev-php-template-updates
- dev-php81
- dev-prerelease
- dev-required-fields
- dev-eslint
- dev-add-e2e-tests
This package is auto-updated.
Last update: 2024-11-04 00:06:02 UTC
README
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:
// 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 '<script src="http://localhost:35729/livereload.js"></script>'; }