Activities of "serdar.genc@talentra.net"

Same problem. We need to solution, urgent.thanks

Hi @serdar.genc

Unfortunetely ABP Framework doesn't support multi-lingual entities now.

I can suggest to you creating different blogs with language names like en, fr and add new blogposts to them according to the language of the post language.

It's not compatible with the ABP language system. You should make custom implementation to redirect current blog.

Ok. Thanks enisn

hi @serdar.genc

This can't be managed now.

https://support.abp.io/QA/Questions/772#answer-0027fb42-c0e1-cd1c-1bf7-39fa52511797

How can I disable for all tenant ?

It is related to this question. I want to disable some modules in some edition packages. For example, I want CMS module enabled in Gold Edition and disabled in Standard Edition. How can I manage this?

Hi @Serdar, you need to override the CurrentTenant class, get the tenant by current tenant id and access the Extra Property dictionary of the tenant.

[Dependency(ReplaceServices = true)] 
[ExposeServices(typeof(ICurrentTenant), typeof(CurrentTenant), typeof(MyCurrentTenant))] 
public class MyCurrentTenant : CurrentTenant 
{    
   private readonly ITenantRepository _tenantRepository; 
    
   public MyCurrentTenant(ICurrentTenantAccessor currentTenantAccessor, ITenantRepository tenantRepository):base(currentTenantAccessor) 
    { 
        _tenantRepository = tenantRepository; 
    }  
     
   public async Task<Dictionary<string, object>> GetExtraProperties()  
   { 
       if(!base.Id.HasValue)  
       {     
           return new Dictionary<string, object>(); 
       } 
        
       var tenant = await _tenantRepository.GetAsync(base.Id); 
       //implement your logic 
       //tenant.ExtraProperty ... 
   } 
} 
 

tesekkurler @EnginCanV.

i think like this , right ?

if you say yes, why '[Dependency(ReplaceServices = true)]' ReplaceServices error ? deprecated ?

handle it. thanks.

https://github.com/abpframework/abp-samples

Which sample application can I follow?

Answer

Teşekkürler arkadaşlar. deneyip haber vereceğim.

Hi,

Metronic theme is great. Abp lepton theme can be upgraded to such high quality ? how can we have have such a page as below ?

The multi step registration (sign up) steps ?

https://preview.keenthemes.com/metronic8/demo1/account/statements.html#kt_referrals_2

Hello Dicky.tech , Did you implementation metronic8 to abp?

Showing 1 to 10 of 66 entries
Made with ❤️ on ABP v9.1.0-rc.1. Updated on January 17, 2025, 14:13