Rechercher :
Accueil » Catalogue » Produit Connexion

Question Comment insérer un séparateur entre certains produits lors d’affichage de liste de produits ?
Réponse modif à faire dans catalog/includes/modules/product_listing.php (sauvegarder avant !!!, on ne le redira jamais assez).

Chercher le pavé :

Code:
        $list_box_contents[$cur_row][] = array('align' => $lc_align,
                                               'params' => 'class="productListing-data"',
                                               'text'  => $lc_text);

      }

    }


et remplacer par le pavé :

Code:
        $list_box_contents[$cur_row][] = array('align' => $lc_align,
                                               'params' => 'class="productListing-data"',
                                               'text'  => $lc_text);

      }

        $list_box_contents[$cur_row+1][] = array('align' => 'center',
                                               'params' => 'colspan="'.sizeof($column_list).'"',
                                               'text'  => '<hr color=red>');
    }
Auteur : fissiaux Mise à jour le 12/01/2004

Retour


Warning: Unknown: Your script possibly relies on a session side-effect which existed until PHP 4.2.3. Please be advised that the session extension does not consider global variables as a source of data, unless register_globals is enabled. You can disable this functionality and this warning by setting session.bug_compat_42 or session.bug_compat_warn to off, respectively. in Unknown on line 0