New Website for NWSF!
Northwest Seafood got hacked unfortunately. Being previous clients of ours we came to the rescue. The site was damaged beyond repair so our team of Gainesville Web Design experts took hold and gave them a brand new website in a matter of days. We always support our clients in their hour of need. That’s what separates […]
Thomas Jackson Writeup in Senior Times
One of our websites has been mentioned in Senior Times. Exciting!
Geolocate Address from Custom Post Type Meta Value: WordPress Experts
This was an interesting project for our Gainesville Web Design Team. The puzzle: Create a custom post type within WordPress, no trouble there Allow users to input an address on a CRED front-end form that loads into the CPT, still no trouble there Next, create a script that loops through each CPT, extracts the elements […]
Guardian Association Management Has A New Website
Pleased to introduce the new Guardian Association Management website. This is a clean minimalistic layout that funnels users directly into services and payments pages. Gainesville GAM came to us needing something up in a timely manner, clean, modern, and looked great on mobile. We were happy to oblige. In just a few short weeks we […]
WordPress: Capturing Post Author Meta
An easy one here from your local Gainesville Web Designer: How to retreive the author information from a post in the WordPress loop. This assumes you’re in the loop, of course. $meta_field= get_the_author_meta( ‘your_meta’ ); Badda-bing badda-boom. You’re done. It really is that simple. Just use get_the_author_meta, the name of the meta source from […]
Florida Auctioneers Has A New Website
Proud to present the new and improved Florida Auctioneers Association Website! This was a lengthy project but the final website is well worth it. Really more of a web portal, the system is chock full of features and runs smooth and fast. The site features: Membership program Member search by name, category, company, city or […]
Preloading Images with Jquery
There are times when preloading images is an important step in keeping your site/page/program running smoothly. This is especially true in the era of mobile. Here’s a cute little snippet that does just that. function preload(yourarrayOfImages) { $(yourarrayOfImages).each(function(){ $(‘<img/>’)[0].src = this; }); } preload([ ‘img/image1.jpg’, ‘img/image2.jpg’, ‘img/image3.jpg’ ]);
WP: Adding a HTML5 Search Form
A simple script from your local Gainesville Web Designer. [code scroll=”false” language=”htmml”] <form role=”search” method=”get” class=”search-form” action=”<?php echo home_url( ‘/’ ); ?>”> <label> <span class=”screen-reader-text”><?php echo _x( ‘Search for:’, ‘label’ ) ?></span> <input type=”search” class=”search-field” placeholder=”<?php echo esc_attr_x( ‘Search …’, ‘placeholder’ ) ?>” value=”<?php echo get_search_query() ?>” name=”s” title=”<?php echo esc_attr_x( ‘Search for:’, ‘label’ ) ?>” /> </label> <input type=”submit” […]
Jquery Simple Fadeout
A cute little snippet to show a simple green bar upon a successful edit. <?php if(isset($_GET[‘edit’])){ ?> <div id=’notifyy’> Edited Successfully </div> <script type=”text/javascript”> $( ‘#notifyy’ ).show(function(){ $(this).fadeOut(5000); }); </script> <?php } ?> The CSS: #notifyy{width:100%;background:#2f5001;padding:4px 15px;color:#fff;} Always, Gainesville Web Design
Digital Worlds
Just finished up a long term project with Digital Worlds at the University of Florida in Gainesville. This web design project intends to reach young audiences with compelling content. It is a place for them to upload videos, share, collaborate and get insights into problems and issues that affect their peers. The “portal”, in a […]