Skip to content

Instantly share code, notes, and snippets.

@iCodeForBananas
Created February 6, 2015 23:50
Show Gist options
  • Select an option

  • Save iCodeForBananas/b4bbd98d958f8f0674ef to your computer and use it in GitHub Desktop.

Select an option

Save iCodeForBananas/b4bbd98d958f8f0674ef to your computer and use it in GitHub Desktop.
/**
* Control the express shippping errors alert.
*/
$only_autom_products_in_shopping_cart = true;
foreach ($products as $product)
{
// is not a shipping method and is not a manufacturer product
if (! in_array($product['products']['products_id'], [416, 318]) && $product['manufacturers_id'] == 0)
{
$only_autom_products_in_shopping_cart = false;
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment