Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I need to try and sort through my shopping cart to make some custom adjustments but am having very little luck doing so. Basically I want to get the total price and quantity of items in the cart that DO NOT have the words "Tank Top", "Tabs", or "Gift Card" in the product name. The code I have below is not working properly. It is returning the total amount and price of everything in the cart even though I am trying to not include the said items above. Can anyone help me out at all?

<?php $gift_allowed = FALSE;
$price = array();
$quantity = array();
foreach ($cart as $product) {
    if (strpos($product['name'], 'Tank Top') !== TRUE || strpos($product['name'], 'Gift Card') !== TRUE || strpos($product['name'], 'Tabs') !== TRUE) {
        $price[] = $product['price'] * $product['qty'];
        $quantity[] = $product['qty'];
    }
}
$nail_total = array_sum($price);
$nail_quantity = array_sum($quantity);
if ($nail_total >= 25) {
    $gift_allowed = TRUE;
    $free_tank = TRUE;
}
if ($nail_quantity >= 3) {
    $gift_allowed = TRUE;
    $free_nail = TRUE;
}
var_dump($gift_allowed);
//print_r($price);
//print_r($quantity);
echo '<br />' . $nail_total . '<br />';
echo $nail_quantity; ?>
<?php if ($this->session->userdata('free_nail') != TRUE && $this->session->userdata('free_tanktop') != TRUE && ($gift_allowed == TRUE)) { ?>
    <table width="100%" border="0" cellspacing="5" style="margin-bottom:5px;">
    <tr>
        <td align="center" valign="bottom" width="50%">
        <?php if ($this->cart->total_items() >= 3 && $free_nail == TRUE) { ?>
            <a href="<?php echo base_url(); ?>free_nail"><img src="<?php echo base_url(); ?>images/cart-free-nail.png" width="100%" /></a>
        <?php } ?>
        </td>
        <td align="center" valign="bottom" width="50%">
        <?php if ($this->cart->total() > 25.00 && $free_tank == TRUE) { ?>
            <a href="<?php echo base_url(); ?>free_tanktop"><img src="<?php echo base_url(); ?>images/cart-free-nail-or-tank.png" width="100%" /></a>
        <?php } ?>
        </td>
     </tr>
    </table>
<?php } ?>
share|improve this question
What do you get if you do the following on line 12: print_r($price); echo ' - '; print_r($quantity);die; – PaulSkinner Jul 24 '12 at 9:22

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.