Skip to content

Instantly share code, notes, and snippets.

Avatar

Rémy Perona Tabrisrp

View GitHub Profile
View repeater field display
<?php
if ( have_rows( 'repeater_field', $order_id ) ) :
while ( have_rows( 'repeater_field', $order_id ) ) : the_row();
$type = get_sub_field( 'type', $order_id );
if( $type === 'tekst' ): ?>
<div id="customerMessageTxt">
<?php the_sub_field($type, $order_id); ?>
</div>
@Tabrisrp
Tabrisrp / gist:85628f1e90880c04f3fb
Last active August 29, 2015 14:05
Get a taxonomy's terms in posts with another taxonomy's term
View gist:85628f1e90880c04f3fb
<?php
$base_taxonomy = 'pays';
$term_id = '1';
$required_taxonomy = 'villes';
$required_terms = array();
$required_terms_id = array();
$objects_in_tax = get_objects_in_term( $term_id, $taxonomy );
@Tabrisrp
Tabrisrp / google-sitelinks-search-box-json-ld
Last active August 29, 2015 14:06
Add JSON+LD markup for Google sitelinks search box
View google-sitelinks-search-box-json-ld
@Tabrisrp
Tabrisrp / gist:e15d189bcf7cf444b413
Last active August 29, 2015 14:22
geo-mashup-custom
View gist:e15d189bcf7cf444b413
GeoMashup.addAction( 'loadedMap', function( properties, map ) {
var gmap = map.getMap();
var styles = [
{
"featureType": "water",
"elementType": "geometry.fill",
"stylers": [
{ "color": "#8eade4" }
]
},{
View gist:a5bb674e799bf49df16b
/* Maps fill the frame, makes percentage height maps a bit easier */
html, body { height: 100%; overflow: hidden; margin: 0; }
/* Info window */
.locationinfo { overflow:auto; width:600px; height:300px; }
.user-location-info { overflow:auto; width:150px; height:80px; }
.comment-location-info { overflow:auto; width:200px; height:140px; }
.info-window-max { overflow:auto; }
@Tabrisrp
Tabrisrp / gist:b6e01263e1bbcdcca7f2
Created June 3, 2015 11:35
geo-mashup-info-window.php
View gist:b6e01263e1bbcdcca7f2
<?php
// A potentially heavy-handed way to remove shortcode-like content
add_filter( 'the_excerpt', array( 'GeoMashupQuery', 'strip_brackets' ) );
?>
<div class="locationinfo post-location-info">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<section class="line entry-content">
@Tabrisrp
Tabrisrp / gist:ba5d8d9705342b480e4a
Created June 3, 2015 11:37
geo-mashup-nearby-list
View gist:ba5d8d9705342b480e4a
<?php
/**
* Variables in scope:
* $geo_mashup_search object The managing search object
* $search_text string The search text entered in the form
* $radius int The search radius
* $units string 'mi' or 'km'
* $object_name string 'post' or 'user' or 'comment'
* $near_location array The location searched, including 'lat' and 'lng'
* $distance_factor float The multiplier to convert the radius to kilometers
View gist:1b70c9c4b56cc9df217e
<h2 class="mw1140p center"><?php _e( 'Discover more posts around here', 'guide-japon' ); ?></h2>
<?php $single_coordinates = GeoMashup::post_coordinates();
echo GeoMashup::map( array( 'map_content' => 'global', 'near_lat' => $single_coordinates['lat'], 'near_lng' => $single_coordinates['lng'], 'radius_km' => 10, 'center_lat' => $single_coordinates['lat'], 'center_lng' => $single_coordinates['lng'], 'height' => 400, 'marker_select_center' => 'true' ) ); ?>
@Tabrisrp
Tabrisrp / rocket-clean-cache-after-order.php
Last active September 20, 2016 11:52
Clear WP Rocket cache after an order is made
View rocket-clean-cache-after-order.php
<?php
/**
* Plugin Name: WP Rocket clean post cache after WC order
* Description: Clean the cache for each product ordered after a completed WooCommerce order
* Author: WP Rocket team
* License: GNU General Public License v3 or later
* License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
// Basic security, prevents file from being loaded directly.
@Tabrisrp
Tabrisrp / disable-cache-admin.php
Created December 12, 2016 15:27
Disable cache for admin
View disable-cache-admin.php
if ( current_user_can( 'administrator' ) ) {
define( 'DONOTCACHEPAGE', true );
}