Activities of "alper"

We are creating a new feature to extend the existing entities. For now, you can check out https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Extending-Entities

Answer

just to change logo, delete the existing logo file and copy your own logo file.

does replacing the tenant component work for you? https://docs.abp.io/en/abp/latest/UI/Angular/Component-Replacement

Answer

for MVC you can override Application name and logo

    public class AbpIoDocsBrandingProvider : DefaultBrandingProvider
    {
        public override string AppName => "Acme - MyBookStore";
        public override string LogoUrl => "/images/myLogo.png";
    }
    

To reproduce the problem, we need some extra info:

Your project name:

Template options:

  • UI Framework: MVC / Angular
    • (If MVC) Tiered: Yes / No
    • (If Angular) Separated Identity Server: Yes / No
  • Database Provider: EF Core / MongoDB

Entity JSON

  • Write us your entity JSON. It's located here => %UserProfile%\.abp\suite\{Your-Project-Name}\entities\{Your-Entity-Name}.json

The problem is dependency! Cannot resolve parameter 'Gmcs.Themis.ScreenBuilder.Samples.ISampleAppService' Check that SampleAppService is registered correctly.

ISampleAppService.cs

public interface ISampleAppService : IApplicationService
{
         
}

SampleAppService.cs

public class SampleAppService  : ApplicationService, ISampleAppService
{
         
}

1-run the below command in CMD

del %UserProfile%\.abp\cli\access-token.bin && del %UserProfile%\.\AppData\Local\Temp\AbpLicense.bin

2-then

abp login <username> -p <password>

3-then try again:

abp suite
Answer

you can customize the user interface per your tenants / users / or any other conditions. See https://docs.abp.io/en/abp/latest/Customizing-Application-Modules-Overriding-User-Interface

see https://support.abp.io/QA/Questions/5#answer-a7176f3f-c297-c06c-0923-39f30889b0c3 basically clearing the local storage and session storage should fix it.

I've created a Gist with 6 steps to implement this feature. https://gist.github.com/ebicoglu/04cedc99d0365f4d20a6233cca69cf5b

Note:
This guideline will be a document after next release (April 4, 2020). And the URL will be https://docs.abp.io/en/commercial/latest/guides/implementing-passwordless-authentication

Showing 1891 to 1900 of 1950 entries
Boost Your Development
ABP Live Training
Packages
See Trainings
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.1.0-preview. Updated on November 07, 2025, 08:20