Skip to content

Instantly share code, notes, and snippets.

@bappi-d-great
Created February 2, 2018 17:25
Show Gist options
  • Save bappi-d-great/8ea7dc2646152d897d16bcc2535ff0e4 to your computer and use it in GitHub Desktop.
Save bappi-d-great/8ea7dc2646152d897d16bcc2535ff0e4 to your computer and use it in GitHub Desktop.
WPMU DEV marketpress - give a discount, for example 10%, to all products without updating all products price value
<?php
add_filter( 'mp_product/get_price', function( $price, $obj ) {
foreach( $price as $key => $val )
{
if( is_numeric( $price[ $key ] ) )
{
$price[ $key ] = $val * 0.9;
}
}
return $price;
}, 99, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment