By Ammon | Published:
April 2, 2010
Slickr Gallery is a sleek little WordPress plugin for displaying Flickr albums on websites. The themes included in the plugin don’t work with Thematic based themes so I made one that does.
Download
Download slickr_thematic_theme.tar.gz
Installation
Just download this file, un-tar it ($ tar -xvzf slickr_thematic_theme.tar.gz) and copy the extracted folder to wordpress/wp-content/plugins/slickr-gallery/themes. Then you can [...]
By Ammon | Published:
February 11, 2010
The following code, when included in the functions.php file in your Wordpress child theme, will correctly load Mootools and a custom script. This is the only way I am able make custom scripts work, but you hear a lot of stuff out there on the interweb…
<?php
function add_js() {
$stylesheet_dir = get_bloginfo(’stylesheet_directory’);
[...]
Also posted in Solutions |
By admin | Published:
April 25, 2009
Originally posted on 10/10/08 at http://likesalmon.wordpress.com
I struggled with this, as the usual method of including a javascript library and an external javascript script did not work. Usually, I would do this:
<script style=”text/javascript” src=<?php bloginfo(‘url’); ?>/wp-includes/js/jquery/jquery.js” ></style>
<script style=”text/javascript” src=<?php bloginfo(‘template_directory’); ?>/myScript.js” ></style>
But that didn’t work at all, even when I included the jQuery.noConflict() line in [...]
By admin | Published:
April 25, 2009
Originally posted on 3/27/08 at http://likesalmon.wordpress.com/
This was originally a reply to liverbones’ comment of my last post, but it became long so I gave it a home of its own.
Just about every day I run across some design or technical problem that I can only solve through blogs or message boards. Its an amazing resource, [...]
By admin | Published:
April 25, 2009
Originally posted on 3/26/2008 at http://likesalmon.wordpress.com/
This is a progress report on MilhollandCycles.com, website I am building for my brother Greg, who builds bicycles in our house in Portland. His bikes are great. He built me the coolest fillet braised mountain bike that languishes in the basement while I try to save enough cash [...]
By admin | Published:
November 14, 2008
I’ve developed 3 Wordpress sites at this point, and every time I’ve used the Kubrick theme as a basis for my custom theme. Kubrick bugs me because it uses a lot of non-semantic id and class names, but the layout of the php is good and it has all the functionality I need built in, [...]
Also posted in CSS Frameworks |