Activities of "berkansasmaz"

Once you log in, the problem should be fixed.

Related document: https://docs.abp.io/en/abp/latest/CLI#login

Related with https://support.abp.io/QA/Questions/3480

The problem seems to have been resolved in version 6.0.0. However, if you do not want to switch to version 6.0.0, we will soon have a patch version for 5.x.x and it will be solved there too.

Hello,

If you want to download the template for version 4.4.3, please try the command below:

abp new CryptoTrader -t app-pro --tiered --version 4.4.3

If you want to download the more recent version, change your CLI version to the version of the template you want to download. For instance:

dotnet tool update -g Volo.Abp.Cli --version 6.0.0

Hi, can we confirm that abp cli and abp suite have the same version(e.g. 5.3.0)?

Hi, can you please send the output of the following command?

abp login-info

Sorry, my fault. I expected this to work, but it didn't. I tested the code below. Can you try?

    abp.libs.sweetAlert.config.error.footer = "<button type='button' id='DownloadLog' class='swal2-cancel swal2-styled'>Download Log</button>"
    abp.libs.sweetAlert.config.error.didOpen = () => {
        $("#DownloadLog").click(function() {
            console.log("Test");
        });
    }

The blog was inaccurate? You cannot do it the way they said?

I have no idea about this, I did not read the article. I tried to explain the simplest solution completely according to your requirement.

Either way I tried doing it your way. We don't have the angular UI on my project, so I added it into migrations.

Screenshots may belong to the angular interface, but there are similar pages in other user interfaces.

Does it use the key the name, "Abp.Account.EMailConfirmationLink"? I inserted a value for "Abp.Account.EMailConfirmationLink" with content for the email, but it did not use it when I send the confirmation email.

Did you try it from the user interface or did you try to change it by writing code?

Also, where are the original templates coming from? Is it a resource or something? Since database, after initial migration, does not have the list of templates shown above. The "AbpTextTemplateContents" table is empty on initial migration.

Yes, it is a resource. Resource path: Volo/Abp/Account/Emailing/Templates/EmailConfirmationLink.tpl


If you do not want to make this change through the user interface, I recommend you to read the following document if you want to do it with code. => https://docs.abp.io/en/abp/latest/Emailing#overriding-replacing-the-standard-templates

How to trigger Copy Log button click for this solution, can you give an example? Because, it can not be triggered.

I think you can do this in your globally used script file by using the id you gave to the button.

Note: If you don't have a global js file, you can do it similarly to the global.css' config.

$( "#DownloadLog" ).click(function() {
  alert( "Handler for .click() called." );
});

Unfortunately, the Suite does not support this feature. However, there is no obstacle for you to manually add the properties you want according to the requirements of your application.

Hello,

I opened a pull-reqeuest on the topic. See: https://github.com/abpframework/abp/pull/14188

Workaround solution:

Copy the code of the model class you want to override and paste it into the contents of your own model class. For example: https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/Public/CmsKit/Blogs/Index.cshtml.cs

Then update the model on the page to reference your customized model class. For instance: https://github.com/abpframework/abp/blob/317eb03942c49ddbdff09a7a7d7bfcf7ff3dd518/modules/cms-kit/src/Volo.CmsKit.Public.Web/Pages/Public/CmsKit/Blogs/Index.cshtml#L8

Showing 41 to 50 of 266 entries
Made with ❤️ on ABP v9.2.0-preview. Updated on January 14, 2025, 14:54