IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

EDI, CMS, Outils, Scripts et API PHP Discussion :

[osCommerce] Changer un prix


Sujet :

EDI, CMS, Outils, Scripts et API PHP

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre éclairé Avatar de Casio
    Homme Profil pro
    Historien numérique
    Inscrit en
    Novembre 2005
    Messages
    312
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Historien numérique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Novembre 2005
    Messages : 312
    Par défaut [osCommerce] Changer un prix
    Salutations,

    J'utilise OsCommerce depuis peu, et ne suis pas une bete de developpement... :-(

    J'ai appliqué certains MODs qui me permettent, entre autre, de proposer des produits à l'échange.

    En gros, si le prix est égal à 0 eur, il propose un échange.

    Je viens de mettre en place un nouveau MOD m'affichant un listing aléatoire des produits du catalogue sur la home, mais les articles en échange (0.00 eur) n'affichent pas "Echange", mais bien 0.00 Eur.

    J'avais réussi a bricoler sur des MOD comme new_products.php la chose suivante :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    (...)
      $row = 0;
      $col = 0;
      $info_box_contents = array();
      while ($new_products = tep_db_fetch_array($new_products_query)) {
        $new_products['products_name'] = tep_get_products_name($new_products['products_id']);
    	if ($new_products['products_price'] == 0){ 
    	$info_box_contents[$row][$col] = array('align' => 'center',
    	'params' => 'class="smallText" width="33%" valign="top"',
    	'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">Echange</a>');
     
    	}else{
    	$info_box_contents[$row][$col] = array('align' => 'center',
    	'params' => 'class="smallText" width="33%" valign="top"',
    	'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $new_products['products_image'], $new_products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_products['products_id']) . '">' . $new_products['products_name'] . '</a><br>' . $currencies->display_price($new_products['products_price'], tep_get_tax_rate($new_products['products_tax_class_id'])));
    	}
     
        $col ++;
        if ($col > 2) {
          $col = 0;
          $row ++;
        }
      }
    Mais je n'arrive pas à l'appliquer au nouveau MOD (Random_pro.php)

    Voici une partie de ce MOD :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    (...)
    $randomdisplay = $randomcol * $randomrow; 
    $widthcol = (int)(100/$randomcol); 
    $bbhl = $boxboxheadleft ? 'corner_left.gif' : 'corner_right_left.gif'; 
    $bbhr = $boxboxheadright ? 'corner_right.gif' : 'corner_right_left.gif'; 
     
    $ok_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_TO_CATEGORIES . " p2c, " . TABLE_CATEGORIES . " c where p.products_id = p2c.products_id and p2c.categories_id not IN " . NOT_CATEGORI . " and p.products_status = '1'"); 
    $ok_products_row = tep_db_num_rows($ok_products_query); 
     
    if ($ok_products_row > 0) { 
     
    if ($randomboxhead) { 
    $info_box_contents = array(); 
    $info_box_contents[] = array('text' => RND_HEAD_TEXT); 
    new infoBoxHeading($info_box_contents, $randomboxheadleft, $randomboxheadright); 
    } 
     
    if ($ok_products_row < $randomdisplay) $randomdisplay = $ok_products_row; 
    $maxrandomtable = $randomdisplay; 
     
    $randomtable = array(); 
    for ($c=0; $c<$maxrandomtable; $c++) { 
    $random=tep_rand($c,$ok_products_row-1); 
    $ok = (isset($randomtable[$random])) ? $randomtable[$random] : $random; 
    $randomtable[$random] = (isset($randomtable[$c])) ? $randomtable[$c] : $c; 
    $randomtable[$c] = $ok; 
    }; 
     
    $row = 0; 
    $col = 0; 
    $info_box_contents = array();
     
    for ($c=0; $c<$randomdisplay; $c++) { 
    tep_db_data_seek($ok_products_query, $randomtable[$c]); 
    $products = tep_db_fetch_array($ok_products_query); 
    $products['products_name'] = tep_get_products_name($products['products_id']); 
    switch ($templates_display) { 
    case 2: 
    $info_box_contents[$row][$col] = array('align' => 'center', 
    'params' => 'class="smallText" width="' . $widthcol . '%" valign="top"', 
    'text' => '<table border="0" width="100%" cellspacing="0" cellpadding="0"><tr><td height="14" class="infoBoxHeading" valign="top"><img src="images/infobox/' . $bbhl . '" border="0" alt="" width="11" height="14"></td><td height="14" class="infoBoxHeading" width="100%"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products['products_id']) . '">' . $products['products_name'] . '</a></td><td height="14" class="infoBoxHeading" valign="top"><img src="images/infobox/' . $bbhr . '" border="0" alt="" width="11" height="14"></td></tr></table>' . 
    '<table border="0" width="100%" cellspacing="1" cellpadding="3" class="infoBox"><tr class="infoBoxContents"><td align="center">' . 
    '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products['products_image'], $products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br>' . $currencies->display_price($products['products_price'], tep_get_tax_rate($products['products_tax_class_id'])) . '<br><br>' . 
    '<a href="' . tep_href_link(basename($PHP_SELF), tep_get_all_get_params(array('action')) . 'action=buy_now&products_id=' . $products['products_id']) . '">' . tep_image_button('button_buy_now.gif', IMAGE_BUTTON_BUY_NOW) . '</a>&nbsp;&nbsp;' . 
    '</td></tr></table>'); 
    break; 
    default: 
    $info_box_contents[$row][$col] = array('align' => 'center', 
    'params' => 'class="smallText" width="' . $widthcol . '%" valign="top"', 
    'text' => '<a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products['products_id']) . '">' . tep_image(DIR_WS_IMAGES . $products['products_image'], $products['products_name'], SMALL_IMAGE_WIDTH, SMALL_IMAGE_HEIGHT) . '</a><br><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $products['products_id']) . '">' . $products['products_name'] . '</a><br>' . $currencies->display_price($products['products_price'], tep_get_tax_rate($products['products_tax_class_id']))); 
    break; 
    } 
    $col ++; 
    if ($col > ($randomcol-1)) { 
    $col = 0; 
    $row ++; 
    } 
    } 
     
    new contentBox($info_box_contents); 
     
    } 
    ?>
    Pouvez-vous m'aider ?

    Merci d'avance...

  2. #2
    Membre éclairé Avatar de Casio
    Homme Profil pro
    Historien numérique
    Inscrit en
    Novembre 2005
    Messages
    312
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : France, Paris (Île de France)

    Informations professionnelles :
    Activité : Historien numérique
    Secteur : High Tech - Matériel informatique

    Informations forums :
    Inscription : Novembre 2005
    Messages : 312
    Par défaut
    Any idea ?? pliz...

Discussions similaires

  1. Réponses: 2
    Dernier message: 27/07/2015, 17h34
  2. Réponses: 4
    Dernier message: 13/03/2011, 18h54
  3. [osCommerce] Affichage prix total dans l'e-mail de confirmation de commande
    Par gandahar1983 dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 1
    Dernier message: 22/12/2010, 13h31
  4. Changer de prix pour chaque genre de livre
    Par thehurrica dans le forum Livres
    Réponses: 11
    Dernier message: 13/04/2010, 19h30
  5. probléme d'affichage du prix sur oscommerce
    Par fraisa1985 dans le forum E-Commerce
    Réponses: 0
    Dernier message: 08/11/2008, 12h10

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo