Close

Profile: ezzat2k

Avatar

User posts

3 years ago


I'm trying to display some categories on Home page as well, using Pavilion 4.3.402.32571, I tried the solution mentioned here, but no luck. any Idea how I can add home categories (under the main slider)

Thank you

Never mind, I figured it out, and for those who might have the same issue

you need to update _ProductTabsWithoutAjax.cshtml (under SevenSpikes.Nop.Plugins/Views/ProductTab ) with this code:  

@** Copyright 2014 Seven Spikes Ltd. All rights reserved. (http://www.nop-templates.com)
* http://www.nop-templates.com/t/licensinginfo
*@

@using Nop.Core.Infrastructure
@using Nop.Core
@using SevenSpikes.Nop.Plugins.NopQuickTabs
@model SevenSpikes.Nop.Plugins.NopQuickTabs.Models.TabUIModel
    
<script type="text/javascript">
    jQuery(function ($) {
        $("#quickTabs").tabs();
    });
</script>
@{
    var attachmentsTabContent = Html.Widget("quick_tabs_product_attachments_tab");
    bool hasAttachments = true;

    if (attachmentsTabContent == null || attachmentsTabContent == MvcHtmlString.Empty || string.Compare(attachmentsTabContent.ToString().Trim(), string.Empty, StringComparison.InvariantCultureIgnoreCase) == 0)
    {
        hasAttachments = false;
    }
}
<div id="quickTabs" class="productTabs">
    <div class="productTabs-header">
        <ul>
            @foreach (var tabInfo in Model.Tabs)
            {
                <li>
                    <a href="#[email protected]">@tabInfo.Title</a>
                </li>
            }
            @if (hasAttachments)
            {
                <li>
                    <a href="#quickTab-attachments-in-tab">Attachments</a>
                </li>
            }
            @* Uncomment the code below if you want to have a Tab that gets its information from a Topic. This tab will be shown for all products in your store*@
            @*<li><a href="#quickTab-ShippingInfo">@T("ShippingReturns")</a> </li>*@
        </ul>
    </div>
    <div class="productTabs-body">
        @foreach (var tabInfo in Model.Tabs)
        {
            <div id="[email protected]">
                @Html.Raw(tabInfo.Content)
            </div>
        }
        @if (hasAttachments)
        {
            <div id="quickTab-attachments-in-tab">
                @attachmentsTabContent
            </div>
        }
        @* Uncomment the code below if you want to have a Tab that gets its information from a Topic. This tab will be shown for all products in your store *@
        @*<div id="quickTab-ShippingInfo">
                @Html.Action("TopicBlock", "ProductTab", new { systemName = "ShippingInfo" })
            </div>*@
    </div>
</div>

I just purchased this plugin, and unable to have it display under the quick_tabs_product_attachments_tab widget-zone, I'm running NOP 3.40 with quick tabs installed. I have tried setting the quick_tabs_product_attachments_tab as the default (which never actually works for any Zone), and I also added the dame zone again under that specific attachment Zones. Please Advise, (do I need to modify/change anything under Quick tabs settings?!)

8 years ago



I added this line-
.quickViewWindow .product-grid .item-box .product-rating-box {
display:none;
}
  - and that did it, thanks anyways.

8 years ago

Thank you very much,
that did it. now the price is showing under related products. if its not too much to ask, any way to hide just the (ratting stars) it just makes the related products box a little big. but this is great. Thanks again.

8 years ago

Boyko,

I sent you the URL in a PM, where we need to add price to related product (in Quick View Popup)


Thanks

8 years ago

Sent you 

8 years ago

Dear,

Thank you for the quick response, however this only showed/added the Rating (stars), which is cool, but not the price.

I added the code as you had it.

can you please advise.

Thanks in advance.

8 years ago

Is there any way to include the price fore the related products in the quick view?!

only the picture and product name shows. it would be great to include the price as well.

please help, I'm running 3.40 / electronics Theme.


Thanks

8 years ago

Iliyan,

Thank you for the quick response, I do appreciate it, your suggestions worked, but it didn't show up.

I can see in the source code now that the price is there, however it is not showing/visible on the page. I'm assuming it might be CSS related, cause inspecting the div shows it's outside of the layout.

Thanks