Howe Development Has a New Website

Website is complete on Howe Development. Now for phase 2 – integrating a simply, custom CMS so they can update content on parts of the site.

No need for wordpress – we can easily do a custom solution for those cases where a client only needs to control small portions of their websites. For Rick, he wanted something simple, easy to navigate, and brought the customer to an understanding of how valuable his services are. He is very pleased with things so far and we have a number of improvements already on the shelf. Coming soon to a portfolio near you … yes, our portfolio.

More Web Design Blog Content

Woocommerce Products Per Page

Interestingly Woocommerce does not seem to have a default setting for ‘products per page’. Unsurprisingly, there’s a simple workaround. Add to your functions.php Replace “28” with whatever number you want. add_filter( ‘loop_shop_per_page’, create_function( ‘$cols’, ‘return 28;’ ), 20 );

A Blog you say, Like We Have Time!?

Well, it’s finally happened. A Gainesville Web Design Company made a wordpress blog and started posting to it in “third person” sort of way. Original, we know. We will hopefully have some interesting things to say between keywords, so just sit back, relax, and chew on some web

Conversion Optimization

So many people have a myopic outlook on SEO and SEM. They tend to focus on optimization as strawberry field, where you can just pick a little fruit from here or there and fill up your basket. Not so fast. It’s not just about having a full basket,

SEO is No Big Secret

Really, SEO is not some big secret. Some companies try to pretend it is but you don’t have to be an expert to manage your own SEO. What do you think search engines like Google want? Well, they want what their users’ want. That’s how they get business,

Javascript called by PHP

Interesting little snippet. What is going on here? Livewire gives you the low down.    if($num_rowvs == 0){ echo ‘<script>// <![CDATA[ alert(“This is an alert message. I’m alerting you that you are totally awesome!”); // ]]></script>’; }   First, we’re creating a simple if statement in PHP.  Not entirely