Close

Profile: Deni

Avatar

User posts

10 years ago

jkeeler wrote:
I have been using the Lighthouse theme for over a year and a half.  I think the original theme had used the Mega Menu plugin to handle the responsive menu.  Upon upgrading, it appears the option "Enable responsive menu" is no longer there. So I have to use the megameu plugin to get the responsive menu at all times.  Is this true and if so is there a work around to use the theme menu on desktops and to use the mega menu under 960px?

Also, it appears if I only have 1 slide to display, the plugin does not work.  It is replicating the image 2 times.  Does this plugin need 2 sliders to work properly?

My site is a dev site so it currently is not publicly available - sorry.


Hi, 

1. Yes, the setting "Enable responsive menu" is gone, because it is not necessary anymore. The design of the theme is responsive already and the menu is responsive too. 

2. We have a little "optimization", when there is just one slide, we do not call the whole JavaScript for the slider, but just display the image. I have not seen duplicate images, so when your site is ready, I can take a look why they are replicating. The plugin can work with as many pictures as you want.

10 years ago

Hi blaster30, 

I think you are using old version. Please update your plugin and this issue will disappear. We have fixed it long time ago.

Bugs
10 years ago

skynopc56 wrote:
Running nop 3.4 with multiple stores. In the shoppingcartbox in the electronic theme if I add an item to the cart in one store, and then go to another store the count on the shoppingcartbox is not store dependent it always add up the total items in cart across all stores.  The built in shopping cart count above this works fine.  Is there a fix to this for the cart box to take into account items in cart for the store you are in?

Thanks


Hi, 

We have fixed this and it is deployed. Please update your SevenSpikes.Theme.Electronics plugin and everything will work fine.

Bugs
10 years ago

skynopc56 wrote:
So I maybe should not have said topic.  It is actually the "About Us" link.  I have "Include "About Us" link:" checked for all stores in the config.  However I have a unique about us page for each store.

If I switch from Store A to Store B the link in the mega menu changes fine and it will link to the correct "About Us" page.  However the title (text of the link does not change).  Say my AboutUs page for Store A is called "About Store A" and the AboutUs page for store B is called "About Store B" the text for the link for the "About Us" tab in Mega Menu will always read "About Store A" even if I am in store B (but like I said it does link to Store B page when I click About Store A, it is just the title of the AboutUS page per store that is not pulling).


Hi, 

As I said, please raise a ticket about this issue, because I do not even know which version of nop you are running (I suppose it is v3.40 or below), so I can not help you on 100% here. 

Bugs
10 years ago

skynopc56 wrote:
In the nop mega menu I have multiple stores all enabled with the about us topic.  When I change stores the about us link does change to the new stores link, however the text of the menu will always remain at whatever the Title for the first store is.

For example if Store 1 About us says  "About Store 1" then you go to store 2 it will also say "About Store 1" but does link to the store 2 about us page I have set up.


Hi, 

The topics are per store. That means that they have only one title. Maybe you have two different topics? I am not sure what is your problem. Please explain further or raise a ticket in our ticketing system providing more information and links to your sites.

10 years ago

deselt wrote:
I using Motion theme. Recently I updated to version 3.5.907.15647
After 3 hours of working website start restarting every 5 minis.
I took me long time figure it out but if I disable Ajax Filter the restart stop.
Antibody experience similar problem? 


Hi, 

I guess you are using shared hosting. If I am right, then most probably the allocated memory for the NOP Application is too small and when you add our plugin you are hitting this limit. So, I suggest you to contact your hosting provider and ask them to increase your app pool memory. Waiting for your reply! 

Bugs
10 years ago

skynopc56 wrote:
Running nop 3.4 with multiple stores. In the shoppingcartbox in the electronic theme if I add an item to the cart in one store, and then go to another store the count on the shoppingcartbox is not store dependent it always add up the total items in cart across all stores.  The built in shopping cart count above this works fine.  Is there a fix to this for the cart box to take into account items in cart for the store you are in?

Thanks


Hi, 

Thanks for reporting this! I will let you know when the fix is deployed and ready for download. 

10 years ago

DJ_Balogh wrote:
How can I remove the "Overview" tab from the quick tabs 


Hi, 

You can uncheck this setting in the Quick Tabs administration: Enable Product Full Description Tab.

10 years ago

DJ_Balogh wrote:
Is there a way to put products in the Mega Menu? Or if a category that's in the menu only has one product, have it redirect directly to that product page?

Thank you,


Hi, 

The Mega Menu does not have such functionality. You can suggest this feature it in our User Voice portal

10 years ago

kaka135 wrote:
Hi,

Can you guide me how to add the similar codes/functions in the home page as well? I am getting the error I mentioned earlier if I copied the same codes over to the home page, but I'd like to keep the AllShops page as well.

I need this function urgently, so I might not be able to wait until the integration feature is developed.

Thank you very much.

regards,
Lee Ka


Hi, 

I came up with an idea how to achieve it:

You can call the All Shops action anywhere on the home page - open the Index.cshtml view and place this code, where you want to show the Store Locator functionality:
@Html.Action("AllShops", "StoreLocator", new { isStoreLocatorCalledFromHomePage = true })

Now, go to the AllShops.cshtml view and find this row:
Layout = "~/Views/Shared/_ColumnsOne.cshtml";


Place this code right after it:
if (Url.RequestContext.RouteData.Values["isStoreLocatorCalledFromHomePage"] != null && bool.Parse(Url.RequestContext.RouteData.Values["isStoreLocatorCalledFromHomePage"].ToString()))
    {
        Layout = "";
    }


That is all !