|
|||
|
Hallo
Finde ja XTC spitze und bin gerade dabei Templates daf?r zu erstellen (da es ja noch wenigen davon gibt9. Und jetzt brauche ich mal Hilfe. M?chte die Links: Startseite -> Katalog und Rechts Ausloggen -> Ihr Konto -> Warenkorb -> Kasse mit einem Button ersetzen. Aber wie inder Zeile der HTML Seite steht: <table border="0" width="100%" cellspacing="0" cellpadding="1"> <tr class="headerNavigation"> <td class="headerNavigation"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">[img]{$tpl_path}img/home.gif[/img]{$navtrail}</font></td> <td align="right" class="headerNavigation">{if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}{#link_logoff#} | {php} } {/php}{/if}{if $account}{#link_account#} | {/if}{#link_cart#} | {#link_checkout#}</td> </tr> </table> Es w?re Nett wenn mir da jemand behilflich seien k?nnte. Danke Tina ?brigens mein Newsletter funktioniert zwar immer noch nicht aber trotzdem bleibe ich bei den Shop. Habe keine Hilfe(auch durch Suche) gefunden. Kann ich denn im HTML deaktivieren, das sich da keiner Anmeldet? Wo? Gru? Tina |
|
||||
|
{#link_account#}
das ist ja normales html, statt {#link_account#} f?gst du halt nen img tag ein, oder ein bild und eine link map
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
|||
|
Danke
Das ist mir klar, aber das funktioniert nicht links bei Startseite: <td class="headerNavigation"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">[img]{$tpl_path}img/home.gif[/img]{$navtrail}</font></td> da ja kein a href drin ist? |
|
|||
|
Zitat:
Und wie muss der Code aussehen? Html ist kein Problem nur mit PHP bin ich kein Profi eher Anf?nger. Danke f?r die Hilfe |
|
||||
|
der link f?r startseite wird in der application_top in den breadcrumb geschrieben.
$breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER); probiermal $breadcrumb->add('[img]...[/img]', HTTP_SERVER); k?nnte funktionieren.
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
|||
|
Zitat:
jetzt kann ich weiter basteln. Und f?r mein newsleterproblem gibt es wohl keine Hilfe und wie (wo) deaktiviere ich ihn? ALLLES KLAR BESTEN DANK, BIS IRGENDWANN! |
|
||||
|
Zitat:
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
|
|||
|
So da bin ich wider, hat alles geklappt
Recht Herzlichem Dank Neue Frage,: Wie mache ich es in den Boxen? Zb. Box links - Katagorien Prudukt1 Produkt2 usw. m?chte ein Bullet davor setzen, finde jedoch nicht die dazu geh?rige Datei? Das es zb. so aussieht: :fear: Produkt1 :fear: Produkt2 usw Die Tina PS. wenn ich alles wei? wie es geht, werde ich bei Euch mal ein Paar Designs anbieten!! |
|
||||
|
?ndere das:
Code:
<?php /* ----------------------------------------------------------------------------------------- $Id: xtc_show_category.inc.php,v 1.1 2003/09/06 21:47:50 fanta2k Exp $ XT-Commerce - community made shopping http://www.xt-commerce.com Copyright (c) 2003 XT-Commerce ----------------------------------------------------------------------------------------- based on: (c) 2000-2001 The Exchange Project (earlier name of osCommerce) (c) 2002-2003 osCommerce(categories.php,v 1.23 2002/11/12); www.oscommerce.com (c) 2003 nextcommerce (xtc_show_category.inc.php,v 1.4 2003/08/13); www.nextcommerce.org Released under the GNU General Public License ---------------------------------------------------------------------------------------*/ function xtc_show_category($counter) { global $foo, $categories_string, $id; for ($a=0; $a<$foo[$counter]['level']; $a++) { if ($foo[$counter]['level']=='1') { $categories_string .= "-"; } $categories_string .= ""; } if ($foo[$counter]['level']=='') { if (strlen($categories_string)=='0') { $categories_string .='<table width="140" cellspacing="2" cellpadding="0"><tr class="moduleRow"><td class="main">'; } else { $categories_string .='</td></tr></table><table width="140" cellspacing="2" cellpadding="0"><tr class="moduleRow"><td class="main">'; } $categories_string .= '<img src="templates/xtc/img/DEIN_BILD.jpg"><a href="'; } else { $categories_string .= '<a href="'; } if ($foo[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $foo[$counter]['path']; } $categories_string .= xtc_href_link(FILENAME_DEFAULT, $cPath_new); $categories_string .= '">'; if ( ($id) && (in_array($counter, $id)) ) { $categories_string .= ''; } // display category name $categories_string .= $foo[$counter]['name']; if ( ($id) && (in_array($counter, $id)) ) { $categories_string .= '</b>'; } if (xtc_has_category_subcategories($counter)) { $categories_string .= ''; } if ($foo[$counter]['level']=='') { $categories_string .= '</a></b>'; } else { $categories_string .= '</a>'; } if (SHOW_COUNTS == 'true') { $products_in_category = xtc_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= '(' . $products_in_category . ')'; } } $categories_string .= '<br>'; if ($foo[$counter]['next_id']) { xtc_show_category($foo[$counter]['next_id']); } } ?> ein </td></tr></table> hinter {$BOX_CONTENT}
__________________
xt:Commerce Helpdesk xt:Commerce Blog xt:Commerce Warenwirtschaft ### ![]() Offene Stellen bei xt:Commerce! xt:Commerce stellt ein ### |
![]() |
| Lesezeichen |
| Stichworte |
| anstatt, button, link |
| Themen-Optionen | |
| Ansicht | |
|
|