Home » Development » WordPress » Seite 5
As I said before, Learning Management is really taking off and I get many client requests to do some kind of integration or custom solution for them.
In one of my latest articles I started listing solutions for WordPress, WordPress and the LMS universe.
But those solutions might not always be the best fit for your project. Many of them actually try too hard to be everything. The amount of cross linked functionality is getting insane and increases the point of failure.
In some cases a trimmed down solid solution might be the better way to go. SaaS (Software as a Service), part of the cloud trend, is providing more and more options, this includes the LMS arena. Stop worrying about the software and concentrate on your content again. The SaaS provider takes care of functionality, support, updates and delivery. This is nothing new, solutions like TalentLMS or Litmos LMS offer this for some time now.
Modern SaaS solutions provide Public APIs, that allow you to seamlessly integrate them with your current solution. So in case of a LMS, that part of your project could be handled by the SaaS provider, while e-commerce, social and other content areas remain under your full control.
One solution I am currently looking at is Intuo, which is a fresh startup out of Gent / Belgium. They provide a solid set of features and a clean API to handle single signons and content access. That would allow a seamless integration into WordPress for example :)
We are looking at a very crowded LMS market, but always nice to have options :)
CodePress Admin Columns allows you to manage and organize columns, for posts, users, comments and media lists in the WordPress admin panel.
This little tweak allows you to add sorting to your columns. Add and adjust depending on the columns you have setup.
Anyone using WPLMS 1.9x should wait and not update to 2.0x yet.
Not all bugs are fixed and I see many users having problems, just by reading the support forums and the comments over on Envato.
I have a vanilla test environment of WPLMS 1.9x on my testserver and i had no problems until 2.0 came along.
The last customtypes plugin update today killed the setup completely. Many of the old child themes break or have parts broken. Fresh sample data is not working either. Sadly some of my customers already did an update themselves …. perfect ! Will be a long weekend.
I am doing a complete reset of my test environment and waiting for the next update :)
Rant: This theme / plugin is getting too bloated in many areas. Two many unknown variables, due to the huge amount of dependencies …
Author: Andrew Angell
BitBucket Repo
Favic-o-matic is a favicon generator, that transforms your png design into favicons and the required html to include them.
Favic-o-meter makes sure that every browser shows your favicon perfectly :)
In the past 2 years, the e-Learning market has been exploding. Online Learning Management Systems (LMS) have become very popular, to build e-learning platforms.
They not only offer text based content, quizzes, assignment management, course evaluation, social features, but also allow the integration of video, audio and other linked content. Many support SCORM (Sharable Content Object Reference Model), allowing the exchange of learning content and results.
Over the past few years, I have been helping clients to build or transform their e-learning platforms. Sometimes its better to build a customized LMS solution from scratch :), than tweak or customize an offered solution. It all depends on the features you want to see integrated and on the budget available ;)
In this article I want to share current solutions offered for WordPress.
I will divide them into themes and plugins for now. In the future I plan do some feature comparison as well :
These are standalone plugins, that provide LMS functionality and integrate into your WordPress themes. Ease of integration and options differ.
These themes mostly dependent on one of the plugins above or offer only a simple subset of LMS functionality.
Integrated solutions, that are supposed to offer a tight integration of WordPress, theme and its own plugins.
Here we go, WordPress 4.4 is available …
Changelog
Really neat solution, that allows you to build a quick viewport based layout, without relying on the still buggy CSS units.
Also works nicely in combination with Visual Composer for WordPress :)
vUnit @ Github
„WP-CLI is a set of command-line tools for managing WordPress installations“
WP-CLI
Using WordPress as a headless system, is nothing new. You can easily build out your own REST API or use the long available HTTP REST API 1.0+ for WordPress.
But with the new HTTP REST API 2.0+ its getting really easy to build out your own REST API Namespace and assign routes for all your JSON needs.
The new REST API will make its appearance in WordPress 4.4, but you can start now by adding the plugin to your system. When the plugin detects 4.4+ it will only load functionality not already present in the core.
A route tells the API to respond to a given request with a specific function (endpoint). This adds the permalink structure to WordPress so that your functionality can be accessed via an url like this: http://yourdoman.com/wp-json/yourplugin/v1/myfunction/your_parameter
The Endpoint is the callback handled by the route. Each endpoint can have additional parameters attached:
The return values from the endpoint are converted into JSON. You can use the WP_REST_Response object , this wraps normal body data and allows you to return a custom status code.
Really powerful stuff, that makes it easy to detach WordPress and the actual client using the data provided by it.
You can read more about it here.