Call Now 407.243.8420

Posts Tagged ‘web development’

Display Top Posts in WordPress with Google Analytics

Thursday, March 24th, 2011

In today’s tutorial we show you one way of displaying a list of the most popular posts in your WordPress template or sidebar. To do this you must first set up your site to use Google Analytics and make sure you’ve placed the code snippet in your theme’s footer.php. Next install the “Google Analytics Dashboard” plugin which can be found here:

http://wordpress.org/extend/plugins/google-analytics-dashboard/

We tested this with version 2.0.3 of the Google Analytics Dashboard wordpress plugin.

<?php
	// options
	$showposts = 3; // how many posts/pages to display?
	$days = 30; // how many days back to calculate?
 
	// do not edit below this line
	$thispost = 1;
	$start = date('Y-m-d', (time() - (60 * 60 * 24 * $days)));
	$end = date('Y-m-d');
	$login = new GADWidgetData(get_option('gad_auth_token'), get_option('gad_account_id'));
	$ga = new GALib('client', $login->auth_token, '', '', $login->account_id);
	$pages = $ga->pages_for_date_period($start, $end);
	echo "<ul>";
	foreach($pages as $page) {
		$url = $page['value'];
		$title = $page['children']['value'];
		// ignore these page titles
		$ignore = array(
			'(not set)',
			'Page Title 1',
			'Page Title 2'
		);
		if(!in_array($title, $ignore)){
			// list any strings you would like to remove from the titles
			$remove = array(
				" | Company Name",
				" « Company Name"
			);
			$newtitle = str_replace($remove, "", $title);
			echo '<li><a href="' . $url . '" rel="nofollow">' . $newtitle . '</a></li>';
			$thispost++;
		}
		if($thispost > $showposts) break;
	}
	echo "</ul>";
?>

How To Communicate with Web Developers

Saturday, October 30th, 2010

If you aren’t tech savvy, working with web developers can make you feel like you’re trying to speak to someone who speaks a different language than you. This simple tutorial can help you understand a few effective methods of speaking a web developer’s language.

Referencing URLs

URL stands for Uniform Resource Locator, that’s the http:// address you use to find a particular page on a website. Go to the page on which you like a Web Developer to work on, and highlight and copy the entire http:// address and copy and paste it into your e-mail or message to them when referencing the page. You could say something like:

“On http://www.domain.com/about/ please make the text size larger”

Referencing Images

Often times, especially on larger websites, the descriptions we use to refer to an image on a website can lead to confusion for the web developer. In a few short steps, you can provide the web developer with a URL to the image, so they know exactly which image you are talking about.

In Internet Explorer, you can right-click on the image and choose “Properties”. Then highlight the value of the “address:” field in the dialog box which pops up.

In Mozilla Firefox, you can simply right click the image and choose “View Image” and then paste the URL to the web developer from the address bar as above.

Then you could use this URL to say something like:

“Please replace http://www.domain.com/images/splash.jpg with the attached image”

Communicating in this way to a web developer will save both your time and theirs. Since they will know exactly what you are talking about, they can get straight to working on the task at hand, and won’t have to take more time from your already busy work day to ask for clarification.

Web Development For The iPhone And iPad: Getting Started

Thursday, August 19th, 2010

NetTuts has a great tutorial on iPhone web development.

Web Applications vs. Desktop/Mobile Applications

Sunday, April 18th, 2010

Web Applications vs. Desktop/Mobile Applications