Close

Profile: jakubz

Avatar

User posts

4 years ago

Hi! is it possible to change in ROPC to open "first step" on mobile? With shipping data? Now on mobile CLient need click, but maybe is easy way to make Billing address default open?

4 years ago

Hi! i disable NopAjax on local machine to check something, and again enable... but it's stop works :/ (popup don't show...).


Is there some option in theme configuration (element theme variant 1) or somewhere else what i should enable?

Bugs
4 years ago

Hmm… i see it's change when i click save in theme settings. Is anyway to disable this rule in element script or other place? I can't make now upgrades...

Bugs
4 years ago

Well… when we have set:
sevenspikescommonsettings.lazyloadimages True

Lazy loading not works… download all files, and google insights score is low…

When we set
elementthemesettings.lazyloadimages = True

It's works fine... but some stupid rule on theme, or i don't know where… change that to "false" for some reason…

So lazy loading not works...ech...

Bugs
4 years ago

Hi! yes, we have 4.1 from february (i think). Ok. Thx!

4 years ago

Boyko wrote:

Hi jakubz,

You should simply search for .css in the plugins Razor view files (.cshtml) and see where we reference them (it is a different view for each plugin).
I don't think it is a good idea to combine all css files into one simply because on some pages certain plugins are not included at all and this way you will end up with a lot of unused css that will be loaded (at least the page speed tool will complain about it for sure).


Hi! i remove, from element shared head… /Themes/Element/Content/CSS/styles.css but when i go on firefox i still see this link. I try ctrl + F5 :/ Google insight don't show me this link in result. But on firefox ctrl + F5 nothing change :/ i rename thi sfile so it's not downloaded again… but i'm little worry there is some mechanism to add this? Maybe you know? I change razor file \Themes\Element\Views\Shared\head… and don't find in other places styles.css:/

Maybe you can ask collegue is maybe another place to check?

4 years ago

Blog author? Maybe is possible to create (or maybe it's actual added) possibility to create "authors"? Small bio about author below posts created by him and possibility to "look" all posts this author? It's make blog less "anonymous"

Ok. Product is somewhere else. We combine css'es and move jcarousel css to the same file where we have cloudzoom… so jcarousel "hide our" galery. After remove this code, all works fine. :)

4 years ago

Ok. It's maybe something in cache... i change styles name, and it stop download it, and works:)

Still lots to do, but... 50 points reached;)

4 years ago

Boyko wrote:
Hi! i don't want use css bundling and start thinking to make one css where i combine all this files:
Html.AppendCssFileParts("~/Themes/Element/Content/CSS/1320.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/1000.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/720.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/480.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/mobile-only.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/tables.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/styles.css");



If i create file "styles2.css" and overwrite code and write:
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/styles2.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/styles.css");

Hi jakubz,

You should simply search for .css in the plugins Razor view files (.cshtml) and see where we reference them (it is a different view for each plugin).
I don't think it is a good idea to combine all css files into one simply because on some pages certain plugins are not included at all and this way you will end up with a lot of unused css that will be loaded (at least the page speed tool will complain about it for sure).



Well i do this, and remove from all css: air styles, and variant-2 which i don't use. My on mobile increase from: 36 points, to 56 points (and still can combine 2-3 css files).

But i must move it back, because have some problems:

I change in Themes > Element > Views > Shared > Head.cshtml and set only:

tml.AppendCssFileParts("~/Plugins/SevenSpikes.Core/Styles/perfect-scrollbar.min.css");

    if (supportRtl)
    {
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/1320.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/1000.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/720.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/480.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/mobile-only.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/tables.rtl.css");
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/styles.rtl.css");
    }
    else
    {
        Html.AppendCssFileParts("~/Themes/Element/Content/CSS/styles-all.css");
    }


but from some reason it's still "download" "style.css" file from somewhere? I clear cache, buts nothing change. (when i have both downloaded… page css is broken. and gogle insight don't show better result… I try it on local and it's works fine... but on prodution

Can you help me? Is any other place where i should change css path?  maybe it's a local problem...? Maybe you know.