cancel
Showing results for 
Search instead for 
Did you mean: 

Removing a tab from homepage

Removing a tab from homepage

Hello everyone,

 

So I'm somewhat still a noob when it comes to magento. I was wondering if anyone can guide me in the right direction to correct my issue.

 

I'm working on a site called www.legitikeys.com its actually for a client . I wanted to remove the tabs on the main page but somehow I cant manage to find the source. I believe it is a widget called halotheme filter.  I've tried checking the CMS>pages  and CMS>Static block but i cant find anything in there that would help me modify or remove the tabs.  I also checked in SYSTEMS>Configurations and tried looking for settings still nothing. If anyone can either help me remove the tabs which are "featured products" and "on sale" that would be great.

 

Also i would like to know if possible to add an additional space to add a product on the grid. so instead of showing 4 it would show 5. Thank you all for any support.

 

Please see attachment

Details

5 REPLIES 5

Re: Removing a tab from homepage

Hi @charlesny09

 

Step 1:

 

​Create local.xml in your magento theme like the path
 
app\design\frontend\myPakage\myTheme\layout\local.xml and add the code your created local.xml

 

Step 2:

 

Remove syntex like below code.

 

<?xml version="1.0"?>
<layout version="0.1.0">
  <cms_index_index>
    <reference name="content">
       <remove name="add_your_block_name"/>  
    </reference>
  </cms_index_index>
</layout>   

Hope this helps you.

 

 

Query solved? Accept as Solution.Thanks
Eric Baily

Re: Removing a tab from homepage

It seems you are using ebajes theme.

 

CMS > Static Blocks > edit block Ebajes Featured Products Home Tab (identifier: ebajes_featured_products_home_tab), click on button Show / Hide Editor to toggle to the plain text editor mode.

Problem solved? Click Accept as Solution!
Still stuck? Check out our documentation: http://magento.com/help/documentation

Re: Removing a tab from homepage

the static block was disabled and i tried removing the code but it still shows up

Re: Removing a tab from homepage

Hi @charlesny09

 

Go to below path and edit styles.css file

Magento_root/skin/frontend/myPakage\yTheme/css/styles.css 

Add the following code in your file
.ui-corner-top.ui-state-default:nth-child(3n) {
  display: none;
}
.ui-corner-top.ui-state-default:nth-child(2n) {
  display: none;
}
Hope this helps you.
Query solved? Accept as Solution.Thanks
Eric Baily

Re: Removing a tab from homepage

That solution will only hide the tad tab, but the content will still be loading.

Can you post the content of this cms block ebajes_featured_products_home_tab?

Problem solved? Click Accept as Solution!
Still stuck? Check out our documentation: http://magento.com/help/documentation