Close

Profile: Boyko

Avatar

User posts

10 years ago

mattprice1707 wrote:
Hi Boyko,

Sorry I didn't reply sooner, have been off over Christmas and this alert went to my work e-mail. I may be and probably am totally wrong in what I tried to do. We sell tins of paint and the ajax filters would be great for letting the customer sort different colours, tin sizes and finishes. However, our web developer has created a custom theme that doesn't have a left sidebar where I have seen ajax filters being used in just about every demo. I was wondering whether there is any way to integrate it into the main body of the category page or into the right sidebar instead.

Thanks

Matt


Hi Matt,

You can add the Ajax Filters to any widget zone that you like. You can even define your own widget zone and add it in the SupportedWidgetZones.xml file of the plugin.
Here for example we have placed the filters in the main column.
themes.playground.nop-templates.com/baby-mobile

Please refer to the documentation of the Filters to see how to change the widget zone.

Hope this helps!

Thanks

10 years ago

gnikspam wrote:

http://onestore.by/ноутбуки


It looks like you store is closed and I am redirected to the home page all the time.
You also have a javascript error from your custom.js file that you should fix as it is possible that it can break the filters.

Thanks

10 years ago

gnikspam wrote:
Good afternoon.

Could you help me?

I added SupportedWidgetZones <WidgetZone> center_side </ WidgetZone>

save application

Added [email protected] ("center_side")

Appeared filter, but when I click on the filter nothing happens, checkbox does not work. I can not choose a filter by selecting checkbox.

senks.


Hi gnikspam,

Do you still have this problem? If so, then could you please share a link to your web site, so that we can take a look?

Thanks

pvinit wrote:
Hi,
Thank You For reply

Yes , I have Try to change the class name  according to my mark up in the nop.ribbon plugins > setting , but it,s not working.

Suggest
Regards.


Hi pvinit,

If you provide more information of how you have modified the markup exactly then we could advice if the ribbons can work or not with your changes.

Thanks

pvinit wrote:
Hi
Thank You for Reply,

How to do this :- show a filter selected value in a one string in which all selected attribute are  concate with remove link. by above example code it's add a remove link in to drop down with attribute name.

if i select color Red and size 8  then it's show after filter like this : - Red(x) - 8(x) , Here x is remove link.

suggest

Regards


Hi Pvinit,

This is not possible with the current version of the Ajax Filters. This idea was already proposed in our user voice portal, so you can vote for it here.

Thanks

pvinit wrote:

On Ajax filter, with displaying dropdown for filters, i don't want to display filter title.. but want to display title in the dropdown inplace where you are displaying 'All' under jDropdown. Can you please advise how to do this.


You have all the Razor view files of the Ajax Filters open to modification, so you can change it to your needs.
Simply modify these files below and instead of showing the resource "All" use the filterGroup name.

SevenSpikes.Nop.Plugins.AjaxFilters\Views\AttributeFilter7Spikes\AttributeFilter.cshtml
SevenSpikes.Nop.Plugins.AjaxFilters\Views\SpecificationFilter7Spikes\SpecificationFilter.cshtml
SevenSpikes.Nop.Plugins.AjaxFilters\Views\ManufacturerFilter7Spikes\ManufacturerFilter.cshtml

For example for the attribute filters change this:

<li class="selected">
                                <a class="allFilterDropDownOptions">@T("SevenSpikes.NopAjaxFilters.Client.Common.All")</a>
                            </li>


with this:

<li class="selected">
                                <a class="allFilterDropDownOptions">@attributeFilterGroup.Name</a>
                            </li>



The same changes need to be done in the other 2 views for the Specifications and Manufacturers respectively.

pvinit wrote:

Moreover, instead of open a dropdown on click, I want to open it on mouse over. Pls advise how to do this.


The Ajax Filters use jDropDown jquery library. I am not sure if it supports hover rather than click for dropdown. You can find the library here - http://do-web.com/jdropdown/overview.

Best Regards,
Nop-Templates.com Team

10 years ago

financeguy wrote:
Hi, I had a quick question about the categories shown on the home page. In the demo for this theme, there are two categories per row, then 3 featured products and then 4 best sellers per row.

Is there a way to change the items per row, i.e. 3 items per row in all of the above? Do I need to change the views or the CSS? I searched in the Configuration settings and couldn't find anything.

Thanks in advance!
FG


Hi FG,

This is so by design and if you want to change it you will need to change the styles of the theme.
Unfortunately the styles are not configurable from the administration and you need to modify the css files of the theme directly. There is no need to modify any of the Razor view files just the css styles.

Best Regards,
Nop-Templates.com Team

10 years ago

glhays wrote:
Version 2.65 of the Beauty Theme
Can not seem to be able to find the right resource in the admin panel to change the url values for facebook and twitter buttons in the footer. It only appends to the store domain value.
Any help would be greatly appreciated!


Hi glhays,

Don't you find these two settings in the administration of the Beauty theme plugin here Plugins -> Nop Beauty Theme -> Settings ?

Best Regards,
Nop-Templates.com Team

10 years ago

dincaykirtasiye wrote:
Hi to everyone;
I have created custom action in Catalogcontroller..Action name ise "MyHomePageProducts"

Now how this line should be for my case?

Should  it be something like that:
@Html.Action("JCarousel", "JCarousel", new {carouselName = "JCarousel Name", productModels = Catalog.MyHomePageProducts})



Hi dincaykirtasiye,

If you have created a new action then this action should return a view i.e MyHomePageProducts.cshtml and the model that is passed to this view should be of type IEnumerable<ProductOverviewModel>. You can refer to the HomepageProducts action in the Catalog controller and the Views\Catalog\HomepageProducts.cshtml view. What you should do is basically the same.
Then in the MyHomePageProducts.cshtml view you can add this line:

@Html.Action("JCarousel", "JCarousel", new {carouselName = "JCarousel Name", productModels = Model})

Hope this helps!

Best Regards,
Nop-Templates.com Team

10 years ago

Hi Matt,

I don't quite understand how the Ajax Filters plugin relates to the ProductBox view. The Ajax Filters are integrated on the Category page and not the product pages. Are you sure you are trying to integrate the Ajax Filter and not the Ajax Cart for example?
The Ajax Filters do show product boxes after an ajax request for filtering - maybe you want to change the product boxes that that the ajax filters return?

Please elaborate as we are not sure how to advice now.

Best Regards,
Nop-Templates.com Team