Can you disable plugin on plugin configure page and check if you see payment method list?
Plugin uses native nopcommerce logic for getting payment method list.
Try new release.
If you don't want to replace all cshtml files (you changed them before).
How to upgrade plugin?
1. Replace DLL file.
2. Add new function checkoutAttributeChange in _SimpleCheckoutScript.cshtml.
3. Add new cshtml file _CheckoutAttributes.cshtml.
4. Change SimpleOrderSummary.cshtml or SimpleOrderSummary2.cshtml.
Add this code
if (Model.CheckoutAttributes.Count() > 0)
{
<div class="selected-checkout-attributes">
@Html.Partial((string)Model.CustomProperties["_CheckoutAttributes"], Model.CheckoutAttributes)
</div>
}
if (!String.IsNullOrEmpty(Model.CheckoutAttributeInfo))
{
<div class="selected-checkout-attributes">
@Html.Raw(Model.CheckoutAttributeInfo)
</div>
}
I am sorry for delay. You waited more two weeks, but I told that you would wait two days.
I'll send you new release today.
Yes.
If you use Ajax for loading products you will have ONE pixel code (first loading of page).
You will use filters and pagination but we have static FIRST page.
Plugin doesn't send pixel.
Do you want to send pixel second time with new product list?
If you dons't use Ajax (each URL has another page) we'll have two different pages.
The second URL
https://lifestylebybabettes.com/sofas#/pageSize=6&orderBy=0&pageNumber=2
is different for Google.
Each page has own pixel with own list of products.
Open this page (with problem tag <img>) and validate it using external validation service.
https://validator.w3.org/
You page has wrong <img>.
Example you didn't close this tag, etc.
Validate pages and solve problems with HTML markup.
You are right....
The second page will have another products.... plugin will track new page (URL) and new products....
I must read documentation about such logic....
I removed commas for header line and removed commas for empty values.
Try new release.
>The best option is to replace a " with a "" this way it will still be a valid csv and will keep the quote.
I added your request.
Thank you.