Close

Profile: todor.atanasov

Avatar

User posts

Mobile view
2 years ago

Akli38 wrote:
Hello there,
I'd like to have a two columns product view in mobiles application. Is it possible using the parameters of the products catalog?
Thanks


Greetings,

Thank you for reaching out to us!

Unfortunately, there is no such setting in the Uptown theme. However, if you have CSS knowledge, you can write your custom CSS code and add it to the Custom Head Styles field in the theme's settings.

deepSpace wrote:


Greetings,

Thank you for reaching out to us!

You can change a filter to a slider type for the Specification attributes. Go to the Ajax Filters settings page -> Specification Attribute Slider Settings tab and add the desired specification attribute there.

2 years ago

AmirHossein wrote:
ticket number: 19479


Greetings,

I have just replied to your ticket and we can continue the communication in the ticket.

2 years ago

porcelanosa wrote:
Hello, as title suggests, anywhere slider is not showing until scroll is used. There is total of 3 sliders in frame at that point and one is showing while other 2 need scroll action in order to appear. Any suggestions on how to fix this? Thanks!

Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with the URL of your store, as well as the version of nopCommerce that you are using.

Hello, I don't have product listed on tickets so I can't submit ticket. I remember that this was an issue 2-3 years ago also with Emporium theme, only back then it was categories that didn't want to load until scroll. Back then I didn't get answer so I just changed layout in order for them to not be visible when on landing frame.


Greetings,

Thank you for your reply!

I have tested this in the latest version of the Emporium theme and Anywhere sliders, so in that case, please update your theme and let me know if the issue still exists.

2 years ago

AmirHossein wrote:
In Mega menu, When I add one of the Pages item or add Custom link to the menu, it is not saved and does not give any error message
I check that [Include in top menu] for pages and is selected.


Greetings,

Thank you for reaching out to us!

Unfortunately, I'm not able to replicate the issue locally.

Could you please raise a ticket in our ticket system and provide us with access to your administration, so we can investigate further?

2 years ago

porcelanosa wrote:
Hello, as title suggests, anywhere slider is not showing until scroll is used. There is total of 3 sliders in frame at that point and one is showing while other 2 need scroll action in order to appear. Any suggestions on how to fix this? Thanks!


Greetings,

Thank you for reaching out to us!

Please raise a ticket in our support system and provide us with the URL of your store, as well as the version of nopCommerce that you are using.

2 years ago

Vanja Vlaco wrote:
Hi,

I am facing the same issue. I am using version 4.2.529.31017 of SevenSpikes.Nop.Plugins.MegaMenu plugin. Is there any solution to this?

Best,
Vanja


Greetings,

Thank you for reaching out to us!

We are not aware of any performance issues in 4.2. If you wish us to investigate further, please submit a ticket and provide us with more information like which theme you are using and the URL of your store.

2 years ago

larsenlights wrote:
Hello,

Can I somehow add video in the homepage slider?

Www.Larsenlights.com


Greetings,

Thank you for reaching out to us!

In older versions of our Anywhere Sliders plugin, we are using the Nivo slider, where it is not possible to upload a video. However, in recent versions of nopCommerce, we changed the slider we use and now there are two options - Picture and Content. You can select Content, which allows you to add any HTML content as a slider.

This way, you can add your video as embedded HTML code or with the <video> HTML tag.

2 years ago

poshopperone1 wrote:
Hello,  am trying to place a carousel on my homepage. the procedure I use is i go to the widget zone and select the location from the drop down menu.  The drop down menu only shows a limited amount of zones i can choose from and when I select say  
home_page_before_categories  or   manufacturerdetails_bottom
the carousel does not appear. but when i select  content_before
it does appear.  Am not sure if these has to do with some prior codes or what the issue is but. the carousel is 1) does not appear after selecting several zones and 2) I dont see as many does as there is in other widgets like html.widgets


Greetings,

Thank you for reaching out to us!

I have replied to your ticket but I will provide the information here as well.

The available widget zones are defined in \Plugins\SevenSpikes.Nop.Plugins.JCarousel\SupportedWidgetZones.xml file and you can add any other widget zone there.

However, the data source type of the carousel is important as well. For example, if you want to show on the homepage, the featured products, you need to use Home Page Featured Products data source, instead of Category Featured Products, as the Category Featured Products data source returns products only on the category pages.

If you have any further questions, please reply to your ticket.

2 years ago

Cbauto wrote:
Really can't get this to work getting the following error:

An error occurred during the compilation of a resource required to process this request. Please review the following specific error details and modify your source code appropriately.
h:----->\TopicDetails.cshtml

'IHtmlHelper<TopicModel>' does not contain a definition for 'Widget' and no extension method 'Widget' accepting a first argument of type 'IHtmlHelper<TopicModel>' could be found (are you missing a using directive or an assembly reference?)

I've copied the above exactly and inserted the correct names. What could be the error?


Greetings,

I assume that you are using a more recent version of nopCommerce. When you modify the TopicDetails.cshtml template, instead of adding:

@if (Model.SystemName.Equals("YourTopicName"))
{
    Html.Widget("your_widget_zone_name");
}


You now have to use (in 4.40 nopCommerce):

@if (Model.SystemName.Equals("YourTopicName"))
{
    @await Component.InvokeAsync("Widget", new { widgetZone = "your_widget_zone_name" })
}


Please let me know if you need any further advice or if you are using a version where the above code does not work.