How to skip Login.aspx page during checkout?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
14 лет назад
Here is the situation
I have customized and integrated a shopping cart to my application and I am allowing max one product and here once the customer adds to cart and  then comes the page shoppingcart.aspx where they enter the coupon and then I want them to directly navigate to the Checkoutbillingaddress.aspx instead of going to login.aspx?xxxx......

Is it possible? if yes. Could you please explain.

Thank you..
14 лет назад
1. Open /Modules/OrderSummary.ascx.cs file
2. Replace Checkout() method with the following one:
        
protected void Checkout()
        {
            ApplyCheckoutAttributes();
            Response.Redirect("~/checkout.aspx");
        }

3. Recompile the solution
13 лет назад
I edited the OrderSummary.aspx.cs page and it is not skipping this when I go to check out.  I added the exact code that was mentioned.  What did I miss?
13 лет назад
Did you Build and Compile the Project before publishing?
8 лет назад
Can you please let me know where can i find this file "/Modules/OrderSummary.ascx.cs file" i serach every where in nop-commerce folder but i didnt find folde named "module" OR " file " OrderSummary.ascx.cs"

i am sorry i am not an expert programmer please let me know the simple way to by pass the login/login as gust during checkout procedure.

Many Thanks

ZAFAR



1. Open /Modules/OrderSummary.ascx.cs file

2. Replace Checkout() method with the following one:
        
protected void Checkout()
        {
            ApplyCheckoutAttributes();
            Response.Redirect("~/checkout.aspx");
        }

3. Recompile the solution[/quote]
8 лет назад
zafarameer wrote:
Can you please let me know where can i find this file "/Modules/OrderSummary.ascx.cs file" i serach every where in nop-commerce folder but i didnt find folde named "module" OR " file " OrderSummary.ascx.cs"

i am sorry i am not an expert programmer please let me know the simple way to by pass the login/login as gust during checkout procedure.

Many Thanks

ZAFAR



1. Open /Modules/OrderSummary.ascx.cs file

2. Replace Checkout() method with the following one:
        
protected void Checkout()
        {
            ApplyCheckoutAttributes();
            Response.Redirect("~/checkout.aspx");
        }

3. Recompile the solution


Please mention your nopcommerce version. Newer version use (mvc) .cshtml and cs file not .ascx.cs
8 лет назад
i am using nopcommerce 3.8
Thanks for your quick reply

Regards

ZAFAR
8 лет назад
sohel wrote:
Please mention your nopcommerce version. Newer version use (mvc) .cshtml and cs file not .ascx.cs


Hello,

I want to directly navigate to the Checkoutbillingaddress in v 3.5
It's possible?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.