Please find the file '~Themes\Smart\Views\Product\ProductTemplate.Grouped.cshtml' and take the code below:
<div class="product-collateral">
<!--associated products-->
<div class="product-variant-list">
@foreach (var variant in Model.AssociatedProducts)
{
<div class="product-variant-line" data-productid="@variant.Id">
@if (!String.IsNullOrWhiteSpace(variant.DefaultPictureModel.ImageUrl))
{
<div class="variant-picture">
.
.
.
@Html.Action("RelatedProducts", "Product", new { productId = Model.Id })
</div>
<div class="overview">
@Html.Partial("_Discontinued", Model)
<div class="product-name">
<h1 itemprop="name">
@Model.Name
</h1>
.
.
.
@if (!String.IsNullOrEmpty(Model.FullDescription))
{
<div class="full-description" itemprop="description">
@Html.Raw(Model.FullDescription)
</div>
}
Hi there,
I apologize for delayed response, but this issues are already fixed and you can update your theme now to get them.
Hi Mihailn,
Let me start backward with the font issue. Actually in this theme we use 'Open sans', which is free font and you can use it easily if you add it from the web. Also there are a lot of supported languages in this font (including Greek). The reason why it does not support Greek is that we did not configur the font to support it. But you can do this if you check the following link:
https://www.google.com/fonts#UsePlace:use/Collection:Open+Sans
There you can find everything you need to set this font to support Greek and Greek Extended also. Once you set the font to support your language you just need to change the link below which you can find in the file '~Lavella\Views\Shared\_Root.Head.cshtml'
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300&subset=latin,cyrillic-ext' rel='stylesheet' type='text/css'>
.sortOptionsDropDown {
background-position: 95% center;
width: 110px;
}
Hi BrickHuntersBrickHunters,
I have made some changes in the following files:
~Themes\Tiffany\Content\css\styles.css
~Themes\Tiffany\Content\css\480.css
~Themes\Tiffany\Content\css\980.css
So you can update this files only. If you made your own changes in those particular files and you are afraid that you will lose it all, please write me back and I will send you all my changes and I will guide you to merged it manually.
Hi JayC,
The easiest way to do this is to change the file 'Themes\Motion\Views\Catalog\CategoryTemplate.ProductsInGridOrLines.cshtml'. Find the code below and paste it in the bottom of the file:
@*description*@
@if (!String.IsNullOrWhiteSpace(Model.Description))
{
<div class="category-description">
@Html.Raw(Model.Description)
</div>
}
@if (!pager.IsEmpty())
{
<div class="pager">
@pager
</div>
}
/*category description goes here*/
Hi there,
Please add the code below in the 'Custom head styles' and I believe you will get what you want (if only the subcategories are what you want to change):
.sub-category-item .picture {
display: none;
}
.sub-category-grid .item-box .title {
position: static;
}
Hi there,
The changes are uploaded now, so you can update and test. Please write back if there are some more problems.
Hi there,
Thank you for your report! I am working on it and I will let you know once it's done.