Close

Profile: Boyko

Avatar

User posts

10 years ago

ellerlor wrote:
It is the same in version 3.2 that I have installed on my site; this is the error:


This is because you are using an older version of 3.2. Which version of 3.2 are you using?
After version 3.2.xxx.9558 you should not longer see such errors.

Thanks

Bugs
10 years ago

MattyLB wrote:
Please disregard that I mentioned addthis or mobile browsers, it really has nothing to do with them yet they pointed me to how bad the issue is. You'll see exactly what I mean if you try the following...

1) go to Facebook and insert this NC-based product link in a new post: http://iowish.com/kiss-me-im-iowish-t-shirt-bella-canvas (it takes a while to load page data, then it gives me 2 image choices of completely different products)
2) as a cross reference I'm testing a second site on woocommerce (WordPress) and it works flawlessly when I insert this link in a Facebook post: http://dublindees.com/shop/lets-get-ready-to-stumble-t-shirt/ (facebook loads the correct image immediately)

Doesn't matter what theme, device, computer or browser. Images from my nopcommerce site are not very social network friendly and I've noticed this to varying degrees since the admin panel changed the way site logos are applied to our theme. Not blaming the panel, but did anything else change as far as what images can be copied from the page when that was implemented?


Hi Matt,

That is interesting. But I don't see anything special in the other web site images. Both are simple img html tags. I really don't know how facebook decides which images to use when sharing a link. Probably they have some sort of algorithm for choosing the images.
Here is an interesting discussion on this matter.

Thanks

10 years ago

jaxuk wrote:
Added the zone to: AdditionalSupportedWidgetZones.xml seems to work :)


Yes, that will work.
Actually you can also use SupportedWidgetZones.xml file.
The idea of the SupportedWidgetZones.xml file is to contain all the common widget zones, while the AdditionalSupportedWidgetZones.xml contains all the theme specific widget zones.
This way each theme can have additional widget zones.

Thanks

10 years ago

burkay wrote:
Hi boyko,

yes, we are using nopCommerce default mobile theme, we opened this web site "http://demos.nop-templates.com/monitors" from mobil phone however your ajax filter plugin was not shown.


Hi burkay,

Yes, the mobile theme in nopCommerce doesn't work with our UI plugins as their styling and integration is specific to the Desktop themes.
The trends now are to use a responsive desktop theme rather than having two separate themes - one for desktop and one for mobile.
Please note that most of our nopCommerce themes are responsive, so that they look perfect on all kind of devices i.e mobile, tablets and desktop.

Thanks

10 years ago

Hi jeffahart,

The "store agnostic" issue is fixed now. You can download the plugin again from our web site and update it.

Many thanks for reporting this!

10 years ago

imprintableswarehouse wrote:
Awesome! Thank you for the update.


Hi,

You can now update the Cutomer Reminders plugin as described here. We also recommend setting the scheduled task interval to be 600 seconds rather than 60 seconds.

Thanks

10 years ago

jkeeler wrote:
I think we found the issue, however I still would like to know how easily one can modify the links for the mega menu to allow for more than the one custom topic page "MegaMenuTopic" to the top nav.

Also, we were attempting to move the search box from the header to the sidebar so we cut out the below code and pasted it into our ColumnsTwo and ColumnsTwoHome files but the plugin does not seem to work as it did in the header.  The plugin should attempt to filter your search based on characters (currently set to 3) but this does not do it when we moved the code. Any ideas?


       <div class="search-box">
        @Html.Action("SearchBox", "Catalog")
       </div>


If you want to move this search topic to a different forum please do. Thanks.


HI jkeeler,

Here is an example for adding several topics in the Mega Menu view.
The topic could be edited from Content Management -> Topics->topicSystemName

    
MvcHtmlString topic1 = Html.Action("TopicBlock", "MegaMenu", new { systemName = "topic1" });
    MvcHtmlString topic2 = Html.Action("TopicBlock", "MegaMenu", new { systemName = "topic2" });

    if (Model.Settings.EnableMegaMenuTopic && !MvcHtmlString.IsNullOrEmpty(topic1))
    {
        <li>
            @topic1
        </li>
    }
    
    if (Model.Settings.EnableMegaMenuTopic && !MvcHtmlString.IsNullOrEmpty(topic2))
    {
        <li>
            @topic2
        </li>
    }


Moving the search box should not be a problem as long as you have only one search box on a single page as the javascript uses id to find the search element. Do you get any javascript errors?

Thanks

10 years ago

cdesoftware wrote:
The parameters dictionary contains a null entry for parameter 'productPageId' of non-nullable type 'System.Int32' for method 'System.Web.Mvc.ActionResult RetrieveProductRibbons(Int32, Int32[])' in 'SevenSpikes.Nop.Plugins.ProductRibbons.Controllers.ProductRibbonsController'. An optional parameter must be a reference type, a nullable type, or be declared as an optional parameter. Parameter name: parameters

Any idea where I should look to correct this?

Lance


HI Lance,

In the markup of the Ribbons there is a data attribute i.e data-retrieveproductribbonsurl attribute. This attribute is used by the javascript of the plugin to get the ribbons but it expects some parameters to be passed.
For some reason there are search engines that are trying to make a request to this url of course without the required parameters and that is why you get this error in the log. It is no something that you have to worry about i.e the plugin is not functioning etc. This is corrected in nopCommerce 3.2 as explained here. If you can update the plugin to 3.2 then you will get the fix.

Thanks

10 years ago

summitridgegear wrote:
I wanted to add more description to this.

On the detail page the image size is set for 300. I have a product JPG that is 600x600. This zooms fine when you roll the mouse over the image. I have another that is 500x500. Also a JPG. This does not zoom. All images are stored into the database.


HI summitridgegear,

Can you send us a link to your web site so that we can take a look and advice?
You can send it to our support mail if you don't want to share it here.

Thanks

10 years ago

Hi Niels,

There are settings in the administration of the plugin for each filter to be closed by default i.e price range filter, specification filters, attribute filters etc. This is in version 3.1 and higher.

Thanks