Skip to content

Instantly share code, notes, and snippets.

@corsonr
corsonr / gist:3d0425deaa80c601d454
Last active August 9, 2023 17:49
WooCommerce: custom variations settings
<?php
// Add Variation Settings
add_action( 'woocommerce_product_after_variable_attributes', 'variation_settings_fields', 10, 3 );
// Save Variation Settings
add_action( 'woocommerce_save_product_variation', 'save_variation_settings_fields', 10, 2 );
/**
* Create new fields for variations
@florentsorel
florentsorel / functions.php
Last active September 10, 2018 06:50
WooCommerce : overirde loop/orderby.php template by button group with Bootstrap
<?php
/*
File : functions.php (in your theme)
Override "woocommerce_before_shop_loop" hook.
Add a check : (Line 41 - 43)
Avoid error if administrator choosing "rating" in administration and rating are disabled.
IF "woocommerce_enable_review_rating" option equal "no"
AND
"woocommerce_default_catalog_orderby" option equal "rating"