Basic Authentication from a Groundhogg Webhook Action

Groundhogg.io is one of the top two CRMs for WordPress. It does a lot in the Core, and there are addons for functional requirements like Contracts, and technical/functional ones like Zapier integration.  If you run a WordPress based site that has any business functions at all, you sell products, etc., I recommend you check it…

Non-profit Makeover

“Network for Good is a nice place to start, but once you are past startup phase, offers a terrible value proposition and lock-in.” We recently helped a client leave Network for Good (NfG) for a more powerful marketing automation plaform at a lower monthly cost. NfG is a fairly simple system which seems designed to…

Building Better Systems

“Modularity is Freedom. All-In-One is servitude. In technology, keep your options open, avoid lock-in.” We have created multiple systems that have delivered over $1 million USD in business value. It is easy to fall into the trap of various solutions we could call “all-in-one”, which intend to solve multiple issues for a paricular market. Our…

Get WordPress Permalinks from MySQL Directly

Thanks to Sully AND KEN the original source of the almost working query. Validation was substantially eased by EverSQL.com SELECTwpp.post_title,wpp.guid,wpp.post_date,REPLACE(REPLACE(REPLACE(REPLACE(wpo.option_value,‘%year%’,DATE_FORMAT(wpp.post_date, ‘%Y’)),‘monthnum%’,DATE_FORMAT(wpp.post_date, ‘%m’)),‘% day %’,DATE_FORMAT(wpp.post_date, ‘ %d ‘)),‘%postname%’,wpp.post_name) AS permalinkFROMwp_kympstfnsd_posts wppJOIN wp_kympstfnsd_options wpo ON wpo.option_name = ‘permalink_structure’WHEREwpp.post_type = ‘post’AND wpp.post_status = ‘publish’ORDER BYwpp.post_date DESC;