Hi Marcos,
I just checked your site. It looks like you have not set your home-page-text topic.
Please also check in your administration if you have set any products/categories to be shown on the home page.
The next thing you can check is the
/Themes/Tiffany/Views/Home/Index.cshtml view. It should have structure similar to this one:
@{
Layout = "~/Views/Shared/_ColumnsOne.cshtml";
}
<div class="page home-page">
<div class="page-body">
@Html.Widget("home_page_top")
@Html.Action("TopicBlock", "Topic", new { systemName = "HomePageText" })
@Html.Widget("home_page_before_categories")
@Html.Action("HomepageCategories", "Catalog")
@Html.Widget("home_page_before_products")
@Html.Action("HomepageProducts", "Product")
@Html.Widget("home_page_before_best_sellers")
@Html.Action("HomepageBestSellers", "Product")
@Html.Widget("home_page_before_poll")
@Html.Action("HomePagePolls", "Poll")
@Html.Widget("home_page_bottom")
</div>
</div>
About the fax in the footer you have to open the
/Themes/Tiffany/Views/Common/Footer.cshtml and search for this row and remove it:
<li class="fax"><span>@T("SevenSpikes.Themes.Tiffany.Common.Fax")</span></li>
I hope this helped !