Articles for Google

Tweet Sometimes you need to get exact location by address entered by user on your website. Google Maps API offers a service that will return exact coordinate by the request you send it. See following snippet to see how to get coordinates from postcode or address by using Google Maps API. $address = ’124 Norfolk [...]

Tweet Have you ever wondered if you could let user see his website visits on his own admin page without having to leave backend of his system? I have… Actually – the CMS I made for my clients (written in Zend Framework) has this option for quite some time, and users love it. So – [...]

Tweet When there is a need for converting currency, you can use Google calculator API. It is easy to get value, and after you get it – all you have to do is parse it. Copy this simple snippet in order to make currency converter work on your website. 1 2 3 4 5 6 [...]

Tweet Recently, on website wprecipes.com, I have stumbled upon an interesting script displaying how to integrate your Google Analytics code into your WordPress theme by modifying only functions.php. To do so, just copy and paste following snippet into your functions.php in your current WordPress theme. 1 2 3 4 5 add_action(’wp_header’, ‘ga’);   function ga() [...]

Tweet To load jQuery from Google, use following snippet: <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>

Make Magento Checkout Awesome