Webtina Posted March 24, 2004 Report Share Posted March 24, 2004 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">{$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 to comment Share on other sites More sharing options...
mzanier Posted March 24, 2004 Report Share Posted March 24, 2004 {#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 Link to comment Share on other sites More sharing options...
Webtina Posted March 24, 2004 Author Report Share Posted March 24, 2004 Danke Das ist mir klar, aber das funktioniert nicht links bei Startseite: <td class="headerNavigation"><font size="1" face="Verdana, Arial, Helvetica, sans-serif">{$navtrail}</font></td> da ja kein a href drin ist? Link to comment Share on other sites More sharing options...
Hubi Posted March 24, 2004 Report Share Posted March 24, 2004 Dieses Startseite wird auch nicht im Template gebildet. Der HTML-Code daf?r findest Du in der Klasse includes/classes/breadcrumb.php. Link to comment Share on other sites More sharing options...
Webtina Posted March 24, 2004 Author Report Share Posted March 24, 2004 Originally posted by Hubi@Mar 24 2004, 17:25 PM Dieses Startseite wird auch nicht im Template gebildet. Der HTML-Code daf?r findest Du in der Klasse includes/classes/breadcrumb.php. Danke vielmals 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 Link to comment Share on other sites More sharing options...
mzanier Posted March 24, 2004 Report Share Posted March 24, 2004 der link f?r startseite wird in der application_top in den breadcrumb geschrieben. $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER); probiermal $breadcrumb->add('', HTTP_SERVER); k?nnte funktionieren. Link to comment Share on other sites More sharing options...
Webtina Posted March 24, 2004 Author Report Share Posted March 24, 2004 Originally posted by mzanier@Mar 24 2004, 17:39 PM der link f?r startseite wird in der application_top in den breadcrumb geschrieben. $breadcrumb->add(HEADER_TITLE_TOP, HTTP_SERVER); probiermal $breadcrumb->add('', HTTP_SERVER); k?nnte funktionieren. Hey das hat funktioniert, Danke 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! Link to comment Share on other sites More sharing options...
mzanier Posted March 24, 2004 Report Share Posted March 24, 2004 Kann ich denn im HTML deaktivieren, das sich da keiner Anmeldet? Wo? create_account.html Link to comment Share on other sites More sharing options...
Webtina Posted March 24, 2004 Author Report Share Posted March 24, 2004 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!! Link to comment Share on other sites More sharing options...
mzanier Posted March 25, 2004 Report Share Posted March 25, 2004 ?ndere das: <?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); [url]www.oscommerce.com[/url] (c) 2003 nextcommerce (xtc_show_category.inc.php,v 1.4 2003/08/13); [url]www.nextcommerce.org[/url] 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']); } } ?> und in der categories html template ein </td></tr></table> hinter {$BOX_CONTENT} Link to comment Share on other sites More sharing options...
Webtina Posted March 26, 2004 Author Report Share Posted March 26, 2004 Danke erstmal, werde es mal ausprobieren leider komme ich erst Sonntag oder n?chste Woche dazu weiter zu basteln. Der Tag hat viel zu wenige Stunden :i: . Also Danke ich melde dann mich wieder, wenn ich wieder am basteln bin. Sch?nes Wochenende euch alle Tina Link to comment Share on other sites More sharing options...
Webtina Posted April 3, 2004 Author Report Share Posted April 3, 2004 Ich bin es wieder. Klappt diese ?nderung auch bei der neuem Version? Link to comment Share on other sites More sharing options...
mzanier Posted April 3, 2004 Report Share Posted April 3, 2004 jo Link to comment Share on other sites More sharing options...
Webtina Posted April 3, 2004 Author Report Share Posted April 3, 2004 Hat gefunzt Danke :love: :love: Tina Link to comment Share on other sites More sharing options...
Webtina Posted April 5, 2004 Author Report Share Posted April 5, 2004 Soo bin ja schon ganz gut sch?n voran gekommen. Aber wie mache ich es in einer anderen Box. Bei Mehr ?ber... Wo Impressum usw. drine steht. Tina Link to comment Share on other sites More sharing options...
mzanier Posted April 5, 2004 Report Share Posted April 5, 2004 einen image tag als titel im content manager eingeben Link to comment Share on other sites More sharing options...
Webtina Posted April 5, 2004 Author Report Share Posted April 5, 2004 alles Klar Danke, das ging ja diesesmal viel einfacher Danke Tina Link to comment Share on other sites More sharing options...
GTC Posted October 29, 2005 Report Share Posted October 29, 2005 Hallo, habe in der Navtrail wie von mzanier gepostet die ersten beiden W?rter (Startseite und Katalog duch Bilder ersetzt. Die Bilder haben die selbe h?he wie die Hintergundgrafik. Nun habe ich leider das Problem, das der Text davon nach unten versetzt wird. ALso z.B. das erste >> und dann auch die n?chsten >> und der weitere Text der Navtrail. Hat da jemend einen Tip f?r mich? THX, GTC Link to comment Share on other sites More sharing options...
gswkaiser Posted November 4, 2005 Report Share Posted November 4, 2005 Evtl. so: $breadcrumb->add('', HTTP_SERVER); Link to comment Share on other sites More sharing options...
GTC Posted November 10, 2005 Report Share Posted November 10, 2005 Danke! Bin nun mal ins kalte Wasser gesprungen, und versuch mich mal an einem eigenen Template..... (Brrrr. ist das Wasser kalt ) THX, GTC Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.