hi,

i tried to google the list of widgets that i can apply in ubercart but was not able to find any good one . Like Magento, i want to show related items of the products, bundle deals , " You can also buy " option and image zoom facility.

I will be thankfull if someone helps me in the case.

Comments

skh’s picture

Old post, but incase it helps anyone, it seems that colorbox, thickbox, and lightbox are supported.

From uc_store.module:

function uc_store_uc_image_widget() {
  $widgets = array();

  if (module_exists('colorbox')) {
    $widgets['colorbox'] = array(
      'name' => t('Colorbox'),
      'callback' => 'uc_store_image_widget_colorbox',
    );
  }
  if (module_exists('thickbox')) {
    $widgets['thickbox'] = array(
      'name' => t('Thickbox'),
      'callback' => 'uc_store_image_widget_thickbox',
    );
  }
  if (module_exists('lightbox2')) {
    $widgets['lightbox2'] = array(
      'name' => t('Lightbox2'),
      'callback' => 'uc_store_image_widget_lightbox2',
    );
  }

  return $widgets;
}
mitsuko’s picture

If you prefer use the shadowbox module instead of thickbox or lightbox, you have the following option :
"Enable for all image links" --> Enable this option to automatically add the rel="shadowbox" attribute to all links pointing to an image file.
In shadowbox admin's page : admin/settings/shadowbox/automatic