How to change order of elements using a child theme

Well, I didn’t get an answer to this yet, but I did find it out on my own with a lot of research and some luck.

The secret is in the priority order of the hooks. The last argument which is a number. The lower the number, the higher up the item will appear. I was also able to unhook the content using ‘remove_action’ from one hook and add to another.

Making a child theme for Storefront (woocommerce theme) required referring to three sources. My own child theme, the storefront theme, and the woocommerce template which is a part of the woocommerce plugin.

That complicates everything a little more, but it was fun looking for things and discovering.