- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Removing a tab from homepage
Hi @charlesny09
Step 1:
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.
Eric Baily
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
Still stuck? Check out our documentation: http://magento.com/help/documentation
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Removing a tab from homepage
the static block was disabled and i tried removing the code but it still shows up
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Removing a tab from homepage
Hi @charlesny09
Magento_root/skin/frontend/myPakage\yTheme/css/styles.css
.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.
Eric Baily
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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?
Still stuck? Check out our documentation: http://magento.com/help/documentation