Skip to content

Instantly share code, notes, and snippets.

View mopx's full-sized avatar

Jorge Yau mopx

View GitHub Profile
@mopx
mopx / WPML Date Translation
Created August 20, 2014 20:15
Add this to your functions.php file
add_filter('option_date_format', 'translate_date_format');
function translate_date_format($format) {
if (function_exists('icl_translate'))
$format = icl_translate('Formats', $format, $format);
return $format;
}
0xd7a4B209E43dfd96C935Fe07f9Bd82b12A5CeD96
@mopx
mopx / build.gradle
Created December 10, 2017 23:43
Add this to android/build.gradle to override the compiled and build version on every react native component
// override build.gradle on every js module.
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
}
}
}