Close

Profile: Deni

Avatar

User posts

Bugs
8 years ago

RBfinelines wrote:
As I understand it, Nop generates its own Robots.txt (on the fly) in the Common Controller. So you can either manually setup the entire Robots.txt (good luck with that!). By telling the web.config file to ignore the current Robots.txt path. Or hope plugin creators have a way to tell Nop to add exclusions, without making core changes.

...same holds true for the sitemap. -- Really annoying that Nopcommerce doesn't just do things the way everyone else has them done. It wouldn't be hard to code sitemap [as a XML] and Robots [as a TXT] file generation based on settings. After all, it's what all webpage creation software do out of the box.


Hi, 

Yes, it is really annoying and it is a must to have an extendibility point from which every plugin should be able to modify the Robots.txt file.

I think this should be suggested to the nopCommerce team.


Thanks for your feedback !

Bugs
8 years ago

ernest wrote:
How to manually add the route to the robots.txt file ?


Hi, 

Please read carefully this article.

8 years ago

rogerhaugland99 wrote:
Hi,

The add to cart on mobile still shows the default green bar. Shouldn't it have a better styling also on mobile?  Tested on iphone 6, safari today on your demosite

Regards

Roger


Hi, 

We disable our Ajax Cart on mobile devices, because it is not good user experience to see popups on mobile.

So you are seeing the default nopCommerce added to cart notification.

We have created a hidden setting if anyone wants to enable the Ajax Cart on mobile.

Just go to "All Setting", find this one: "NopAjaxCartSettings.EnableOnMobileDevices" and make its value to be "True".


I hope this helped !

Hi, 

We have been reported this issue and before.

Please check this post.

Bugs
8 years ago

RBfinelines wrote:
Nop 3.5
NopTemplates: 3.5

Seems there's a issue when dealing with the Robots.txt, where the URL: [domain]/ajaxfiltersprosearch/search

Is searched which, for us, leads to an error. While the error is likely on our part. I feel that the Robots.txt generated by Nopcommerce should be amended by plugins such as the Ajax Filter Pro to exclude URLs.


Hi, 

Yes, we will think about modifying the Robots.txt from our plugins.

At the moment you can manually add the route to the robots.txt file.

Thanks for your feedback !

8 years ago

n8trojan wrote:
How does one change some of the behaviors then?  I updated the values in the resource files, but it kept the default values "Our shops" and the browser may ask for permission to use location for instance.  I did recycle the app pool, but the plugin didn't update.  Also, how does one change the SEO URL?  Otherwise, awesome plugin!


Hi, 

You can read here how to modify resource in nopCommerce.

For the SEO we have replied you here.

8 years ago

n8trojan wrote:
I would like better control over the SEO URL.  Would it be possible to allow admins to set the SEO?  I just set it up today, so maybe I'll have more, but so far I really like this plugin!


Hi, 

Each shop has its own SEO administration - it can be modified by the admin as any other entity in the store.

Unfortunately the URL "AllShops" can not be changed. You can try adding another URL as a canonical URL to "AllShops". You can also use 301 redirect.


I hope this helped !

8 years ago

n8trojan wrote:
This process works well for adding the anywhere map... but is there a way to add the whole thing to a page (the search and list of shops)?  Or did I miss something when I added it?  I added it to a topic and only the map shows up.


Hi, 

In the AnywhereMap the shops list is hidden via CSS.

If you open the view AnywhereMap.cshtml you will find this row:

<ul class="shops-list" style="display: none;">


Just remove the style attribute and you will see the shops list.


I hope this helped !

Bugs
8 years ago

ipappous wrote:

Just upgraded a shop from 3.60 to 3.70 it seems there is a problem with dynamicprice
on ..\Themes\Tiffany\Views\Product\_ProductAttributes.cshtml

line 206
     var dynamicPriceUpdate = EngineContext.Current.Resolve<CatalogSettings>().EnableDynamicPriceUpdate;
    var dynamicPriceUpdateAjax = EngineContext.Current.Resolve<CatalogSettings>().DynamicPriceUpdateAjax;

it says that these methods no longer supported by nopcommerce catalogSettings!
EnableDynamicPriceUpdate and DynamicPriceUpdateAjax

just to make it work I have changed those lines to
    var dynamicPriceUpdate = EngineContext.Current.Resolve<CatalogSettings>().CacheProductPrices;
    var dynamicPriceUpdateAjax = EngineContext.Current.Resolve<CatalogSettings>().AjaxProcessAttributeChange;

    probably not correct

    please advise what to do.

    regs,

    mk



Hi, 

As I am looking into the code, we do not override the _ProductAttributes.cshtml view in the Tiffany theme. Maybe you have added it manually.

As you can see the default nopCommerce view, this is the needed code:

var dynamicPriceUpdate = EngineContext.Current.Resolve<CatalogSettings>().AjaxProcessAttributeChange;


I hope this helped !

8 years ago

porcelanosa wrote:
there is no option to activate it?

http://postimg.org/image/dm0xknijx/


Hi, 

The "Active" state is evaluated by the conditions of the slider.

You have to modify the slider conditions in order to show it.

I hope this helped !