Page 2 of 5 FirstFirst 1234 ... LastLast
Results 11 to 20 of 49
  1. #11
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: sold out sm button position

    Steve, you're an absolute genius! That last post worked just perfectly.

    Thank you so much

  2. #12
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: sold out sm button position

    ... and looking at the effect on your site... well worth the effort.
    ~Steve~

  3. #13
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: sold out sm button position

    Just noticed that the sold out image only appears over the images in 'product category view'. When you click on my home page and it shows you a list of March products at random, it's not marking these as sold out...

    Any idea how I get the sold out image to appear over the sold out items when they're visible in the "Specials" centrebox?

  4. #14
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: sold out sm button position

    for the "new products for march" I have ajdjusted the SQL so products that are out of stock will not be shown..

    the file to edit is includes/modules/CUSTOM/new_products.php..



    line 20

    Code:
    $display_limit = zen_get_new_date_range();
    
    if ( (($manufacturers_id > 0 && $_GET['filter_id'] == 0) || $_GET['music_genre_id'] > 0 || $_GET['record_company_id'] > 0) || (!isset($new_products_category_id) || $new_products_category_id == '0') ) {
      $new_products_query = "select distinct p.products_id, p.products_image, p.products_tax_class_id, p.products_quantity, pd.products_name,
                                    p.products_date_added, p.products_price, p.products_type, p.master_categories_id
                               from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
                               where p.products_id = pd.products_id
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                               and   p.products_status = 1 and p.products_quantity >= 1 " . $display_limit;
    } else {
      // get all products and cPaths in this subcat tree
      $productsInCategory = zen_get_categories_products_list( (($manufacturers_id > 0 && $_GET['filter_id'] > 0) ? zen_get_generated_category_path_rev($_GET['filter_id']) : $cPath), false, true, 0, $display_limit);
    
      if (is_array($productsInCategory) && sizeof($productsInCategory) > 0) {
        // build products-list string to insert into SQL query
        foreach($productsInCategory as $key => $value) {
          $list_of_products .= $key . ', ';
        }
        $list_of_products = substr($list_of_products, 0, -2); // remove trailing comma
    
    $new_products_query = "select distinct p.products_id, p.products_image, p.products_tax_class_id,p.products_quantity, pd.products_name,
                                      p.products_date_added, p.products_price, p.products_type, p.master_categories_id
                               from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
                               where p.products_id = pd.products_id
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                               and p.products_status = 1 and p.products_quantity >= 1
                               and p.products_id in (" . $list_of_products . ")";
      }
    }
    If you still want an Out of Stock image on New products, then I'll have a look for you another time... it will be the same file (includes/modules/CUSTOM/new_products.php) if you want to have a go yourself...

    as for Specials... maybe the product shouldn't be a "special" if you don't have any to sell.
    ~Steve~

  5. #15
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: sold out sm button position

    I like a good challenge... below is a copy of new_products.php for your custom module folder.

    It should put the out of stock image on the new products...

    Make sure you test it thoroughly in all browsers...

    Code:
    <?php
    /**
     * new_products.php module
     *
     * @package modules
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: new_products.php 6424 2007-05-31 05:59:21Z ajeh $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die('Illegal Access');
    }
    
    // initialize vars
    $categories_products_id_list = '';
    $list_of_products = '';
    $new_products_query = '';
    
    $display_limit = zen_get_new_date_range();
    
    if ( (($manufacturers_id > 0 && $_GET['filter_id'] == 0) || $_GET['music_genre_id'] > 0 || $_GET['record_company_id'] > 0) || (!isset($new_products_category_id) || $new_products_category_id == '0') ) {
      $new_products_query = "select distinct p.products_id, p.products_image, p.products_tax_class_id, p.products_quantity, pd.products_name,
                                    p.products_date_added, p.products_price, p.products_type, p.master_categories_id
                               from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
                               where p.products_id = pd.products_id
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                               and   p.products_status = 1 " . $display_limit;
    } else {
      // get all products and cPaths in this subcat tree
      $productsInCategory = zen_get_categories_products_list( (($manufacturers_id > 0 && $_GET['filter_id'] > 0) ? zen_get_generated_category_path_rev($_GET['filter_id']) : $cPath), false, true, 0, $display_limit);
    
      if (is_array($productsInCategory) && sizeof($productsInCategory) > 0) {
        // build products-list string to insert into SQL query
        foreach($productsInCategory as $key => $value) {
          $list_of_products .= $key . ', ';
        }
        $list_of_products = substr($list_of_products, 0, -2); // remove trailing comma
    
    $new_products_query = "select distinct p.products_id, p.products_image, p.products_tax_class_id,p.products_quantity, pd.products_name,
                                      p.products_date_added, p.products_price, p.products_type, p.master_categories_id
                               from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd
                               where p.products_id = pd.products_id
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                               and p.products_status = 1
                               and p.products_id in (" . $list_of_products . ")";
      }
    }
    
    if ($new_products_query != '') $new_products = $db->ExecuteRandomMulti($new_products_query, MAX_DISPLAY_NEW_PRODUCTS);
    
    $row = 0;
    $col = 0;
    $list_box_contents = array();
    $title = '';
    
    $num_products_count = ($new_products_query == '') ? 0 : $new_products->RecordCount();
    
    // show only when 1 or more
    if ($num_products_count > 0) {
      if ($num_products_count < SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS == 0 ) {
        $col_width = floor(100/$num_products_count);
      } else {
        $col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS);
      }
    
      while (!$new_products->EOF) {
        $products_price = zen_get_products_display_price($new_products->fields['products_id']);
        if (!isset($productsInCategory[$new_products->fields['products_id']])) $productsInCategory[$new_products->fields['products_id']] = zen_get_generated_category_path_rev($new_products->fields['master_categories_id']);
    
        $soldoutimage = ($new_products->fields['products_quantity'] > 0) ? '' : '<div class="sold_out_on_image"><img src="http://www.dystynction.com/includes/templates/freetemplate2/images/button_sold_out_sm_mine.gif"></div>';
    
    
        $list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsNew centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
        'text' => (($new_products->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $new_products->fields['products_image'], $new_products->fields['products_name'], IMAGE_PRODUCT_NEW_WIDTH, IMAGE_PRODUCT_NEW_HEIGHT) . '</a><br />'.$soldoutimage) . '<a href="' . zen_href_link(zen_get_info_page($new_products->fields['products_id']), 'cPath=' . $productsInCategory[$new_products->fields['products_id']] . '&products_id=' . $new_products->fields['products_id']) . '">' . $new_products->fields['products_name'] . '</a><br />' . $products_price);
    
        $col ++;
        if ($col > (SHOW_PRODUCT_INFO_COLUMNS_NEW_PRODUCTS - 1)) {
          $col = 0;
          $row ++;
        }
        $new_products->MoveNextRandom();
      }
    
      if ($new_products->RecordCount() > 0) {
        if (isset($new_products_category_id) && $new_products_category_id != 0) {
          $category_title = zen_get_categories_name((int)$new_products_category_id);
          $title = '<h2 class="centerBoxHeading">' . sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B')) . ($category_title != '' ? ' - ' . $category_title : '' ) . '</h2>';
        } else {
          $title = '<h2 class="centerBoxHeading">' . sprintf(TABLE_HEADING_NEW_PRODUCTS, strftime('%B')) . '</h2>';
        }
        $zc_show_new_products = true;
      }
    }
    ?>
    ~Steve~

  6. #16
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: sold out sm button position

    Hi Steve,

    Thanks for the code, I've uploaded it and tested in all browsers.

    I know you like a good challenge and you've certainly helped me immensely so far, but the sold out image does not appear over the sold out product images on my home page view (I have my home page set to display specials for %s (March))

    How would I get the sold out image to appear in the specials view?

  7. #17
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: sold out sm button position

    ohh ok.. the above code is If you display "new products" on your index page...

    soooooo for the specials on the index page.... the php below is the complete listing for includes/modules/CUSTOM/specials_index.php

    Code:
    <?php
    /**
     * specials_index module
     *
     * @package modules
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: specials_index.php 6424 2007-05-31 05:59:21Z ajeh $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die('Illegal Access');
    }
    
    // initialize vars
    $categories_products_id_list = '';
    $list_of_products = '';
    $specials_index_query = '';
    $display_limit = '';
    
    if ( (($manufacturers_id > 0 && $_GET['filter_id'] == 0) || $_GET['music_genre_id'] > 0 || $_GET['record_company_id'] > 0) || (!isset($new_products_category_id) || $new_products_category_id == '0') ) {
      $specials_index_query = "select p.products_id, p.products_image, pd.products_name, p.master_categories_id, p.products_quantity from (" . TABLE_PRODUCTS . " p
                               left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id
                               left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id )
                               where p.products_id = s.products_id
                               and p.products_id = pd.products_id
                               and p.products_status = '1' and s.status = 1
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'";
    } else {
      // get all products and cPaths in this subcat tree
      $productsInCategory = zen_get_categories_products_list( (($manufacturers_id > 0 && $_GET['filter_id'] > 0) ? zen_get_generated_category_path_rev($_GET['filter_id']) : $cPath), false, true, 0, $display_limit);
    
      if (is_array($productsInCategory) && sizeof($productsInCategory) > 0) {
        // build products-list string to insert into SQL query
        foreach($productsInCategory as $key => $value) {
          $list_of_products .= $key . ', ';
        }
        $list_of_products = substr($list_of_products, 0, -2); // remove trailing comma
        $specials_index_query = "select distinct p.products_id, p.products_image, pd.products_name, p.master_categories_id, p.products_quantity
                                 from (" . TABLE_PRODUCTS . " p
                                 left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id
                                 left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id )
                                 where p.products_id = s.products_id
                                 and p.products_id = pd.products_id
                                 and p.products_status = '1' and s.status = '1'
                                 and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                                 and p.products_id in (" . $list_of_products . ")";
      }
    }
    if ($specials_index_query != '') $specials_index = $db->ExecuteRandomMulti($specials_index_query, MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX);
    
    $row = 0;
    $col = 0;
    $list_box_contents = array();
    $title = '';
    
    $num_products_count = ($specials_index_query == '') ? 0 : $specials_index->RecordCount();
    
    // show only when 1 or more
    if ($num_products_count > 0) {
      if ($num_products_count < SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS == 0 ) {
        $col_width = floor(100/$num_products_count);
      } else {
        $col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS);
      }
    
      $list_box_contents = array();
      while (!$specials_index->EOF) {
        $products_price = zen_get_products_display_price($specials_index->fields['products_id']);
        if (!isset($productsInCategory[$specials_index->fields['products_id']])) $productsInCategory[$specials_index->fields['products_id']] = zen_get_generated_category_path_rev($specials_index->fields['master_categories_id']);
    
        $soldoutimage = ($specials_index->fields['products_quantity'] > 0) ? '' : '<div class="sold_out_on_image"><img src="http://www.dystynction.com/includes/templates/freetemplate2/images/button_sold_out_sm_mine.gif"></div>';
    
        $specials_index->fields['products_name'] = zen_get_products_name($specials_index->fields['products_id']);
        $list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsSpecials centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
        'text' => (($specials_index->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' . $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' . (int)$specials_index->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $specials_index->fields['products_image'], $specials_index->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br />'.$soldoutimage) . '<a href="' . zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' . $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' . $specials_index->fields['products_id']) . '">' . $specials_index->fields['products_name'] . '</a><br />' . $products_price);
    
        $col ++;
        if ($col > (SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS - 1)) {
          $col = 0;
          $row ++;
        }
        $specials_index->MoveNextRandom();
      }
    
      if ($specials_index->RecordCount() > 0) {
        $title = '<h2 class="centerBoxHeading">' . sprintf(TABLE_HEADING_SPECIALS_INDEX, strftime('%B')) . '</h2>';
        $zc_show_specials = true;
      }
    }
    ?>
    ~Steve~

  8. #18
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: sold out sm button position

    Yes, that works but I have a modified version of specials_index.php.

    Could you point out what I'd need to add to my file instead of uploading the entire code?

    My file is modified to display different text under the images :-)

    Sorry to be such a pain.

  9. #19
    Join Date
    Jan 2009
    Posts
    2,123
    Plugin Contributions
    0

    Default Re: sold out sm button position

    If it's easier then here's a copy of my modified file:

    PHP Code:
    <?php
    /**
     * specials_index module
     *
     * @package modules
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: specials_index.php 6424 2007-05-31 05:59:21Z ajeh $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die(
    'Illegal Access');
    }

    // initialize vars
    $categories_products_id_list '';
    $list_of_products '';
    $specials_index_query '';
    $display_limit '';

    if ( ((
    $manufacturers_id && $_GET['filter_id'] == 0) || $_GET['music_genre_id'] > || $_GET['record_company_id'] > 0) || (!isset($new_products_category_id) || $new_products_category_id == '0') ) {
      
    $specials_index_query "select distinct p.products_id, p.products_image, p.products_tax_class_id, pd.products_name,m.manufacturers_name, m.manufacturers_id,
                               p.products_date_added, p.products_price, p.products_type,  p.products_model,p.manufacturers_id,p.master_categories_id
                               from " 
    TABLE_PRODUCTS " p, " TABLE_PRODUCTS_DESCRIPTION " pd, ".TABLE_MANUFACTURERS " m
                               where p.products_id = pd.products_id
                               and p.manufacturers_id = m.manufacturers_id
                               and pd.language_id = '" 
    . (int)$_SESSION['languages_id'] . "'
                               and   p.products_status = 1 " 
    $display_limit;
    } else {
      
    // get all products and cPaths in this subcat tree
      
    $productsInCategory zen_get_categories_products_list( (($manufacturers_id && $_GET['filter_id'] > 0) ? zen_get_generated_category_path_rev($_GET['filter_id']) : $cPath), falsetrue0$display_limit);

      if (
    is_array($productsInCategory) && sizeof($productsInCategory) > 0) {
        
    // build products-list string to insert into SQL query
        
    foreach($productsInCategory as $key => $value) {
          
    $list_of_products .= $key ', ';
        }
        
    $list_of_products substr($list_of_products0, -2); // remove trailing comma
        
    $specials_index_query "select distinct p.products_id, p.products_image, pd.products_name, p.master_categories_id,  p.products_model,p.manufacturers_id
                                 from (" 
    TABLE_PRODUCTS " p
                                 left join " 
    TABLE_SPECIALS " s on p.products_id = s.products_id
                                 left join " 
    TABLE_PRODUCTS_DESCRIPTION " pd on p.products_id = pd.products_id )
                                 where p.products_id = s.products_id
                                 and p.products_id = pd.products_id
                                 and p.products_status = '1' and s.status = '1'
                                 and pd.language_id = '" 
    . (int)$_SESSION['languages_id'] . "'
                                 and p.products_id in (" 
    $list_of_products ")";
      }
    }
    if (
    $specials_index_query != ''$specials_index $db->ExecuteRandomMulti($specials_index_queryMAX_DISPLAY_SPECIAL_PRODUCTS_INDEX);

    $row 0;
    $col 0;
    $list_box_contents = array();
    $title '';

    $num_products_count = ($specials_index_query == '') ? $specials_index->RecordCount();

    // show only when 1 or more
    if ($num_products_count 0) {
      if (
    $num_products_count SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS == ) {
        
    $col_width floor(100/$num_products_count);
      } else {
        
    $col_width floor(100/SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS);
      }

      
    $list_box_contents = array();
      while (!
    $specials_index->EOF) {
        
    $products_price zen_get_products_display_price($specials_index->fields['products_id']);
        if (!isset(
    $productsInCategory[$specials_index->fields['products_id']])) $productsInCategory[$specials_index->fields['products_id']] = zen_get_generated_category_path_rev($specials_index->fields['master_categories_id']);

        
    $specials_index->fields['products_name'] = zen_get_products_name($specials_index->fields['products_id']);
        
    $list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsSpecials centeredContent back"' ' ' 'style="width:' $col_width '%;"',
        
        
    'text' => (($specials_index->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' '<a href="' zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' $specials_index->fields['products_id']) . '">' zen_image(DIR_WS_IMAGES $specials_index->fields['products_image'], $specials_index->fields['products_name'], SMALL_IMAGE_WIDTHSMALL_IMAGE_HEIGHT) . '</a><br />') . '<a href="' zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' $specials_index->fields['products_id']) . '">''</a>' .$specials_index->fields['manufacturers_name'] . $manufacturers_name.'<br />'$specials_index->fields['products_model'] .$products_model .'<br />' .$products_price.'<br /><p>' );    

        
    $col ++;
        if (
    $col > (SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS 1)) {
          
    $col 0;
          
    $row ++;
        }
        
    $specials_index->MoveNextRandom();
      }

      if (
    $specials_index->RecordCount() > 0) {
        
    $title '<h2 class="centerBoxHeading">' sprintf(TABLE_HEADING_SPECIALS_INDEXstrftime('%B')) . '</h2>';
        
    $zc_show_specials true;
      }
    }
    ?>

  10. #20
    Join Date
    Aug 2006
    Location
    UK
    Posts
    449
    Plugin Contributions
    0

    Default Re: sold out sm button position

    Try this... (if you do a file comparison, you will see the few modifications)


    Code:
    <?php
    /**
     * specials_index module
     *
     * @package modules
     * @copyright Copyright 2003-2007 Zen Cart Development Team
     * @copyright Portions Copyright 2003 osCommerce
     * @license http://www.zen-cart.com/license/2_0.txt GNU Public License V2.0
     * @version $Id: specials_index.php 6424 2007-05-31 05:59:21Z ajeh $
     */
    if (!defined('IS_ADMIN_FLAG')) {
      die('Illegal Access');
    }
    
    // initialize vars
    $categories_products_id_list = '';
    $list_of_products = '';
    $specials_index_query = '';
    $display_limit = '';
    
    if ( (($manufacturers_id > 0 && $_GET['filter_id'] == 0) || $_GET['music_genre_id'] > 0 || $_GET['record_company_id'] > 0) || (!isset($new_products_category_id) || $new_products_category_id == '0') ) {
      $specials_index_query = "select distinct p.products_id, p.products_image, p.products_tax_class_id, pd.products_name,m.manufacturers_name, m.manufacturers_id, p.products_quantity,
                               p.products_date_added, p.products_price, p.products_type,  p.products_model,p.manufacturers_id,p.master_categories_id
                               from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, ".TABLE_MANUFACTURERS . " m
                               where p.products_id = pd.products_id
                               and p.manufacturers_id = m.manufacturers_id
                               and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                               and   p.products_status = 1 " . $display_limit;
    } else {
      // get all products and cPaths in this subcat tree
      $productsInCategory = zen_get_categories_products_list( (($manufacturers_id > 0 && $_GET['filter_id'] > 0) ? zen_get_generated_category_path_rev($_GET['filter_id']) : $cPath), false, true, 0, $display_limit);
    
      if (is_array($productsInCategory) && sizeof($productsInCategory) > 0) {
        // build products-list string to insert into SQL query
        foreach($productsInCategory as $key => $value) {
          $list_of_products .= $key . ', ';
        }
        $list_of_products = substr($list_of_products, 0, -2); // remove trailing comma
        $specials_index_query = "select distinct p.products_id, p.products_image, pd.products_name, p.master_categories_id,  p.products_model,p.manufacturers_id, p.products_quantity
                                 from (" . TABLE_PRODUCTS . " p
                                 left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id
                                 left join " . TABLE_PRODUCTS_DESCRIPTION . " pd on p.products_id = pd.products_id )
                                 where p.products_id = s.products_id
                                 and p.products_id = pd.products_id
                                 and p.products_status = '1' and s.status = '1'
                                 and pd.language_id = '" . (int)$_SESSION['languages_id'] . "'
                                 and p.products_id in (" . $list_of_products . ")";
      }
    }
    if ($specials_index_query != '') $specials_index = $db->ExecuteRandomMulti($specials_index_query, MAX_DISPLAY_SPECIAL_PRODUCTS_INDEX);
    
    $row = 0;
    $col = 0;
    $list_box_contents = array();
    $title = '';
    
    $num_products_count = ($specials_index_query == '') ? 0 : $specials_index->RecordCount();
    
    // show only when 1 or more
    if ($num_products_count > 0) {
      if ($num_products_count < SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS || SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS == 0 ) {
        $col_width = floor(100/$num_products_count);
      } else {
        $col_width = floor(100/SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS);
      }
    
      $list_box_contents = array();
      while (!$specials_index->EOF) {
        $products_price = zen_get_products_display_price($specials_index->fields['products_id']);
        if (!isset($productsInCategory[$specials_index->fields['products_id']])) $productsInCategory[$specials_index->fields['products_id']] = zen_get_generated_category_path_rev($specials_index->fields['master_categories_id']);
    
    
        $soldoutimage = ($specials_index->fields['products_quantity'] > 0) ? '' : '<div class="sold_out_on_image"><img src="http://www.dystynction.com/includes/templates/freetemplate2/images/button_sold_out_sm_mine.gif"></div>';
    
    
        $specials_index->fields['products_name'] = zen_get_products_name($specials_index->fields['products_id']);
        $list_box_contents[$row][$col] = array('params' => 'class="centerBoxContentsSpecials centeredContent back"' . ' ' . 'style="width:' . $col_width . '%;"',
    
        'text' => (($specials_index->fields['products_image'] == '' and PRODUCTS_IMAGE_NO_IMAGE_STATUS == 0) ? '' : '<a href="' . zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' . $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' . $specials_index->fields['products_id']) . '">' . zen_image(DIR_WS_IMAGES . $specials_index->fields['products_image'], $specials_index->fields['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br />'.$soldoutimage) . '<a href="' . zen_href_link(zen_get_info_page($specials_index->fields['products_id']), 'cPath=' . $productsInCategory[$specials_index->fields['products_id']] . '&products_id=' . $specials_index->fields['products_id']) . '">'. '</a>' .$specials_index->fields['manufacturers_name'] . $manufacturers_name.'<br />'. $specials_index->fields['products_model'] .$products_model .'<br />' .$products_price.'<br /><p>' );
    
        $col ++;
        if ($col > (SHOW_PRODUCT_INFO_COLUMNS_SPECIALS_PRODUCTS - 1)) {
          $col = 0;
          $row ++;
        }
        $specials_index->MoveNextRandom();
      }
    
      if ($specials_index->RecordCount() > 0) {
        $title = '<h2 class="centerBoxHeading">' . sprintf(TABLE_HEADING_SPECIALS_INDEX, strftime('%B')) . '</h2>';
        $zc_show_specials = true;
      }
    }
    ?>
    ~Steve~

 

 
Page 2 of 5 FirstFirst 1234 ... LastLast

Similar Threads

  1. sold out button
    By dmagic in forum Templates, Stylesheets, Page Layout
    Replies: 4
    Last Post: 28 Jul 2014, 07:45 AM
  2. Sold Out Button says "Sold Out SM".... Sophy Blue
    By huntleybill in forum Addon Templates
    Replies: 3
    Last Post: 28 Nov 2011, 05:32 AM
  3. Chenge the "sold out" button position
    By ilmarchez in forum Templates, Stylesheets, Page Layout
    Replies: 18
    Last Post: 15 Apr 2011, 10:52 PM
  4. SOLD-OUT graphic /outline /position
    By rdcast in forum General Questions
    Replies: 2
    Last Post: 9 Apr 2011, 04:57 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg