Close

Profile: Deni

Avatar

User posts

Hi, 

We have been reported this issue and before.

Please check this post.

Bugs
9 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 !

9 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.

9 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 !

9 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
9 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 !

9 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 !

9 years ago

jakubz wrote:
Hi Guys! 
today I start thinking about my reminder rule for a "completed order". 

1. I want send 1 email to client 1 month ago after status are changed to "completed". I want to send it always when customer buy something. When he is bought second, third time I want send this message . 

Now i have:
Reminder Rule: Completed order
Number of Messages TO Send Per Customer: 1 
Met Date later 29 days
Met Date Earlier 28 days
Interval 1 minutes. 

I thinking about "number of messages". If customr order in my shop 10 times... is he receive 10 messages from me? 1 to order... or only 1? 

I have little problem with to the understand that :/ i read documentation and examples, but still don't know is this settings are good :/

2. Is this are sending to a guest customers too? or only registered?


Hi, 

1. The plugin will send one message per order - if the customer made 10 orders he will get 10 emails. The emails will not be bundled.

2. The plugin does not send messages to guest customers.

3. Your settings are fine - the customer will receive one message per completed order after 29 days.


I hope this helped !

9 years ago

nonam wrote:
Hello:

Is there a way to add an additional "Sticky Category" to the Mega Menu? In the settings of the Mega Menu, I know that you can check the option of adding a category as a sticky one but I would like to have 2 sticky categories to my Menu.

Thanks for your help!


Hi, 

To do this you have to modify the MegaMenu.cshtml file.

Right after the code for the sticky category, which is this:

if (Model.StickyCategory != null)
    {
        <li class="sticky-category">
            <a href="@Url.RouteUrl("Category", new { SeName = Model.StickyCategory.SeName })" title="@Model.StickyCategory.Name">@Model.StickyCategory.Name</a>
        </li>
    }

Place your code for your category, following the same mark-up structure.

I hope this helped !

9 years ago

Helger wrote:
The error message is:


There was an error parsing the query. [ Token line number = 1,Token line offset = 1,Token in error = IF ]

Any ideas?


Hi, 

As we have replied to your ticket, this error could be caused by old SQL server or if it is Compact Edition.