glennlawr wrote:Can you please advise exactly where I should add the new tab as an iframe in "_CreateOrUpdate.cshtml"?
Sure. Look towards the top. You will see the existing tabs all starting with x.Add(), like this:
x.Add().Text(T("Admin.Catalog.Products.Variants.Info").Text).Content(TabInfo().ToHtmlString()).Selected(true);
x.Add().Text(T("Admin.Catalog.Products.Variants.TierPrices").Text).Content(TabTierPrices().ToHtmlString());
x.Add().Text(T("Admin.Catalog.Products.Variants.ProductVariantAttributes").Text).Content(TabProductVariantAttributes().ToHtmlString());
x.Add().Text(T("Admin.Catalog.Products.Variants.Discounts").Text).Content(TabDiscounts().ToHtmlString());
Simply add the new tab at the end. In nop 2.20, this would be a new line #14. Copy the new line from the Notes.txt file. You will notice that it still starts with x.Add(), but we use a different convention to get the tab content to be an iframe in a single line.
Feel free to "follow" us on the codeplex project site and start any discussions there if needed.
Cheers!
-Matt