Close

Profile: Deni

Avatar

User posts

Bugs
8 years ago

lanctot wrote:
Hi,
We are experiencing some issue with the instant search plugins.
The search works fine with everything except when you type a partial word that doesnt contain the begginning letter(s).
Here an example: the product name is FIA014151, if I type FIA014 it will find this product, but if I type 014151 it doesnt give me any result.

Our store link: http://b2b.rlanctot.com

Contact me by email for access to the site so you can test it.

Thanks

-David Barrette
Lanctot


Hi, 

I suggest you to enable the Full Text Search. I think it will give you the possibility to search by part of a word. You can enable it by going to the administration > Configuration > Settings > General and Miscellaneous Settings > Full-Text settings.


I hope this helped !

8 years ago

JackNopper wrote:
I just upgraded successfully from 3.50 to 3.60. Now, when I try to upgrade from 3.60 to 3.70 I receive the following error after restarting the website. I executed the nopCommerce upgrade script and the ShopAll script successfully, copied the Plugins and Themes folders and restored the old AppData settings files (I will post the entire stack if someone wants to see it). Looking though the nopCommerce upgrade script, I noticed that it drops two columns named "HasDiscountsApplied":

Invalid column name 'HasDiscountsApplied'.

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. 

Exception Details: System.Data.SqlClient.SqlException: Invalid column name 'HasDiscountsApplied'.

Source Error: 

Line 31:             else
Line 32:             {
Line 33:                 @Html.Action("TopMenu", "Catalog")
Line 34:             }
Line 35:         </div>

Source File: c:\HostingSpaces\admin1\shop.milwaukeemap.com\wwwroot\Themes\ShopAll\Views\Shared\_Root.cshtml    Line: 33 



Hi, 

As I have replied to your ticket:

It sounds like you have done everything correctly.

Yes, the upgrade script drops the "HasDiscountsApplied" column, but we have never had a problem with that.

I think you are missing something, but I am not sure what.

Please take a look once more in the upgrade process and ensure that everything was done:

1. Back-up your database.
2. Back-up your InstalledPlugins.txt and Settings.txt files.
3. For each mid-version, run the upgrade scripts if has any - first nopCommerce`s, then our.
4. Download the latest nopCommerce version and place it in the folder you want.
5. Place the InstalledPlugins.txt and Settings.txt files in the App_Data folder.
6. Download our products and place them in the corresponding folders.
7. Add a blank space to the end of the Global.asax file to trigger full site restart.
8. Run nopCommerce.


If anyone have seen this, they can share their experience too !

8 years ago

Tebox wrote:
I have a small problem,

Products with product attributs is not updating the price in QV and it is working fine on the product page.

Example
i have a bottle of syrup in 250ml and 500ml, default i is 250ml, showing the price of 39 DKK but nothing happens to the price when selecting the 500ml. the price is still 39. But if i add it to the cart, the prise is right! 69 DKK in the cart.


Hi, 

Yes, there was a small issue in the QuickView.min.js file. Please update the QuickView plugin and this file in particular. Then clear your browser cache and your problem will be gone.

Let us know if this is your case !

Multi Store
8 years ago

Hepil wrote:
Hi

I've a problem to solve please.



I've Nop 3.50 with the right Alfresco theme and 2 stores
The first one is www.store-us.net
The second one is www.papyr-us.net

When I change settings in : "Manufacturer Menu Settings"
in "Nop Mega Menu Settings " tab
for the first one, It changes the second as well
Even I change the second one, the first changes too.

I precise "Multi-store configuration for " is set rightly each time with the right store.

Could you have any idea please ?

Luc


Hi, 

As I suggested you, please submit a ticket with the credentials to your site so we can check where is your problem.

jkeeler wrote:
Tried this and still nothing. Any other ideas?


Hi, 

I can not tell you for sure what is your problem because I should see your website first.
You can submit a ticket and provide a link to your site so we can check what is the issue.

Hi jkeeler,

This looks to me like there is a JavaScript error. Please make sure you are using the latest version of all files of the plugin and clear your browser`s cache so that the modified files are used.

8 years ago

bulutkartal wrote:
Hi,
Facebook page doesn't show the app tab on mobile and ipad views. Any idea?


Hi, 

As you can see here, page tabs are not supported/shown on mobile devices. This is restriction made by Facebook.
We as developers are not happy too, but they do not plan to support this feature.

chrisADK wrote:
Hi,
Excellent that worked thanks. Is there anyway to make this work with a multi-store site? So that the link is different on each site? Basically need to have a link that points to the other store for both sites.
Like maybe can I put the link in the Motion themes custom CSS per store maybe? Tried but could not figure out the right syntax to use or it does not work.

Thanks Chris


Hi, 

If you want to make the two sites to show links to each other, then your code should look like this:

if (Nop.Core.Infrastructure.EngineContext.Current.Resolve<Nop.Core.IStoreContext>().CurrentStore.Id == 1)
{
  <li>
    <a href="http://www.store2.com" title="Store 2" target="_blank">Store 2</a>
  </li>
}
else
{
  <li>
    <a href="http://www.store1.com" title="Store 1" target="_blank">Store 1</a>
  </li>
}


I hope this helped !

chrisADK wrote:
Hi,
I need to add a link to another store on the right hand side of the the mega menu. Don't really understand the synthax for cshtml so not sure where in the MegaMenu.cshtml file I should put this.
This is the format I need the link to be.
<a href="http://www.store1.com" target="_blank">Store1</a>

Any help would be greatly appreciated.

Thanks Chris


Hi, 

For example find this code:
if (Model.Settings.IncludeForumLink)
{
  <li>
    <a href="@Url.RouteUrl("Boards")" title="@T("Forum.Forums")">@T("Forum.Forums")</a>
  </li>
}


and right after it add your code. But it should follow this structure:

<li>
  <a href="http://www.store1.com" title="Store1" target="_blank">Store1</a>
</li>


I hope this helped !

Bugs
8 years ago

berecan wrote:

Yes, the product remains in the search costs, even when "Call for price" enabled and the price is not visible.


Hi, 

The price is a required field when you edit the product from the administration - it must be a real number.
I have also tested the default nopCommerce filter functionality and the product with "Call for price" is visible after filtration. Its price is taken, although it is not shown to the users.
So, I think this is expected behaviour.