Skip to content

Instantly share code, notes, and snippets.

@nickdavis
nickdavis / gist:10524049
Created April 12, 2014 08:05
.htaccess 301 redirect entire directory (e.g. images folder moves from one place to another)
#301 Redirect Entire Directory
RedirectMatch 301 ^/blog/wp-content/uploads/(.*) http://www.domain.com/wp-content/uploads/$1
@nickdavis
nickdavis / text-widget.html
Created April 23, 2014 14:19
Featured List example for LeanThemes.co
<ul class="featured">
<li>Saves you time</li>
<li>Makes you feel part of the community</li>
<li>Saves you money</li>
</ul>
@nickdavis
nickdavis / vimeo-example.html
Created April 23, 2014 14:23
Vimeo iframe example for LeanThemes.co
<iframe src="//player.vimeo.com/video/40548631?title=0&amp;byline=0&amp;portrait=0" width="960" height="540" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
@nickdavis
nickdavis / contact-box.html
Created April 23, 2014 14:27
Contact Box code example for LeanThemes.co
<p>We look forward to hearing from you. Really.</p>
<div class="one-half first">
<p class="address">1 Happy Lane,
Timbuctoo,
01345 Swaziland</p>
</div>
<div class="one-half">
<p class="email">hello@home.com</p>
@nickdavis
nickdavis / genesis-simple-edits.html
Created April 23, 2014 14:47
Genesis Simple Edits plugin 'Footer Output' example for Lean Kickstart by LeanThemes.co
<p>
<span class="alignleft">Copyright [footer_copyright] <a href="http://leanthemes.co/themes/kickstart/">Kickstart Theme</a> built on the [footer_genesis_link] and [footer_wordpress_link]</span>
<span class="alignright">Theme by D&N at <a href="http://leanthemes.co">Lean Themes</a></span>
</p>
@nickdavis
nickdavis / custom-text.html
Created April 24, 2014 08:30
User Profile widget 'Custom Text' example for 'Lean Splash' theme by LeanThemes.co
<h4>Derry «pixelpusher» Birkett</h4>
Design
@nickdavis
nickdavis / wp-config.php
Created July 18, 2014 08:36
How to define Genesis as the default theme on WordPress multisite
define( 'WP_DEFAULT_THEME', 'genesis' );
@nickdavis
nickdavis / .htaccess
Created July 18, 2014 08:41
Redirect local WordPress development environment media files to show live site media files instead (to save downloading them all)
#301 Redirect Entire Directory
RedirectMatch 301 ^/wp-content/uploads/(.*) http://livesiteurl.com/wp-content/uploads/$1
<?php
/**
* This file customizes the Homepage output for the Aua Med School Theme.
*
* @author Halflife Studios
* @package Aua Med School
* @subpackage Customizations
*/
add_action('get_header', 'auamed_home_enqueue_scripts');
@nickdavis
nickdavis / style.css
Created October 27, 2014 21:41
Make AgentPress Pro homepage background scroll WITH the content instead of having the content scroll over it (add to the end of your style.css file)
.backstretch {
position: static !important;
}