ellerlor wrote:Hi,
OK it is clear.. but what means " you need to create a new action" ..
First of all I have some problem to reference into your _ProductView.cs page my new development because I have not the project of Quick Tabs in my solution...
Thanks in advance for any better clarification
Hi ellerlor,
By creating a new action I meant to add a new method in one of the existing controllers in nopCommerce or in your own plugin controller. Then you can call this action from the Tabs view just like this:
@Html.Action("YourActionName", "YourControllerName", new { productId = Model.ProductId })
Your action will return some html that you can show in a tab. There is no need to reference any custom types in the Tabs view.
Hope this is clearer now!
Best Regards,
Nop-Templates.com Support Team