I'm using to contributions and I'm all but finished integrating them. I'm using Price List (HTML) from here : http://addons.oscommerce.com/info/1705
I am also using New_Field_Anywhere located here : http://addons.oscommerce.com/info/3164
I've gotten all the admin side stuff plugged in, but I'm stuck when it comes to adding these lines because of my Price List contribution.
I just have to put these lines in...im kinda stuck though :
# Find :
// create column list
$define_list = array('PRODUCT_LIST_MODEL' => PRODUCT_LIST_MODEL,
#
# After, add :
#
'PRODUCT_LIST_REF_CONST' => PRODUCT_LIST_REF_CONST,
#
# Find :
#
case 'PRODUCT_LIST_MODEL':
$select_column_list .= 'p.products_model, ';
break;
#
# After, add :
#
case 'PRODUCT_LIST_REF_CONST':
$select_column_list .= 'p.products_ref_const, ';
break;
#
# Find :
#
case 'PRODUCT_LIST_MODEL':
$listing_sql .= "p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name";
break;
#
# After, add :
#
case 'PRODUCT_LIST_REF_CONST':
$listing_sql .= "p.products_ref_const " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name";
break;
#
Is there a way to do this same thing within html?