“Cannot start session when headers already sent” when attempting session

It turns out not all hosts treat sessions alike. I ended up scraping altogether the “session” code in functions.php previously referred to which was doing nothing. Instead, I added session_start() at the top of every template adding or retrieving a value from a name/value hash in $_SESSION. So, <?php session_start(); $_SESSION[‘order_id’] = $order_id; . . … Read more

ERR_CONNECTION_RESET on post save or add media

The “ERR_CONNECTION_RESET” error in WordPress usually occurs when there is a server connection problem during the execution of a POST request, such as when saving a post or adding media. There can be many reasons behind this error, but here are some common solutions that can be tried: Check for Plugin/Theme Conflicts – Start by … Read more

Term meta not saved when adding the first category

The issue you are experiencing might be due to the action hook you’re using to save the term meta. The created_category hook fires after the term is created, but it doesn’t ensure that all fields are available at that point. To ensure that the term meta is being saved correctly even for the first category, … Read more

WordPress DB query

Without really knowing everything about how you’ve set up your site, I can only offer a generic answer to your questions. If you have set up a way to save information to the database about who played which game and when, then you should be able to query those information. You can save data to … Read more