Activities of "enisn"

It is good that now the project logo-dark and logo-light images a now accessible - but why not the login-bg image?

You're right, we'll take an action for it and we'll make it easy to customize.

In V7.0.0 there is a new footer component Where is this exposed so it can be customized?

If you create a new project, you'll see there is a file named Footer.razor in your project. But if you migrated from older versions, you need to add that file on your own.

@using Volo.Abp.AspNetCore.Components.Web.LeptonXTheme.Components.ApplicationLayout.TopMenu
@using Volo.Abp.DependencyInjection

@inherits Footer

@attribute [ExposeServices(typeof(Footer))]
@attribute [Dependency(ReplaceServices = true)]

<div class="lpx-footbar-container">
    <div class="lpx-footbar">
        <div class="lpx-footbar-copyright">
            <span>@DateTime.UtcNow.Year©</span>
            <a href="https://leptontheme.com/" target="_blank">Lepton Theme</a>
            <span>by</span>
            <a href="https://volosoft.com/" target="_blank">Volosoft</a>
        </div>
        <div class="lpx-footbar-solo-links">
            <a href="#">About</a>
            <a href="#">Privacy</a>
            <a href="#">Contact</a>
        </div>
    </div>
</div>

In the account layout, it uses MVC layout and you should place Themes/LeptonX/Layouts/Account/_Footer.cshtml file in your application to override footer in Account layout. (Login page)

<div class="text-center pt-2">
    <span class="copyright-text">@DateTime.Now.Year © LeptonTheme by <a href="http://www.volosoft.com" target="_blank">Volosoft</a></span>
</div>
Answer

In the latest version of LeptonX MVC package, Only favicon.ico and favicon.svg exists. If you're using v2.0 or later, you should use those files.

Thanks for your reply,

I do not understand this:

But you can remove the first one and add latest one and manage the first one manually.

As I understand you already have that line in the database and can't add a second registry for the same gateway. I mean just add only one that you want to be managed by ABP Payment module, and manage rest of them manually without adding to db

Hi joe@tronactive.com

You marked as you're using blazor with a tiered solution. So, you have 3 different projects whiches are *.Blazor, *.HttpApi.Host and *.AuthServer.

All of them stands for a reason but users can only interact with Blazor and HttpApi.Host project. So, you can update package.json file in those project folders.

By the way, please don't add direct reference to those files, just use resolution parameter of package.json

If you don't have an idea for it, here is an easy usage: https://classic.yarnpkg.com/lang/en/docs/selective-version-resolutions/#toc-how-to-use-it

Currently, it's not possible because of the design of the module. But you can remove the first one and add latest one and manage the first one manually.

We'll think on this scenario and consider to change the design of Gateway Plans.

Answer

You can place your favicon in the same directory with wwwroot/images/favicon/logo-favicon_1.svg .

The default favicon extension is svg so, placing a png instead, won't work as expected. You should use the same extension if you want to override same file.

Hi, unfortunately, we couldn't reproduce the issue with the latest CLI and latest project template version.

Did you set-up your development environment according to do Documentation?

Which dotnet SDK version are you currently using?

there is no horizontal scroll at the moment in the bottom menu currently. It's by design. You can override the component and add horizontal scroll by yourself but unfortunately there is no option for that in the theme

Sorry, I couldn't reproduce the same issue.

Can you share your project files to support@abp.io?

If you share how you override the component, can you share the code? ıt seems some of styles are missing in the screenshot

Showing 121 to 130 of 489 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30