Hello,
Yes, Redis cache is required for using CMS kit. You may check here https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Index#pre-requirements.
thanks
Hello,
please check this discussion https://github.com/abpframework/abp/issues/17157
Please let me know if it helps you.
thanks
Hi,
please check your app.module.ts
- check whether the dependencies are included or not like
import { AccountLayoutModule } from '@volosoft/abp.ng.theme.lepton-x/account';
or try to delete yarn.lock
file and execute yarn
again it will reinstall all the packages at angular side.
regards,
can you add this in GlobalFeatureConfigurator
class in the `Domain.Shared
``GlobalFeatureManager.Instance.Modules.CmsKitPro(cmsKitPro =>
{
cmsKitPro.EnableAll();
});`
and restart the application.
Run migrations (if using Entity Framework Core): dotnet ef migrations add InitialCmsKitProMigration and for style classe related issue please check this ticket https://support.abp.io/QA/Questions/5784/CSS-styles-and-Java-Script-Code-doesn%27t-apply-to-the-HTML-code
Hi, Please check this document https://docs.abp.io/en/commercial/latest/modules/cms-kit/index and check this ticket https://support.abp.io/QA/Questions/5982/ABP-Sigle-Layer-Application-with-CMS-Kit-Pro
You can add following code in global-styles.css
for disable or hide breadCrumbs.
.lpx-topbar-container { visibility: hidden; }
Hi,
Please create new razor page MyMainHeader.razor
in the Layout folder like MyApp.Blazor\Components\Layout\MyMainHeader.razor
and add this code to newly created razor page and try to run.
it will result like
Please let me know if it helps you?
Thanks, Anjali