Close

Profile: jaseefar

Avatar

User posts

one year ago


i downloaded yur code for matjery.ae

the homepage category is not working properly. where is slide wrapper styles in this html. when i was checking yur demo it is there

i just added yur theme to 4.3 v of nop but not getting as like yur demo



@model Tuple<CategoryModel, int>

@inject IViewComponentSelector viewComponentSelector

@{
    var titleType = Model.Item1.Name.Length > 6 ? "big-title" : "small-title";
    var evenOrOdd = Model.Item1.Name.Length % 2 == 0 ? "even" : "odd";
}

<div class="item-box [email protected]">
    <div class="category-item">
        <h2 class="title @titleType @evenOrOdd">
            <a href="@Url.RouteUrl("Category", new { SeName = Model.Item1.SeName })" title="@Model.Item1.PictureModel.Title">
                <strong>@Model.Item1.Name</strong>
                <span>@T("SevenSpikes.Themes.Urban.Catalog.ShopNow")</span>
            </a>
        </h2>
        <div class="picture">
            <a href="@Url.RouteUrl("Category", new { SeName = Model.Item1.SeName })" title="@Model.Item1.PictureModel.Title">
                @if (viewComponentSelector.SelectComponent("LazyLoadImage") != null)
                {
                    @await Component.InvokeAsync("LazyLoadImage", new(string Key, string Value)[]
                    {
                        ("src", Model.Item1.PictureModel.ImageUrl),
                        ("alt", Model.Item1.PictureModel.AlternateText),
                        ("title", Model.Item1.PictureModel.Title)
                    })

                }
                else
                {
                    <img alt="@Model.Item1.PictureModel.AlternateText" src="@Model.Item1.PictureModel.ImageUrl" title="@Model.Item1.PictureModel.Title" />
                }
            </a>
        </div>
    </div>
</div>

one year ago

if i downlead the latest urban theme , can i get the theme for  nop version 3.8 also??

we are migrating from 3.8 to the latest.

if we are purchasing the latest urban what are the steps to integrate it with our latest nopcommerce.

we have customization on 3.8 urban theme can i replace the old cstml file in latest theme views.