Skip to content

Instantly share code, notes, and snippets.

@bowatts
bowatts / unsplash.it
Created December 20, 2014 14:52
unsplash.it
http://unsplash.it/1440/375?random
@bowatts
bowatts / unsplash.it PHP random
Last active July 9, 2019 13:53
unsplash.it PHP random
https://unsplash.it/1440/375?image=<?php echo rand(1, 716); ?>
@bowatts
bowatts / lorempixel
Last active August 29, 2015 14:12
lorempixel
http://lorempixel.com/400/200 to get a random picture of 400 x 200 pixels
http://lorempixel.com/g/400/200 to get a random gray picture of 400 x 200 pixels
http://lorempixel.com/400/200/sports to get a random picture of the sports category
http://lorempixel.com/400/200/sports/1 to get picture no. 1/10 from the sports category
http://lorempixel.com/400/200/sports/Dummy-Text ...with a custom text on the random Picture
http://lorempixel.com/400/200/sports/1/Dummy-Text ...with a custom text on the selected Picture
@bowatts
bowatts / all work no play
Created January 9, 2015 16:58
all work no play
All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy, All work no play makes Bo a dull boy.
@bowatts
bowatts / Print CSS hide links
Last active July 9, 2019 13:53
Print CSS hide links
@bowatts
bowatts / Flexslider WP
Last active July 9, 2019 13:54
Flexslider + WP
<script type="text/javascript">
(function($) {
$(window).load(function(){
$('.flexslider').flexslider();
});
})(jQuery);
</script>
@bowatts
bowatts / woocommerce.php
Last active August 29, 2015 14:17
inc/woocommerce.php
<?php
add_theme_support( 'woocommerce' );
remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20 );
add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
function wcs_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
@bowatts
bowatts / WP Page Template
Last active July 9, 2019 13:54
WP Page Template
<?php
/*
Template Name: My Custom Page
*/
@bowatts
bowatts / woocommerce shortcode featured
Last active July 9, 2019 13:54
woocommerce shortcode featured
@bowatts
bowatts / recent_products.php
Created March 28, 2015 01:01
woocommerce shortcode recent_products
<?php
if (class_exists('Woocommerce')) {
echo do_shortcode( '[recent_products category="products" columns="3"]' );
}
?>