Woocommerce – Add a product to cart programmatically via JS or PHP

I am using the Woocommerce plugin to facilitate a small e-commerce part of a site and need to add products to its cart via some call or function rather than using its own ‘add-to-cart’ buttons. By this I basically mean send Woocommerce a SKU and quantity for example and have the cart update. sendToCart('123456', 55); … Read more

Renaming Custom Post Types and Taxonomies

I started developing a site with over a dozen custom post types. I’d like to rename a few of them, not just the display value, but the actual custom post type name. I’m worried however that by just running a SQL update query that I’ll miss some places where I need to change things or overwrite part of serialized data. I have already inputed over 3,000 items, so I can’t just restart with a clean database.