Contribution Date
Technology
Contribution Project
Contribution Details
Sorry currently this module does not support Views.
If you look into dc_ajax_add_cart.module
, you will find this code:
function template_preprocess_dc_ajax_shopping_cart(&$variables) {
...
$variables['products_list_html'] = theme('table', array(
'header' => $header,
'rows' => $row,
'attributes' => array(
'class' => array('ajax-shopping-cart-table'),
),
'sticky' => FALSE,
));
...
}
You can alter this to theme('item_list', array())
. You have to do this in your own theme template preprocess.
Issue Status
Fixed
Contribution Issue Link
Files count
0
Patches count
0