Close

Profile: todor.atanasov

Avatar

User posts

Bugs
3 years ago

DarioV wrote:
I do not have ability to rise a ticket, because more than one year passed since I bought all your plugins and themes.


Greetings,

In order to have access to the most recent versions of any plugin/theme or receive support for any of our products, you need to have an active license.

Please renew your license and you will be able to raise a support ticket in our system again.

4.4 Bugs
3 years ago

shootingsurplus wrote:
Your venture theme is not displaying product specification/attribute filters.  I do not wish to use your Ajax Filters plugin but rather want to use nopcommerce's own default implementation of ajax filtering.  

I checked and Nop.Web.Factories.CatalogModelFactory.PrepareCategoryProductsModelAsync is properly creating and passing a SpecificationFilterModel to the Nop.Web.Models.Catalog.CatalogProductsModel.SpecificationFilter property, but the UI does not display any filterable content on the left hand side of the page after loading a category.  We have a variety of Product Specifications that should be displayed when browsing categories and manufacturers.

Please advise ASAP.  We are using nopcommerce 4.40.1

Thanks.

Wayne


Greetings Wayne,

Thank you for reaching out!

The new Filters functionality in nopCommerce requires a lot of CSS customization on all our themes in order to fit the design and we are still not done with it.

Since we just finished releasing all our themes for 4.4, this will be one of our top priorities now.

4.40 support
3 years ago

fadigio79 wrote:
is there a release of the theme for 4.40?
thanks


Greetings,

Thank you for reaching out!

I just wanted to let you know that the Prisma theme for 4.4 is available on the My Downloads page now.

3 years ago

OTH wrote:
Hi,

Is there a way to make the logo image not fetch the colors from the theme color presets?

I would want it to basically just have a white background if possible and only show the logo itself.

It bugs me a little bit to see a tint from the color presets around the logo.


Greetings,

Thank you for reaching out!

You can set the background of the logo to none:

.header-logo .logo {
    background: none;
}


Place this in your theme settings Custom head styles field.

Version 4.4
3 years ago

marco.laporta wrote:
Hello, do you have any schedule for releasing Nop Urban for nopcommerce 4.4?
Thanks


Greetings,

Thank you for reaching out!

Urban was released for nopCommerce 4.4. You can find it under the My Downloads page.

Bugs
3 years ago

tunji69 wrote:
Hello, I am seeing an issue with this plugin and would love some help or ideas for a workaround if possible

I have Grouped Products and a drop down with the Parent Product and the various variants. When an item is selected, I want the variant picture to be displayed. This works perfectly.

However, when I hover over the picture for any of the variants, the picture zooms in but stays static and the cursor changes to a cross hair one. From then on if I select any other product the picture doesn’t  reset to that of the selected variant and stays zoomed in with the cross air cursor.

Only when I do a refresh would the functionality return, until I hover over the picture.

The zooming works fine on the parent product , however once you hover on it, the next product you select exhibits the static zoomed in picture behavior as described above.

Thnak you and here is my razor code below:


@await Component.InvokeAsync("Widget", new { widgetZone =  PublicWidgetZones.ProductDetailsEssentialTop, additionalData = Model })
@{
    IHtmlContent cloudZoom = null;
if ((settingService.GetSettingByKey("AvenueThemeSettings.ProductPageLayout",            "standard-gallery", storeId, true).Equals("standard-gallery")))
      {
cloudZoom = await Component.InvokeAsync("Widget", new { widgetZone =              "sevenspikes_cloud_zoom", additionalData = Model });
}
}
@if (cloudZoom != null && !String.IsNullOrEmpty(cloudZoom.ToHtmlString()))
{
<div class="prod-pict" >
   @cloudZoom
</div>

        // Go through the loop and put a div around each, hide all
        // Only when selected do you show.
        foreach (var variant in Model.AssociatedProducts)
        {
           IHtmlContent cloudZoomVar = null;

cloudZoomVar = await Component.InvokeAsync("Widget", new { widgetZone = "sevenspikes_cloud_zoom", additionalData = variant });

if (cloudZoomVar != null && !String.IsNullOrEmpty(cloudZoomVar.ToHtmlString()))
            {
<div class="prod-pict prodvarpic-@(variant.Id)" data-productid="@variant.Id" style="display:none">
                @cloudZoomVar
              </div>
            }
         }
}




Greetings,

Thank you for reaching out!

I can see that you have raised a ticket in our system. We will get back to you soon.

3 years ago

JamesM wrote:
Hello,

Is there an issue with the Use My Current Location in 4.2 and 4.3 versions? It is working fine with 4.1 version.
Issue is User Geolocation denied. You should enable it from browser permissions settings. Setting the marker to default position... this message comes without asking permission in the browser.

Thank you


Hi James,

Thank you for reaching out!

Please allow the use of Geolocation in your browser's permission settings.

3 years ago

danman wrote:
I freelance I'm currently working on a project and setting up a website. The webite uses the Element theme and when looking at the Stores section under Configuration, I deleted the Element Store leaving only our website store. This seemed logical.

But now some of the "Element" theme elements have disappeared as has our logo.

My question: is there anyway to re-add the nopelements "Element" store please? Is there a config anywhere  I can use to re-add it?

thanks


Hi,

Thank you for reaching out to us!

The logo is a per-store option, so if you delete a store, its settings are also deleted.

You cannot restore a setting another way than restoring a backup of your database.

Bellgate wrote:
I performed a fresh nopCommerce v4.30 install with the Nop Traction theme v4.30 and I am missing nine resource strings. They all start with sevenspikes.themes.traction.common and include .footerinformation, .skype, etc.

Did I do something wrong during the installation?


Hi,

Thank you for reaching out to us!

Resources are initialized on application start. If application restart does not restore the resources, this probably means that the resources are missing from the XML file containing the resources.

Please try to restart the application and let me know if they are still missing.

other skins?
3 years ago

embryo wrote:
Hello-

I was going to try to create a Jcarousel to use on our category pages, and tried switching to use the default-4-items skin according to this article:

https://www.nop-templates.com/Help/NopJCarousel/Version_2_8/lessons/Working_With_Nop_JCarousel.html

My screen only has the default-3-items value in a plain text box..it is not a drop down box with multiple options as shown in the article....but I changed the value to default-4-items and saved..no change on the page with the carousel. Then I looked in my installation folder and don't see any skins folder at all...I use the Uptown theme (NopUptownTheme_4.3.418.32616)...maybe it only includes 1 version of the default skin?


Hi,

Thank you for reaching out to us.

The skin is now used only if you wish to apply a specific CSS class to a given JCarousel, in case you wish to further modify the CSS of the carousel in question.

We now have an option Number of visible items in the JCarousel that allows you to select the number of product boxes through the administration of the JCarousel.