Jump to content

How to remove


dobie

Recommended Posts

In admin, Documents, see if it is the title of the Homepage document.

In CC620 and the Foundation skin that ships with it, this allows for the choice of hiding the document title.

We will need to edit the Mican skin to do the same.

Edited by bsmither
Link to comment
Share on other sites

Open the Mican skin template content.homepage.php for editing.

On line 3, find:

<h1>{$DOCUMENT.title}</h1>

Change to:

{if $DOCUMENT.hide_title==0}<h1>{$DOCUMENT.title}</h1>{/if}

Because we made a change to a template, you may need to clear CubeCart's cache.

Link to comment
Share on other sites

works like a charm  thanx so much your a wiz 

 

i am trying to remove the home  button also  in breadcrumbs

<div id="breadcrumb">
          <ul>
            <li><a href="{$STORE_URL}">{$LANG.common.home}</a></li>
            <li><a href="{$crumb.url}">{$crumb.title}</a></li>
              {/foreach}
          </ul>
        </div>

 

Edited by dobie
remove home button
Link to comment
Share on other sites

That would be the first <li>.

Mican template main.php:

<div id="breadcrumb">
  <ul>
{* This is a Smarty comment: <li><a href="{$STORE_URL}">{$LANG.common.home}</a></li> *}
	{foreach from=$CRUMBS item=crumb}
	<li><a href="{$crumb.url}">{$crumb.title}</a></li>
	{/foreach}
  </ul>
</div>

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...