Category: Web Development

Featured Video Play Icon

Long Live Ryan Rollins

Ryan, you will be greatly missed… Portland lost a real one… Ryan Rollins, an awesome dad, a wildly successful entrepreneur, and most of all rad friend, passed away yesterday. Ryan was a one-of-a-kind sole, a true hustler, a go-getter, and risk taker. Ryan always knew how to have a good time, put a smile on […]

Featured Video Play Icon

Portland Web Design

Maybe youā€™re thinking about having your first one made ā€¦or maybe, you just need a new, better one. In any case, you should know at least some of the basics about web design. ā€¦and no worries, it will only take 3 minutes. First of all, letā€™s face it: a Website is the core of your […]

Featured Video Play Icon

Build Your Marketing Strategy to Generate Leads

Soā€¦ how exactly can WE help YOU with online marketing? Well, letā€™s seeā€¦ first of all, we will analyze your current website from the marketing perspective to find answers to the questions likeā€¦: ā€¦how many visitors come to your site?… ā€¦From what sources and devices did they come from?… ā€¦What is the real goal of […]

Google Makes Website Security SSL Certificate Necessary

Online security is rightfully at the forefront of Google in 2018 and they have placed priority on website’s officially certifying their server security with Transport Layer Security also referred to as Secure Socket Layer (SSL). Starting this year, Google will be giving preference to websites that are officially certified as secure with an SSL Certificate. […]

A custom jQuery method to AJAXify forms with .AJAXify()

// Function to AJAXify forms $.fn.AJAXify = function(resultscontainer){ // Check if the element is on the page first if(this.length){ // Keep track of original element var og = this; // Unbind submit event this.submit(function(e){ // Initialize e.preventDefault(); var postobj = {}; // Loop through each child element and add to post object og.find(‘input, textarea, select, […]

Twitter Trends Map

Many people wonder what the heck people are really talking about on Twitter and Facebook. With this amazing site you are able to see in realtime what people are talking about. This incredible marriage of Twitter and Google Maps APIs create a phenomenal global look at topics that are trending worldwide. Check it out! trendsmap.com

Add qTranslate support to Contact Form 7

For those of you using WordPress that would like a non-intrusive simple way to add qTranslate support to your Contact Form 7 contact forms, here’s a simple snippet you can insert into functions.php: // Add qTranslate support to contact form 7 add_filter(‘wpcf7_form_elements’, ‘rl_wpcf7_form_elements’); function rl_wpcf7_form_elements($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ return qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage($content); } } add_filter(‘wpcf7_form_class_attr’, ‘rl_wpcf7_form_class_attr’); function rl_wpcf7_form_class_attr($content){ if(function_exists(‘qtrans_useCurrentLanguageIfNotFoundUseDefaultLanguage’)){ […]