Adding a button

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 年 前
Hello,

I want to add one more button here, on this page -> https://prnt.sc/h4ehel , below the "Apply coupon" button.

How I can do that? Thanks in advance!
6 年 前
pokata_55 wrote:
Hello,

I want to add one more button here, on this page -> https://prnt.sc/h4ehel , below the "Apply coupon" button.

How I can do that? Thanks in advance!


Find out ~\Nop.Web\Views\ShoppingCart\OrderSummary.cshtml

Put button in the following portion or it's inner Partial View file .i.e _DiscountBox


<div class="deals">
                       @Html.Partial("_DiscountBox", Model.DiscountBox)
                       @Html.Partial("_GiftCardBox", Model.GiftCardBox)
                       @Html.Widget("order_summary_content_deals")
                   </div>
6 年 前
sohel wrote:
Hello,

I want to add one more button here, on this page -> https://prnt.sc/h4ehel , below the "Apply coupon" button.

How I can do that? Thanks in advance!

Find out ~\Nop.Web\Views\ShoppingCart\OrderSummary.cshtml

Put button in the following portion or it's inner Partial View file .i.e _DiscountBox


<div class="deals">
                       @Html.Partial("_DiscountBox", Model.DiscountBox)
                       @Html.Partial("_GiftCardBox", Model.GiftCardBox)
                       @Html.Widget("order_summary_content_deals")
                   </div>


Hi Sohel,

I found that it should be here. But I want the same box like DiscountBox and GiftCardBox - just one more box between them, but the problem is I can't see in this class the code for them.
6 年 前
Ignore it, it is already done.
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.