Close

Profile: Stefan

Avatar

User posts

prateek.shah wrote:
Hello,

How do I display actual color box against color specification attributes like in the below example?

http://postimg.org/image/nw1eg63vf/


Hi Prateek,

The color attributes shown on your screenshots are part of the Nop Ajax Filters filtering by color attributes. You will need just to create attributes of type color squares and enable filter by attribute from the Nop Ajax Filters administration.

For more info on product attributes, you can refer to the nopCommerce's documentation.

Hope that helps!

emadkhan wrote:
So how can I begin with the process? Do I need to purchase the product and then you will modify it and allow me to download after it has been modified?


Hi Emad,

I am glad you decided to go with the theme. You should first purchase the theme and then you will be able to raise a ticket in our support system with your requirements. Once this is done we will get back to you with instructions on how to integrate the changes to the theme.

Speak to you soon!

emadkhan wrote:
Thanks for the response. Will there be an additional charge for doing these straight forward modifications?


Hi emad,

No, there will be no additional charge. In general we do not provide customization to our products which is outside the scope of our support, but in your case we will make them for you as they are straightforward and will help you achieve the look and feel of the theme as you need.

Just submit a question in our support system with your requirements and we will be happy to help!

Should you need any further help, please let us know!

emadkhan wrote:
Hi

I am wondering if the layout width can be increased to about 1400px. Also I would like to have about 5 products per row in the category pages. This may require the item boxes to be reduced in width. Can this be achieved easily and if so what would the process be?

I haven't purchased this theme yet but I am very interested in purchasing it if these two things can be achieved. Also I would like to change the way the menu animation with two slants expanding outward. I would like to remove that animation and just have the simple highlight like you have in the nop-templates website. Can that be achieved?


Hi emad,

Thank you for your interest.

The required changes cannot be implemented directly through the administration, but can easily be done through small css changes. We will be more than happy to assist you in that and provide the changes that you will need to add to your css in order to make the desired effect. When we change the layout to 1400px this will make all pages be wider and not only the pages with product boxes. But I assume that is what you are looking for. So you can be sure that these changes will be done and you will have your ecommerce website look like you want.

Hope that helps!

Should you need any further information, please let me know and I will be happy to help!

Nop Mega Menu
10 years ago

xcelldirect wrote:
Nop Mega Menu is not working  its not show on home page after install in admin .


Hi xcelldirect,

Can you please double check that it is enabled as a widget and that you have the content_before widget zone in your markup. If you can send us a link to your store we might be able to more precisely see what might be the case.

Hope that helps!

Bugs
10 years ago

Hi goldenzh,

Thank you for your feedback!

Would it be possible to provide some more info on the issue you are having so that we can see what might be wrong.

1. I suppose you have not made any modifications to the theme?
2. Is it only on the product details page that the mobile menu does not open?
3. What cellphone you have tested it on and with which browser?
4. Does the issue occur only on this particular type of cellphone or in general.
5. Are there any other issues on the product details page or it is just the mega menu that is not working?

Thanks in advance!

Bugs
10 years ago

manager wrote:
Hey, What are you doing? Forum search box location is wrong. Look to confirm your demo site.


Hi,

The issues with the forum had been fixed. You can update your theme by downloading the latest theme package from your My Downloads section.

Thanks for the feedback!

10 years ago

Hi winebear,

We have fixed that and uploaded on our site. You can download your package and just replace the Plugins\SevenSpikes.Nop.Plugins.Core\Scripts\SevenSpikesExtensions.js file with the one from the downloaded package. Then you will need to clear your browser's cache in order to new js file to get loaded.

You can test it also on our demo which has the fix already.

Thank you for your feedback!

Please let us know if there are any other issues found.

shabbyllity wrote:
Wow thank you for your fast reply!
The solution is almost perfect... Unfortunately I can no more click on the image to open the products page. Well, in the corners the image is clickable, also in the middle where the discription is, but not around the middle, there where the red circle was.
Is there a possiblity to completely remove these circles?
That would be brilliant!

(that the zoom button is also gone is no problem, I've disabled it anyway... ;) )

Thanks in advance!


Hi again,

Sorry for the late reply!

Having in mind that you will disable the quick view button, you can just change the code that I wrote in my previous post to this one:

@media (min-width: 1001px){
  .product-grid .item-box:hover .description-wrapper {
   display:none;
  }
}

So this will hide the description with the circle and the whole product picture will be clickable.

Hope that helps!

Hi shabbyllity,

Unfortunately there is no such setting but you can hide the circle that is shown upon hover very easily. Just add the following code to your admin -> plugins -> nop artfactory theme -> settings -> custom head styles textbox

@media (min-width: 1001px){
  .product-grid .item-box:hover .description-wrapper {
    opacity: 0;
  }
}

You just need to have in mind that you will hide also the quick view button that show a popup with information about the product.

If you want to preserve the quick view button and just hide the circle with the short description, please let us know and we can think of a way to have the quick view button present.

Hope that helps!