Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

coconimo

Archived
  • Posts

    9
  • Joined

  • Last visited

About coconimo

  • Birthday 12/05/1970

Profile Information

  • Real Name
    corinne
  • Gender
    Female
  • Location
    Montpellier (FR)

coconimo's Achievements

  1. @Yutaka I noticed this problem with Safari. a possible hack : change in catalog/includes/modules/new_products_glide.php this line : <div class="image"><?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $new_products['products_image']) . '" rel="imagebox" title="' . $new_products['products_name'] . ' for only ' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . ' !' . '" >' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], CLICK_ON . $new_products['products_name'] . FOR_ZOOM, SMALL_NPG_IMAGE_WIDTH, SMALL_NPG_IMAGE_HEIGHT) . '</a>';?></div> with : <div class="image"><?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $new_products['products_image']) . '" rel="imagebox" title="' . $new_products['products_name'] . ' for only ' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])) . ' !' . '" >' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], CLICK_ON . $new_products['products_name'] . FOR_ZOOM, SMALL_NPG_IMAGE_WIDTH, SMALL_NPG_IMAGE_HEIGHT, 'onClick="window.scroll(0, 0);"') . '</a>';?></div> i just added this parameter : onClick="window.scroll(0, 0); ? ... for want of better...
  2. hi, @NeilColeclough I visited your site. with or without my add-on, firefox is in quirks mode ! read this first : http://www.cs.tut.fi/~jkorpela/quirks-mode.html The excessive width problem is due to a code of standards that fail to comply. example of error found on your site : <link rel="shortcut icon" href="favicon.ico" > <link rel="icon" href="animated_favicon1.gif" type="image/gif" > declared after the </ head> so, you have to correct all your mistakes before you install the module. this plugin for firefox is very useful -> http://chrispederick.com/work/web-developer/ @aking02 How do I execute the sql file??????? : -> http://drupal.org/node/81995
  3. just change this line in catalog/includes/modules/specials_products_carousel.php : <?php echo '<a href="' . tep_href_link(DIR_WS_IMAGES . $specials['products_image']) . '" rel="imagebox" title="' . $specials['products_name'] . FOR_ONLY . $currencies->display_price($specials['specials_new_products_price'], tep_get_tax_rate($specials['products_tax_class_id'])) . ' !' . '" >' . tep_image(DIR_WS_IMAGES . $specials['products_image'], CLICK_ON . $specials['products_name'] . FOR_ZOOM, SPC_IMAGE_WIDTH, SPC_IMAGE_HEIGHT) . '</a>';?> with : <?php echo '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $specials['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $specials['products_image'], $specials['products_name'], SMALL_NPG_IMAGE_WIDTH, SMALL_NPG_IMAGE_HEIGHT) . '</a>';?>
  4. This add-on allows you to display a new module for specials products with a jquery carousel animation. you can change the settings of the animation in your administration's backoffice: -> animation speed/numbers of products for display & scroll/and more ... -> add 'bound animation' (you can activate/desactivate this effect in your backoffice) -> add 'imagebox' effect for yours pictures. -> add automatic calculation (percentage) above the picture. -> total control with externals css files -> Compatibility with only these browsers : Internet Explorer 6/7/8béta(PC) - FireFox 1.5/2/3 (PC/Mac/Linux) - Opera 9.01 (PC/Mac) - Safari 2/3 (Mac) Safari 3.1.0 (PC) - Konqueror 3.4.0 (Linux) - Google Chrome béta (PC) -> screenshot for module : -> module with imagebox : -> administration : installation : 5mn. demo live : http://ouistiti.ke0.eu/catalog/ support FR: http://www.oscommerce-fr.info/forum/index....showtopic=59278 appreciations & comments welcome. Coconimo, moderator on forum www.oscommerce-fr.info nb: sorry for my poor english, php is easier than this language ! ;)
  5. another solution : replace : alert("No content exists at page "+(selected+1)+"! Loading 1st page instead.") with : config.$glider.hide() config.$togglerdiv.hide()
  6. change in the catalog/includes/modules/new_products_glide.php file : <div class="description"><?php echo substr($new_products['products_description'],0,250); if(strlen($new_products['products_description']) > 250){echo ' ...';} ?></div> with : <div class="description"><?php echo substr(strip_tags($new_products['products_description']),0,250); if(strlen($new_products['products_description']) > 250){echo ' ...';} ?></div> change in the catalog/featuredcontentglider.js file : alert("No content exists at page "+(selected+1)+"! Loading 1st page instead.") with : config.$glider.html('No new product in this sub category')
  7. it's normal, the category does not have product, so : add in the catalog/includes/modules/new_products_glide.php file before the first '?>' $new_products_count = tep_count_products_in_category($new_products_category_id); if ($new_products_count > 0){ and to the end of the same file : <?php } ?>
  8. hi, you can change the settings of featuredcontentglider.css & cssbuttonstoggler.css files : .glidecontentwrapper{ .../... margin-left: 65px; width: 600px; height: 230px; /* Set height to be able to contain height of largest content shown*/ .../... } and : .cssbuttonstoggler{ /*style for DIV used to contain toggler links. */ margin-left: 65px; margin-top: 0px; margin-bottom:0px; padding-bottom: 5px; width: 600px; .../... } Yours.
  9. hi, it's my first contribution for oscommerce. here : http://addons.oscommerce.com/info/6172 live demo -> http://ouistiti.ke0.eu/ Enjoy! :rolleyes:
×
×
  • Create New...