Skip to content

Instantly share code, notes, and snippets.

View flistefliste's full-sized avatar

flistefliste

  • Wallie
  • Seignosse, Soorts-Hossegor, France
View GitHub Profile
@flistefliste
flistefliste / woocommerce-whipping-methods.php
Last active September 10, 2018 08:01
$order->get_items( 'shipping' ) is useful to get all data from shipping method
<?php
$shipping_items = $order->get_items( 'shipping' );
foreach($shipping_items as $el){
$shipping_method_id = $el['method_id'] ;
}
?>
@plentz
plentz / nginx.conf
Last active April 24, 2024 11:15
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048