Close

Profile: cicciuzzo

Avatar

User posts

10 years ago

hi this my view, but this don't work... you can help me?

@{
    ViewBag.Title = "Search";
    Layout = "~/Views/Shared/_ColumnsOne.cshtml";
}

@using Nop.Core.Domain.Seo;
@using Nop.Core.Infrastructure;
@using Nop.Web.Models.Catalog;
@using Nop.Web.Extensions;

<div class="page category-page">
     <div class="page-body">
     <div class="service-search-main">
          <div class="service-top-left">
              <h1>Search by model number</h1>
              <div class="model">Model number: <br /> @Html.Action("SearchBox", "Catalog") </div>
              <img src="~/Themes/DWT-Green/Content/images/SearchProduct.png" />
              <h3>Search informations</h3>
              <p>
                 Our prodcuts are identified by a model number.  The model number consist <br /> of an alphanumeric code on the product label. You can find an example about the location of this code in the below picture. Please enter the code <br /> of the machine you’re looking for in order to get the result in the searching list.
              </p>
          </div>
          <div class="service-top-right">
              <div class="service-right-top">
                  <h1>Research by trade category and power</h1>
                   @Html.Widget("rigth_side_column_search_product")
                  Trade category: <input type="search" /> <br />
                  Power in Watt: <input type="search" /> <br />
                  <input type="button" value="Search"/>
                  <h3>Search informations</h3>
                  <p>Find the original  spare parts to repair your tool and check them directly on the explosion drawing.</p>                

              </div>
              <div class="service-right-down">
                  <h1>Research by part number</h1>        
                  Part number:
                    @Html.Action("SearchBox", "Catalog")
              </div>
          </div>
      </div>
     </div>
</div>

10 years ago

Hi

i developed a simple view and i needed of insert a widget zone for to position same element in that zone.

I selected a new widget zone in admin panel but this widget don't work ..

I add the widget zone

<?xml version="1.0" encoding="utf-8" ?>
<SupportedWidgetZones>
  <WidgetZone>left_side_column_before</WidgetZone>
  <WidgetZone>left_side_column_after</WidgetZone>
  <WidgetZone>rigth_side_column_search_product</WidgetZone>
</SupportedWidgetZones>



how i doing that?

hi

10 years ago

Thanks , where is "7Spikes upgrade script from 2.8 to 3.0 " I don't find it!

I Finding to on-line documentation but don't find! ;-(

You get me link? Please.

hi

10 years ago

Hi

the height of the Tab in related product is 0px while in other tabs is ok

why?

hi

Boyko wrote:
How can I put related products in a tab?

I created a tab active in a category of products and vorreri than inside it shows the products are related ... how can I do??

hi



Hi cicciuzzo,

You need to modify the view of the Tabs and add a new tab with the related products.
Edit this file Plugins\SevenSpikes.Nop.Plugins.NopQuickTabs\Views\ProductTab\_ProductTabs.cshtml and add the code below on line 206.

@{
                    var relatedProducts = Html.Action("RelatedProducts", "Catalog", new {productId = Model.ProductId});
                    divs.Add(new KeyValuePair<string, string>("tabs-rp", relatedProducts.ToString()));
                    <li><a href="#tabs-rp">Related Products</a>
                    </li>
                }  


This code will add a new tab with the related products.
Please note that you should NOT have Ajax enabled in the tabs.

Hope this helps!

10 years ago

Hi

My Categories  Header Menu I would link to have only two level navigation ...

My Categories are organization to more level but I needed only two.

For example "Men > Pants" and not "Man > Pants > pizza ;) "

It's possible! How I to do?

hi

10 years ago

hi

how can I do the upgrade all plug-in without losing the changes made in version 2.80??

I'm interesting to new feature.

hi

10 years ago

hi

why when I insert an image that has the trasparency  the plug-in adds the background white?

hi

10 years ago

Thank you very much.

I tried it and it works...

you can use the same system to add additional tab with further information?

10 years ago

How can I put related products in a tab?

I created a tab active in a category of products and vorreri than inside it shows the products are related ... how can I do??

hi

10 years ago

Thank for reply!