Jump to content
xt:Commerce Community Forum

Header-Menü ändern


kastanie2008

Recommended Posts

in deiner .../templates/deinTemplate/index.html

steht irgendwo etwas wie dies :

ca Zeile 28 (je nach template)

<a href='http://www.deinshop.de/shop/index.php'> Shop </a> | {if $account}<a href="{$account}" class="headerNavigation">{#link_account#}</a> {/if}|| <a href="{$cart}" class="headerNavigation">{#link_cart#}</a> | <a href="{$checkout}" class="headerNavigation">{#link_checkout#}</a>

ändere es ist :

{if $account}{php} if (isset($_SESSION['customer_id'])) { {/php}<a href="{$logoff}" class="headerNavigation">{#link_logoff#}</a> |{php} } {/php}{/if}

{if $account}<a href="{$account}" class="headerNavigation">{#link_account#}</a> | {/if} <a href="{$cart}" class="headerNavigation">{#link_cart#}</a> | <a href="{$checkout}" class="headerNavigation">{#link_checkout#}</a>

das müßte gehen

Link to comment
Share on other sites

Der Fehler liegt daran das der Registrierungslink eigenlich schon in Ihr Konto mit drin ist.

aber ok, setz vor alles einfach noch ein

<a href='/shop/login.php'> Registrieren </a> |

davor. Das shop ist der Name des Verzeichnisses in dem du installiert hast. Wenn dein Shop im Root läuft musst du es weglassen.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...