kymation, on 14 May 2013 - 03:40 AM, said:
Thanks for the code. Can I add this to the distribution for Modular Front Page? You get full credit of course.
Female
14 May 2013 - 03:45 AM
13 May 2013 - 10:21 PM
<?php /* $Id: flex_slider.php v1.0 20101109 Kymation $ osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2010 osCommerce Released under the GNU General Public License */ define( 'MODULE_FRONT_PAGE_FLEX_SLIDER_TITLE', 'Flex Slider' ); define( 'MODULE_FRONT_PAGE_FLEX_SLIDER_DESCRIPTION', 'Control the function of the flex slider module on the front page.' ); ?>
flex_slider.php 9.34K
1 downloads13 May 2013 - 01:50 AM
12 May 2013 - 09:53 PM
12 May 2013 - 07:26 PM
if (tep_db_num_rows($products_query) < 100) {
while( $products_data = tep_db_fetch_array( $products_query ) ) {
$products_array[] = array( 'id' => $products_data['products_id'],
'text' => $products_data['products_name']
);
}
return tep_draw_pull_down_menu( $name, $products_array, $products_id );
} else {
return tep_draw_input_field( $name, $products_id );
}

Find content