H5P Library/Content Upgrade
- Author: Tom Woodward
- Category: Tutorial, WordPress
- Tags: documentation, h5p
I like H5P. It is good. I did have some trouble figuring out library upgrades and subsequent content upgrades in the WordPress plugin. This video attempts to clarify the process for others.
Related posts
WordPress Reverse List a Particular Category
I often get requests from instructors that ask me to get WordPress to behave in a way that’s just different enough that WordPress fights them. Now that I can mostly program, I could make quick child themes to deal with this but that causes me the hassle of keeping all that stuff straight so I still do some quick and dirty stuff with plugins. This example is based on an instructor who wanted one particular category (lesson plans) to list from oldest to newest rather than the default WP blog layout of newest to oldest. That’s a pretty easy thing to do if you use the List Category Post plugin. Once you’ve got the plugin on and you’ve found the category id (mouse over the category when you’re in Dashboard>Categories and look for id= in the URL at the bottom of the page) all you need to do is put in [catlist id=9 numberposts=-1 order=asc] In this case, it says get the posts in the category with id 9, -1 means get all of them, and order them from lowest to highest/ or oldest/newest. That’s it. I’ve now got a page that shows all 41 lesson plans from oldest to newest and no child theme to keep track of.
- Author: Tom Woodward
- Category: Tutorial, WordPress
Gravity Forms Black Magic
Gravity Forms makes my list of Non-Programistan tools. I haven’t seen quite enough posts celebrating the fact that Gravity Forms can do magic. The key feature at the moment that is kind of blowing my mind is the ability to use modifiers on the submissions fields— the ability to have the label (what the user sees/answers) be one thing and the value be something entirely different. It has the potential to enable some SPLOT like activities without the coding on the tool maker endI know Alan Levine. Alan Levine is a friend of mine. I am no Alan Levine. . . . I know that sounds like nonsense but just follow me a bit . . . It’s easy to miss the checkbox that turns on the values. You can see it in the fairly annoying GIF above. The cool thing is you can put virtually anything in the value field- images, HTML chunks etc. This plus the ability to create content templatesThink mail merge . . . gives you the ability to have user form interactions create some fairly sophisticated content.You can also chain forms and use variables from the forms in the URLs which would enable some wild options with Choose Your Own Adventure style progressions. In this example the user selects “Awesome” as the answer to a […]
- Author: Tom Woodward
- Category: Tutorial, WordPress
- Tags: gravity forms, SPLOT
WP JSON to Timeline JS
As part of some thoughts on building out a series of reflective views for student portfolio blogs, I thought seeing your WordPress posts in the TimelineJS view might be a useful way to look back over your progress. I intend to wrap this into a custom spreadsheet template and/or a pluginOr maybe just a page where you throw in a blog URL and get a bunch of alternate view/data options. but figured I’d sketch out how it works so far in case anyone was interested. The WP Rest API makes it pretty easy to write the data via Google Script. I just want to cut out chunks of the data and put it in the right fields. The following script does that and writes it to a page named “wp.”