Close

Profile: Deni

Avatar

User posts

Bugs
9 years ago

IvanSlater wrote:
Updated, but the last version still v3.5.855.15571 and the bug keeps alive.


Hi, 

I see that your license has expired in February. This is the reason why you can not download the latest version of the plugin. Please contact our sales department, referring this topic.

9 years ago

nonam wrote:
Hello:
In the footer of the template, I am trying to have my "Conditions of Use" show in the column 2 or 3. I did set it that way in the administrator login, and I can see it is active with an arrow showing in column 2, but on the website, it simply doesn't show.  How do I fix this?  As well, how do I remove the RSS logo from the footer, as well, the credit card images?


Hi, 

The theme is designed to have only social icons in the column 2 (middle column). You can place the "condition of use" in column 1 or 3.

To hide the RSS logo and the credit card images just go to your Artfactory theme administration and place this code in the Custom Head Styles:
.footer-block.social-sharing .rss,
.footer-lower .accepted-payment-methods {
display: none;
}


I hope this helped !

9 years ago

jyoti.dabre wrote:
Hi.. As i am using 3.6 version, please explain the steps to integrate; as i am unable to find any documentation.


Hi, 

To show the Store Locator map wherever you like, you should follow these steps:

1. Go to this file: \Plugins\SevenSpikes.Nop.Plugins.StoreLocator\SupportedWidgetZones_ContactUsPage.xml

2. Add a new widget zone like this:

<WidgetZone>your_custom_widget_zone</WidgetZone>


3. Save the file and Restart Application

4. Go to the administration of the plugin and choose this widget zone for the setting "Contact Us Page Integration".

Please write back if you need any further assistance.

Bugs
9 years ago

Hi, 

As I am looking into our deploy log, the fix is present since 2nd of July. So, if you update your theme plugin, you should get the fix. If you still need any help please raise a ticket in our ticketing system.

9 years ago

Hi, 

We are really thinking now of the best implementation of this functionality and we will soon come up with the solution. Thanks for your suggestions!

9 years ago

jyoti.dabre wrote:
Hi,

How to add Nop Store Locator to Custom page ? I need to show 'All Shops' page directly on the custom page instead of menu list. Also i need to change the Page Url from 'All Shops' to 'All Locations'. Please help.


Hi, 

Is you are using nop version below v3.60, then you can simply add the new widget zone, where you want to show the store locator map, into this file: \Plugins\SevenSpikes.Nop.Plugins.StoreLocator\SupportedWidgetZones.xml.

If you are using v3.60, then the integration is a little bit different and if you need it I will explain it too.

9 years ago

prateek.shah wrote:
Solved!

.side-2 {float: left;}
.center-2 {float: right;}


Hi, 

Yes, that is the easiest way. We are glad that you have found it!

9 years ago

BrickHunters wrote:
Hello there, this is exactly how I did it. I was able to code it to link towards the specific product pages, good stuff.

Now what I would like to achieve is the same lay-out as I'd have in my Mega Menu, because what I see now is a basic layout of Nopcommerce, not divided in columns. What is a plausible method to achieve this?


Hi, 

This is a sample mark-up of what should be a top menu item:

<li>
    <a href="#" class="products-item-menu">Products</a>
    <div class="dropdown categories fullWidth boxes-4">
        <div class="row-wrapper">
            <div class="row">
                <div class="box">
                    <div class="picture">
                        <a href="/electronics" title="Show products in category Electronics">
                            <img class="lazy" alt="Picture for category Electronics" src="http://store1.com:15566/content/images/thumbs/default-image_210.png" data-original="http://store1.com:15566/content/images/thumbs/default-image_210.png" style="display: inline;">
                        </a>
                        <div class="title">
                            <a href="/electronics" title="electronics">Electronics</a>
                        </div>
                    </div>
                </div>
                <div class="box">
                    <div class="picture">
                        <a href="/books" title="Show products in category Books">
                            <img class="lazy" alt="Picture for category Books" src="http://store1.com:15566/content/images/thumbs/0000001_book_210.jpeg" data-original="http://store1.com:15566/content/images/thumbs/0000001_book_210.jpeg" style="display: inline;">
                        </a>
                        <div class="title">
                            <a href="/books" title="Books">Books</a>
                        </div>
                    </div>
                </div>
                <div class="box">
                    <div class="picture">
                        <a href="/computers" title="Show products in category Computers">
                            <img class="lazy" alt="Picture for category Computers" src="http://store1.com:15566/content/images/thumbs/0000002_computers_210.jpeg" data-original="http://store1.com:15566/content/images/thumbs/0000002_computers_210.jpeg" style="display: inline;">
                        </a>
                        <div class="title">
                            <a href="/computers" title="Computers">Computers</a>
                        </div>
                    </div>
                </div>
                <div class="box">
                    <div class="picture">
                        <a href="/electronics" title="Show products in category Electronics">
                            <img class="lazy" alt="Picture for category Electronics" src="http://store1.com:15566/content/images/thumbs/0000007_electronics_210.jpeg" data-original="http://store1.com:15566/content/images/thumbs/0000007_electronics_210.jpeg" style="display: inline;">
                        </a>
                        <div class="title">
                            <a href="/electronics" title="Electronics">Electronics</a>
                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</li>


I hope this gives you the whole idea of the mark-up. You can always inspect it in the browser - this will be very helpful to you.

9 years ago

Elina wrote:
I need hide product attributes, but not all, for example, i have Size, Color, Front Decorations and Back Decorations. Everything should be removed except size.


Hi, 

As I said, removing specific attribute can be done only on the public part via CSS, but this does not mean it will be really removed. The customer won`t see it, but it will apply to the filtration and in some cases it can cause weird outcome. At the moment, the plugin does not support hiding of only some attributes. You can suggest this in our User Voice portal.

9 years ago

Elina wrote:
Hi everyone, how to remove some filters from the web page? For example, i can filter products by colour, size and i want remove them, how i can make it? Thanks.


Hi, 

The Ajax Filter plugin has Availability settings. This means you can hide all Categories, Specification, Manufacturers or Vendors. If you want to hide only specific specification attribute, then you can do it with CSS.
Let me know if you need further help.