osCommerce France : Accueil Forum Portail osCommerce France Réponses aux questions Foire aux contributions

Bienvenue invité ( Connexion | Inscription )

 
Reply to this topicStart new topic
> [résolu] chèques cadeaux
josh
posté 8 Sep 2004, 12:47
Message #1


Ceinture orange OSC
Icône de groupe

Groupe : Membres
Messages : 287
Inscrit : 7-July 04
Membre no 2824



Je trouve ça sympa d'offrir deux euros de chèques cadeaux aux client mais par contre je comprend pas la FAQ chèques cadeaux : en acheter ? Je sais pas où ça ce gère ça, en plus ça m'intéresse pas trop pour le genre de boutique que l'on fait (publications services), c'est possible d'enlever cette ligne du menu information ?


--------------------
Creload 6 sp1.2 RC2 fr Thema sur serveur dédié AMEN, Certification Verisign, Cybermut, Purchase Without Account
Go to the top of the page
 
Ryu007
posté 13 Sep 2004, 14:03
Message #2


Ceinture marron OSC
Icône de groupe

Groupe : Membres
Messages : 1385
Inscrit : 3-June 04
Lieu : Saint-mandé
Membre no 2597



Bonjour Josh,

Pour enlever cette ligne du menu information :

Il faut que tu commentes la ligne appellant le lien vers la ligne 28
comme ceci :

CODE

<?php
/*
 $Id: information.php,v 1.1.2.1 2003/04/18 17:42:37 wilt Exp $
 orig : information.php,v 1.6 2003/02/10 22:31:00 hpdl Exp $

 osCommerce, Open Source E-Commerce Solutions
 http://www.oscommerce.com

 Copyright (c) 2003 osCommerce

 Released under the GNU General Public License
*/
?>
<!-- information //-->
         <tr>
           <td>
<?php
 $info_box_contents = array();
 $info_box_contents[] = array('text' => BOX_HEADING_INFORMATION);

 new infoBoxHeading($info_box_contents, false, false);

 $info_box_contents = array();
 $info_box_contents[] = array('text' => '<a href="' . tep_href_link(FILENAME_SHIPPING) . '">' . BOX_INFORMATION_SHIPPING . '</a><br>' .
                                        '<a href="' . tep_href_link(FILENAME_PRIVACY) . '">' . BOX_INFORMATION_PRIVACY . '</a><br>' .
                                        '<a href="' . tep_href_link(FILENAME_CONDITIONS) . '">' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
          //'<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '">' . BOX_INFORMATION_GV . '</a><br>' . //ICW ORDER TOTAL CREDIT CLASS/GV
                                        '<a href="' . tep_href_link(FILENAME_CONTACT_US) . '">' . BOX_INFORMATION_CONTACT . '</a>');

 new infoBox($info_box_contents);
?>
           </td>
         </tr>
<!-- information_eof //-->


Amicalement


--------------------
Image IPB Image IPB
Go to the top of the page
 
josh
posté 20 Sep 2004, 12:46
Message #3


Ceinture orange OSC
Icône de groupe

Groupe : Membres
Messages : 287
Inscrit : 7-July 04
Membre no 2824



Merci mais de quel fichier tu parle ???

Et pendant que j'y suis : même question pour le catalogue en pdf, la génération à trop d'entete au nom de la Creload...

Merci d'avance


--------------------
Creload 6 sp1.2 RC2 fr Thema sur serveur dédié AMEN, Certification Verisign, Cybermut, Purchase Without Account
Go to the top of the page
 
Ryu007
posté 20 Sep 2004, 14:03
Message #4


Ceinture marron OSC
Icône de groupe

Groupe : Membres
Messages : 1385
Inscrit : 3-June 04
Lieu : Saint-mandé
Membre no 2597



QUOTE

Pour enlever cette ligne du menu information :


Quant je te parle du menu information, c'est includes/boxes/information.php

<!-- information //-->
<?php
$boxHeading = BOX_HEADING_INFORMATION;
$corner_left = 'square';
$corner_right = 'square';

$boxContent = '<a href="' . tep_href_link(FILENAME_SHIPPING) . '"> ' . BOX_INFORMATION_SHIPPING . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_PRIVACY) . '"> ' . BOX_INFORMATION_PRIVACY . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_CONDITIONS) . '"> ' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '"> ' . BOX_INFORMATION_CONTACT . '</a><br>'.
'<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '"> ' . BOX_INFORMATION_GV . '</a>';//ICW ORDER TOTAL CREDIT CLASS/GV

