Thomas Jackson Writeup in Senior Times
One of our websites has been mentioned in Senior Times. Exciting!
Thomas Jackson Writeup in Senior Times Read More »
One of our websites has been mentioned in Senior Times. Exciting!
Thomas Jackson Writeup in Senior Times Read More »
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
Geolocate Address from Custom Post Type Meta Value: WordPress Experts Read More »
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
Guardian Association Management Has A New Website Read More »
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
WordPress: Capturing Post Author Meta Read More »
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
Florida Auctioneers Has A New Website Read More »
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’ ]);
Preloading Images with Jquery Read More »
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”
WP: Adding a HTML5 Search Form Read More »
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
Jquery Simple Fadeout Read More »
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
The ELC of alachua county came to us looking for some help with their current website. They had evidently been hacked on their Joomla installation and there were a number of issues that rippled out from that. We attempted to fix the installation but the site was outdated and needed a refresh anyway. We mentioned
Early Learning Coalition Has A New Website Read More »