This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var animateCounters = function(duration) { | |
var $count = $('.counter'); | |
if($count.length) { | |
$count.each(function () { | |
$(this).prop('Counter',0).animate({ | |
Counter: $(this).attr('count-number') | |
}, { | |
duration: duration, | |
easing: 'swing', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Make sure Polylang copies the content when creating a translation | |
function jb_editor_content( $content ) { | |
// Polylang sets the 'from_post' parameter | |
if ( isset( $_GET['from_post'] ) ) { | |
$my_post = get_post( $_GET['from_post'] ); | |
if ( $my_post ) | |
return $my_post->post_content; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Rimozione aggiornamenti wp | |
add_filter( 'pre_site_transient_update_core', create_function( '$a', "return null;" ) ); | |
// Rimozione aggiornamenti wp-plugin | |
add_filter( 'pre_site_transient_update_plugins', create_function( '$a', "return null;" ) ); | |
?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Funzione da richiamare nel document.ready | |
var scrollEffectsInit = function() { | |
if($(window).width() > 1024) { | |
$('.animate').css('opacity', '0'); | |
$('.animate-left').css('left', '-100px'); | |
$('.animate-right').css('right', '-100px'); | |
$('.animate-top').css('top', '-100px'); | |
$('.animate-bottom').css('bottom', '-100px'); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Attachment < ApplicationRecord | |
has_attached_file :file, | |
styles: ->(a) { a.instance.paperclip_styles }, | |
path: 'public/system/:class/:id/:style_:filename', | |
url: '/system/:class/:id/:style_:filename' | |
validates_attachment_presence :file | |
def paperclip_styles |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Hide payment gateways based on shipping method | |
function payment_gateway_disable( $available_gateways ) { | |
global $woocommerce; | |
$chosen_methods = WC()->session->get( 'chosen_shipping_methods' ); | |
$chosen_shipping = $chosen_methods[0]; | |
if( $chosen_shipping == 1479475819 ) { | |
unset($available_gateways['cod']); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function camelCaseKeys(object) { | |
let camelCaseObject = _.cloneDeep(object) | |
if (_.isArray(camelCaseObject)) { | |
return _.map(camelCaseObject, camelCaseKeys) | |
} | |
if (_.isString(camelCaseObject)) { | |
return camelCaseObject | |
} | |
camelCaseObject = _.mapKeys(camelCaseObject, (value, key) => _.camelCase(key)) |
OlderNewer