Skip to content

Instantly share code, notes, and snippets.

View flistefliste's full-sized avatar

flistefliste

  • Wallie
  • Seignosse, Soorts-Hossegor, France
View GitHub Profile
@plentz
plentz / nginx.conf
Last active July 22, 2024 11:19
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
@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'] ;
}
?>