Today we dropped quite a few announcements for our customers. In this blog post we will break down each point individually and go a bit more in-depth on the topics covered. SononaCare We previously performed maintenance and updates to client sites as a courtesy to our customers. The update process, however, has become complex requiring constant attention […]
Custom Plugins vs. your theme’s functions.php file
It is standard practice for us to create custom plugins for our clients’ WordPress sites. We go the custom route (rather than plopping them into the functions.php file) for 3 reasons: Portability – you can change themes and not lose the custom functionality – plus you can switch to a default theme to debug problems and not break everything […]
Remove New Relic JavaScript from WordPress AMP Pages
Having problems with New Relic scripts invalidating your WordPress AMP pages? Add this to your functions.php file: /** Disable New Relic Scripts in AMP Pages */ function disable_newrelic_for_amp_pages() { if ( function_exists( ‘is_amp_endpoint’ ) && is_amp_endpoint() ) { if (extension_loaded(‘newrelic’)) { newrelic_disable_autorum( true ); } } } add_action(‘init’, ‘disable_newrelic_for_amp_pages’); We put this into a plugin […]
What is the REAL cost of a business website?
In todays quick and cheap mindset, when planning a new website, many businesses fall into the trap of thinking that their website shouldn’t cost a lot to build. It would seem that a shiny new website could be had for pennies. Think again. If you’ve been considering a new website, or overhaul of your existing […]
Convert your wildcard SSL to JKS (Java Keystore) Format
Edit: this post was originally posted in May of 2014 and it unfortunately did not make it in the move over when we updated the web site. Sorry about that! We noticed several folks have still been linking to it and since it is still relevant we have restored it. Thank you for reading! So […]