Jump to content

Remove "Register" From pages


Recommended Posts

Hey all, i'm kinda getting there with the site now, does anyone know how to remove "register" from the pages and just leave "login" there?
The site is going to be accounts created by admin only so i don't want the world creating accounts.

Thanks,

Ade.

Link to comment
Share on other sites

The Login/Register is two separate links. That would be done in the template box.session.php:

From:

   {else}
   <a href="{$STORE_URL}/login.html" class="button white small nopad-sides">{$LANG.account.login}</a> / <a href="{$STORE_URL}/register.html" class="button white small nopad-sides">{$LANG.account.register}</a>
   {/if}

To:

   {else}
   <a href="{$STORE_URL}/login.html" class="button white small nopad-sides">{$LANG.account.login}</a>{* / <a href="{$STORE_URL}/register.html" class="button white small nopad-sides">{$LANG.account.register}</a> *}
   {/if}

Have CubeCart clear its cache.

Then there is the option to register at checkout.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...