Skip to content

Instantly share code, notes, and snippets.

View gonzomir's full-sized avatar

Milen Petrinski gonzomir

View GitHub Profile
@gonzomir
gonzomir / README.md
Last active January 31, 2018 08:22
Currency switcher class for use with WordPress.

Currency switcher class

Use this class to show prices in different currencies. Use add_filter to change the output of the function that shows prices to a different currency like this (the example is for Lava RealEstate):

function gonzo_price( $price, $post_id ){
  global $post, $gonzo_cw;

 if( !$post_id )
@gonzomir
gonzomir / index.html
Created April 17, 2013 14:54
Clickable SVG image with PNG fallback.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Clickable SVG with PNG fallback</title>
<style>
a { position: relative; z-index: 1; }
a span { display: inline-block; }
a object { position: relative; z-index: -1; }
</style>