require(DIR_WS_TEMPLATES . TEMPLATENAME_BOX);
?>
<!-- information_eof //-->

C'est la ligne rouge qui fait appel à la F.A.Q.
Pour ta question sur le catalogue en pdf, pourrais-tu me donner plus de précision car je comprends pas ou tu veux en venir.
Amicalement


--------------------
Image IPB Image IPB
Go to the top of the page
 
josh
posté 20 Sep 2004, 14:55
Message #5


Ceinture orange OSC
Icône de groupe

Groupe : Membres
Messages : 287
Inscrit : 7-July 04
Membre no 2824



Bah le catalogue, il me plaît bien... biggrin.gif
jusqu'à ce que blink.gif

Il me mette un lien écrit "oscommerce_2" et des Creload 6 SP1 sur chaque page ! ohmy.gif

J'aime bien les développeurs d'oscom mais pas à ce point là laugh.gif

Par ailleurs voici mon code d'information.php, et j'ai beau supprimer la ligne en rouge, le menu est toujours le même sad.gif , voici mon code :

$boxHeading = BOX_HEADING_INFORMATION;
$corner_left = 'square';
$corner_right = 'square';

$boxContent = '<a href="' . tep_href_link(FILENAME_SHIPPING) . '"> ' . BOX_INFORMATION_SHIPPING . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_PRIVACY) . '"> ' . BOX_INFORMATION_PRIVACY . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_CONDITIONS) . '"> ' . BOX_INFORMATION_CONDITIONS . '</a><br>' .
'<a href="' . tep_href_link(FILENAME_CONTACT_US) . '"> ' . BOX_INFORMATION_CONTACT . '</a><br>'.
'<a href="' . tep_href_link(FILENAME_GV_FAQ, '', 'NONSSL') . '"> ' . BOX_INFORMATION_GV . '</a>';//ICW ORDER TOTAL CREDIT CLASS/GV

require(DIR_WS_TEMPLATES . TEMPLATENAME_BOX);


--------------------
Creload 6 sp1.2 RC2 fr Thema sur serveur dédié AMEN, Certification Verisign, Cybermut, Purchase Without Account
Go to the top of the page
 
xawaks
posté 20 Sep 2004, 15:38
Message #6


Ceinture marron OSC
Icône de groupe

Groupe : Membres
Messages : 1315
Inscrit : 17-March 04
Lieu : Gard
Membre no 2145



biggrin.gif

Pour ton catalog pdf, c'est expliqué dans le texte de la contribution...

Pour configurer tu as un fichier pdf config dans lequel tu modifies l'entete, les couleurs, l'ordre, etc...

Courage smile.gif


--------------------
Pax Vobiscum

MS2 fr (merci sieur Delaballe) + collisimo + Administration access level V2.3 + Down for maintenance + payment cards infobox + Cybermut + catalog PDF + titre pages référencement thematrixisme + adaptation pop_up loup solitaire + Star products + no double clics by JeanLuc + Must agree to terms + Ship in cart V1.90 + personnal invoice number + vente croisée by Decad7 + loginbox + Flux RSS perso-Manmachine + Onglets perso + salemaker + product on order + tabs + CCGV + featured products + expeditor inet + numero tracking perso + edit order + box newsletter perso + intégration blog dotclear/boutique perso + popup perso pour adresse hotmail lors de la création de compte + export perso-gnidhal pour les factures en csv + stock tacking cost + reclamaposte + notifications rupture de stock perso
---------------------------------------
Le tout sur VDS1024 : Apache 1.3.41 + Linux 2.6.24-18-server + PHP 5.2.6 + MySQL 5.0.18
---------------------------------------
Et en local sous MAC OS X 10.5.8
Go to the top of the page
 

Reply to this topicStart new topic
1 utilisateur(s) sur ce sujet (1 invité(s) et 0 utilisateur(s) anonyme(s))
0 membre(s) :

 



RSS Version bas débit Nous sommes le : 29th March 2024 - 15:16
Ce site est déclaré auprès de la commision Nationale
de l'Informatique et des Libertés (déclaration n°: 1043896)