Activities of "alper"

@690486439 yes you have an Enterprise License, but this is a bug in Suite. It's has been addressed and fixed. You'll see the "Add to project" button in the next version.

1- Are you using MVC or Angular? 2- Did you change your project directory? if yes, you need to remove the project from Suite and add again.

@andrew the release notes for the commercial side will be available in the next week, we'll announce it. When it's ready, it will be published in the document website https://docs.abp.io/en/commercial/latest

Answer

hi Sean, good to know it works! happy coding!

Question

Update the ABP CLI:

dotnet tool update -g Volo.Abp.Cli

Update the ABP Suite:

abp suite update

  • Release notes: https://docs.abp.io/en/commercial/latest/release-notes
Answer

did reinstalling fix the issue?

As of v2.7.0 you can override application logo easily without replacing the physical logo png files. You can inject any service and create your own logic to set the logo.

    [Dependency(ReplaceServices = true)]
    public class BookStoreBrandingProvider : DefaultBrandingProvider
    {
        //You can inject services here...
        private readonly ICurrentTenant _currentTenant;

        public BookStoreBrandingProvider(ICurrentTenant currentTenant)
        {
            _currentTenant = currentTenant;
        }

        public override string AppName => "Acme - MyBookStore";

        public override string LogoUrl
        {
            get
            {
                if (_currentTenant.Name == "MyCustomer")
                {
                    return "http://mycustomer.com/logo.png";
                }

                if (_currentTenant.Id.HasValue)
                {
                    return $"/images/logo/{_currentTenant.Id}";
                }

                return "/images/logo/my-default-app-logo.png";
            }
        }

        public override string LogoReverseUrl => LogoUrl;
    }

can you show how you override a style? are you using !important

I've created an internal issue for this. by the way, you can change the logo by overwriting the file in your wwwroot/images/logo/ folder

src\Acme.BookStore.Web\wwwroot\images\logo\theme1.png
src\Acme.BookStore.Web\wwwroot\images\logo\theme1-reverse.png

hi @wazbek,

To solve your problem seeing "modules" menu item, remove suite and install, run

abp suite remove

then

abp suite install

for the command line run,

abp get-source Volo.LeptonTheme

there's angular folder

Showing 1841 to 1850 of 1957 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 20, 2024, 08:30