Jump to content

vangilsweb

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

vangilsweb's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. solved it like this: instead of: <?php if ($products->count()>0):?> code... use this: <?php if (!$products->count()):?> no code... <?php else : ?> code...
  2. solved it like this: instead of: <?php if ($products->count()>0):?> [i]code...[/i] use this: <?php if (!$products->count()):?> [i]no code...[/i] <?php else : ?> [i]code...[/i]
  3. Is there an alternative for the following function? <?php if ($products->count()>0):?> This function causes long loading time. Is there an alternative, for we only want to know if $products contains products, not the number of products.
  4. Dear phpfreaks-members, We have a webshop. For this webshop we use Magento. On our website we want to display a list with all our active manufacturers (manufacturers that contain products). 1. we put all our products in de variable $products 2. we apply a filter on this variable to select only the products from a specific manufacturer 3. we count the number of products that are in the variable $products 4. if the variable contains 1 or more products, we display the manufacturer But loading this page takes a very long time, because of the counting (count()-function) of all the manufacturers. Is there an alternative for this code? Because we only want to know if the number of products is not 0. The exact number of products we don't have to know. <?php $products = Mage::getModel('catalog/product')->getCollection(); $products->addAttributeToFilter('manufacturer',$item->getOptionId()); ?> <?php if ($products->count()>0):?> [code for showing manufacturer] ?> Thank you in advance!!!
  5. YES this works! Thank you very much!
  6. I have the following variable: $text = "javascript:openimage('http://images.icecat.biz/img/norm/high/5966342-254.jpg',850,850)" Now I want to put the string "http://images.icecat.biz/img/norm/high/5966342-254.jpg" into a variable called $url ( $url = "http://images.icecat.biz/img/norm/high/5966342-254.jpg" ) How do I do this?
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.