Close

Profile: hristian.dimov

Avatar

User posts

robinrogne wrote:
When i for instance have 2 dropdowns (using checkboxes), version 3.9 on nopcommerce.
For example i have a dropdown A and a dropdown B. Under A i have selected one option. When i am opening dropdown B and select a option there as well, after i hae select it, dropdown A expands it self. Is there any possibilities to make it not open it self?


Hi,

After each filtration, the AjaxFilters plugin opens up each panel which already has some filtration in it. If you need to change this behavior, you need to change the javascript file: Plugins\SevenSpikes.Nop.Plugins.AjaxFilters\Scripts\Filters.min.js

Just search for this:

a(".clearPriceRangeFilter, .clearFilterOptions").filter(":visible").siblings("a.toggleControl.closed").click()

and remove it completely.

Note: Keep in mind that the first letter might not be "a", but some other letter. So, if you can't find it with "a" at the beginning, try to search without any letter in the beginning.

Hope this helps!

6 years ago

sandrac3xsw wrote:
I want to assign a ticket to a vendor but only have the assigned vendor (and admin) see that particular ticket. Currently when I assign a ticket to vendor all vendors can see all tickets.


Hi Sandra,

The only way of achieving this is to create a department for each vendor and assign it as a staff there. In this way, each of the vendors would have access only to those tickets that have been assigned to them.

Hope this helps!

ChrisKaun wrote:
Hey, I have a problem with specification attribute filtering. Lets say I've created a few printer cartridges. One is named "Cartridge YELLOW - 200ml" and one "Cartridge GREEN - 200ml". I've created a specification attribute "Color" and added this to those cartridges. The "YELLOW" one got a color attribute of value "YELLOW", the "GREEN" cartridge with "GREEN" as its value. Both are allowed to be used as a filter. When I know enter my category page, where the filters are displayed, I have the filter-attribute "color" with the two values "yellow" and "green". If I tick only one of those, everything works as expected, but if I activate both attributes, both cartridges are displayed. My guess is that NopAjaxFilters uses a OR operator for these attributes. But I want to only display products with all attributes present, so for my example where GREEN AND YELLOW is present (which should return no products). Anyway to achieve this?


Hi Chris,

Yes, you are right - the plugin uses OR logic operator. Unfortunately, it is not a configurable option and it cannot be changed to "AND".

Hope this helps!

6 years ago

a.plugaru2001 wrote:
What is the difference between a trial version and a paid one?


Hi,

the TRIAL plugin is intended only for testing the plugin. It is not recommended to be used on a live site. The TRIAL version has some restrictions like on each 5th request it will show you a message that you are using a trial version of the plugin.

Hope this helps!

6 years ago

baloghc wrote:
Using this plugin on Nop 3.7 with the ArtFactory Theme installed.
How does the Full Description checkbox override the stock NOP full description?

We currently have it set to show in the QuickTabs but now it is displaying twice. (See screenshot)



Any help is greatly appreciated!


Hi,

the plugin is hiding the Full Description text with CSS and clone it to appeared in a tab. In the "_QuickTabsHeadStyles.cshtml" file you would find all of the CSS styles that are applied specifically for this plugin.

Could you please provide a link to your website so that we can inspect it?

6 years ago

tyebeach wrote:
Hello I have a product that is named "50 Family Reunion Shirts." I would like my customers to be able to order as many of a certain color and size as they need and also have a way of validating that a total of 50 shirts were selected.

I would like for the page to function as follows:

Customer has a choice of shirt color (1,2,3,4...etc)
If the customer chooses 1, then 1 dropdown box will appear for color choice, if they pick 2, then 2 boxes will appear...etc

For each color chosen there needs to be size and quantity relating to the choice of color.

Is this possible?


Hi,

there is no such functionality in nopCommerce that will allow you to accomplish this. It will require a lot of customization in order to achieve it.

I suggest you ask in the nopCommerce forums as there might be someone who already did something like this.

Hope this helps!

6 years ago

mcuria wrote:
Would like the replace the Coordinates column in the admin Store Locator list (/admin/StoreLocatorAdmin/List) with Street Address.  This would make it easier for admins to select the correct store to edit.  Is this possible with this plugin?  Can it be accomplished programatically?


Hi,

Unfortunately, this is not possible with the current version of the plugin.

Hope this helps!

Bugs
7 years ago

aresk wrote:
Hi, our company is using version 3.7 for one of our websites and the custom head styles in the theme settings don't apply anymore, they're nowhere to be found when checking the page source with developer tools.

I'd just like to know the solution if this is a known bug and if not at least have some hint of where to look to solve it.

Thanks


Hi,

That's really weird. Could you please submit a ticket providing admin credentials and a link to your site so that we can check what might be wrong?

Looking forward to your reply!

Bugs
7 years ago

n812F wrote:
After updating my Element theme to 3.9.137.23544 I get an error from AjaxFilters when using the price range slider.

System.Data.SqlClient.SqlException (0x80131904): Invalid column name 'SpecialPrice'. Invalid column name 'SpecialPriceStartDateTimeUtc'... and so on


URL <store>/getfilteredproducts

Afaik these columns have been dropped with nopCommerce 3.9


Hi,

I searched through all of the code in the Ajax Filters plugins and there is no SpecialPrice left in the code anywhere. Are you sure that you have updated the plugins properly - deleted the old and uploaded the new ones?

Also, you can try to clear the Temporary ASP.NET files to make sure that the .dll files aren't loaded from there.

Hope this helps!

jirwin wrote:
Hello,
I was hoping you could help me with an issue I'm having. This isn't an issue with 7spikes code, per se, but the Nop Element theme is indirectly causing an issue that I'm hoping you have encountered.

I wrote a plugin and am overriding a partial view (_OrderDetails.Shipping). Note: this partial view resides in the admin portion of the site, and is not accessed from Nop.Web. I've taken the standard steps of adding a custom view engine and injected it so that it is the first ViewEngine that MVC finds. When I run this without the 7spikes Element/Code/etc. plugins installed, I see the correct content, for example:

http://imgur.com/a/n1zkU

However, when I install the Element theme (and accompanying 7spikes plugins) I see the original partial view without my changes. With the help of Glimpse I can see the View location is being provided by the ViewEngine7Spikes view engine, and not my own:

http://imgur.com/a/js1tZ

Removing these plugins results in me seeing my partial view again. Since the Element theme does not alter the admin site in any way, I'm wondering if it is possible to create exceptions so that the 7spikes ViewEngine does not intercept admin controller and partial view requests. I'm sure you're well seasoned in doing so, but the following guide outlines the process I followed and can be used to reproduce the issue:

http://alexwolfthoughts.com/overriding-nopcommerce-admin-views-and-partial-views/


Any insight is greatly appreciated,
Thank you


Hi,

you can follow this example - https://www.nop-templates.com/boards/topic/3135/working-with-another-plugin#13316

So, basically, if your ViewEngine is registered at position 0, your views will be always found first before any other view engine.

Hope this helps!