Skip to content

Instantly share code, notes, and snippets.

View guilhermemarconi's full-sized avatar

Guilherme Marconi guilhermemarconi

  • Brazil
  • 14:42 (UTC -03:00)
View GitHub Profile
@guilhermemarconi
guilhermemarconi / is_post_type.php
Last active August 29, 2015 14:05
Function to verify the post type on WordPress
<?php
function is_post_type( $type ) {
global $wp_query;
if ( $type == get_post_type( $wp_query->post->ID ) ) return true;
return false;
}
@guilhermemarconi
guilhermemarconi / Preferences.sublime-settings
Last active March 2, 2016 20:38
My Sublime Text 3 Settings
{
"auto_complete_commit_on_tab": true,
"bold_folder_labels": true,
"close_windows_when_empty": true,
// "color_scheme": "Packages/User/SublimeLinter/base16-ocean.dark (SL).tmTheme",
"draw_minimap_border": true,
"folder_exclude_patterns":
[
".sass-cache",
"node_modules",
@guilhermemarconi
guilhermemarconi / video-hover.html
Created October 7, 2014 20:42
Play video on hover. Pause on mouse out.
<video preload="auto" loop>
<source src="video-file.mp4" type="video/mp4" />
<source src="video-file.webm" type="video/webm" />
</video>
@guilhermemarconi
guilhermemarconi / custom-alert.css
Last active August 29, 2015 14:07
Custom JavaScript Alert
/*
* Basic style to the custom alert.
* Customize it to your personal use.
*/
.alert-wrap {
position: fixed;
top: 0;
left: 0;
z-index: 2147483647; /* maximum value for a 32bit integer */
@guilhermemarconi
guilhermemarconi / woocommerce_list_color_variations_loop.php
Last active August 29, 2015 14:11
[WooCommerce] Lista variações de COR do produto e altera a imagem do mesmo de acordo com a variação
<?php
if ( $product->is_type( 'variable' ) ) :
$url = get_the_permalink();
$available_variations = $product->get_available_variations();
$count = count( $available_variations );
echo '<ul class="colors">';
for ( $i=0; $i < $count; $i++ ) {
$var_color_name = $available_variations[$i]['attributes']['attribute_pa_cor'];
$var_img = $available_variations[$i]['image_src'];
echo '<li>';
//
// Golden Ratio Typography
// --------------------------------------------------
// Golden Ratio Math
//
// Let's do some math so we can build beautiful typography and vertical rhythm.
// For any magic to happen, set the $ContentWidth variable on _variables.scss
// to match your content box width (normally this is 640px, 740px, etc...).
<?php // do not include leading php tag
/**
* For developers: WordPress debugging mode.
*
* Change this to true to enable the display of notices during development.
* It is strongly recommended that plugin and theme developers use WP_DEBUG
* in their development environments.
*/
define('WP_DEBUG', true);
#301 Redirect Local Images to Live
RedirectMatch 301 ^/wp-content/uploads/(.*) http://livewebsite.com/wp-content/uploads/$1
/**
* Be sure to include library scripts in this order. Can be placed either
* in the header or footer.
*/
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery-infinitescroll/2.0b2.120519/jquery.infinitescroll.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/masonry/3.1.2/masonry.pkgd.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.imagesloaded/3.0.4/jquery.imagesloaded.min.js"></script>
@guilhermemarconi
guilhermemarconi / woocommerce_product_cat_verify.php
Created May 30, 2015 00:41
Verify product category in WooCommerce
<?php
if ( has_term( array( 'cat-slug-1', 'cat-slug-2' ), 'product_cat' ) ) {
return true;
}