<cite>BBakerMMC: </cite> You can follow all the steps except for the one that runs the exe app. Then you can change the sass files as you wish. The aspnetzero color replacement does some things I didn't like.
Hi @BBakerMMC, Sorry, I don't understand what you said. Can you please elaborate :D :D
<cite>alper: </cite> Hi,
This feature "Changing primary color of Metronic theme" is already implemented in v5.4. See the GitHub commit for changes. <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero-core/issues/917">https://github.com/aspnetzero/aspnet-ze ... issues/917</a>
Hi @alper, There are some prebuilt themes to select from. I want to change the color of the default theme to my own. Are you referring to metronic project in aspnetzero repository?
Thanks @ismcagdas for considering the suggestion :)
I found config section in metronic document. [https://keenthemes.com/metronic/documentation.html#sec4-2])
How can I build the metronic theme after changing the config?
Hi,
The brand color used in metronic is kind of purple color. I want to change to a different shade of purple #5933AA.
What are the suggested steps to do this in a right way? :roll:
It is much easier to write in markdown than this editor :D
Hi,
I have a special case in which I want to completely delete an entity that is marked as ISoftDelete.
I tried this but it does not work:
using (CurrentUnitOfWork.DisableFilter(AbpDataFilters.SoftDelete))
{
var tenant = await TenantManager.GetByIdAsync(input.Id);
await TenantManager.DeleteAsync(tenant);
}
Thanks @ismcagdas.
I'm changing the tenant change component and replacing with a simple text input component to accept tenant name on login component.
I see that the tenant change component is at account.component level. Is the tenant Id used at anywhere else than login component in the account module?
Is there any documentation that provides steps to add a payment gateway?
I want to replace PayPal with Stripe :)