Activities of "viswajwalith"

Hi,

You can download the leptonx theme source code to re-pack the Leptonx.bundle.min.js

You mean to say the LeptoX theme source code to re build the Leptonx.bundle.min.js with required file changes right

Hi,

Sorry, I didn't get it.

The Leptonx.bundle.min.js is not a bundle package. It is a separate js file. you have to replace or delete it entirely

Yes it is a seperate file but which is nothing but combination of files with minification as a single bundle file right, basically we want to remove some files which are part of that.

Answer

No, As I said you try to replace the AbpSelectTagHelperService instead of AbpTagHelperService<AbpSelectTagHelper>, AbpSelectTagHelper

For example:

[Dependency(ReplaceServices = true)] 
[ExposeServices(typeof(AbpSelectTagHelperService))] 
public class MySelectTagHelperService : AbpSelectTagHelperService 
{ 
    public MySelectTagHelperService(IHtmlGenerator generator, HtmlEncoder encoder, IAbpTagHelperLocalizer tagHelperLocalizer, IStringLocalizerFactory stringLocalizerFactory, IAbpEnumLocalizer abpEnumLocalizer) : base(generator, encoder, tagHelperLocalizer, stringLocalizerFactory, abpEnumLocalizer) 
    { 
    } 
 
    public override void Process(TagHelperContext context, TagHelperOutput output) 
    { 
        ... 
        base.Process(context, output); 
    } 
} 

It worked thanks, will let you know in case of any thing else.

Answer

Hi,

You can try to replace the AbpSelectTagHelperService.

[Dependency(ReplaceServices = true)] 
[ExposeServices(typeof(AbpSelectTagHelperService))] 
public class MySelectTagHelperService : AbpSelectTagHelperService 

I dont think I got ur point, do u mean something like below code?

will you able to provide the path for the specific file which you are refering us to override. Thanks in advance

Answer

Hello,

You can get the source code of LeptonX by using the below command, and you can customize it as per your requirements.

abp get-source Volo.LeptonTheme --version 7.3.1 

Thanks, Anjali

Thanks for the update, you mean the provide command will give the source code for the leptonX demo site (https://x.leptontheme.com/) as well?

Answer

hi

You can share the logs of authserver now without set level.

You can close this ticket, We found the issue, we missed adding options.Conventions.AuthorizePage("/XXXXService/XXXXManagements/Edit/Index", XXXXServicePermissions.XXXXManagements.Default); after adding so it worked fine.

Answer

hi

It seems the logs don't contain authserver website.

Can you share the logs of all website? Thanks

Also set the level to Debug will be best.

public async static Task<int> Main(string[] args) 
{ 
    Log.Logger = new LoggerConfiguration() 
        .MinimumLevel.Debug() 
        .Enrich.FromLogContext() 
        .WriteTo.Async(c => c.File("Logs/logs.txt")) 
        .WriteTo.Async(c => c.Console()) 
        .CreateLogger(); 

for this we had to deploy the code, will share that tomorrow

Answer

hi

Please share the full logs.txt of your video, I guess the return url has wrong.

liming.ma@volosoft.com

Thanks

Sent a logs to ur email, let me know if anything is needed more on this

Answer

Thanks

shared the screen recording to ur email malimings@gmail.com

Answer

hi

Please share some info first. Then we can join a zoom meeting.

ok, will send

Showing 51 to 60 of 267 entries
Learn More, Pay Less
33% OFF
All Trainings!
Get Your Deal
Mastering ABP Framework Book
The Official Guide
Mastering
ABP Framework
Learn More
Mastering ABP Framework Book
Made with ❤️ on ABP v10.0.0-preview. Updated on September 15, 2025, 14:41