Hi Domenico,
I think in your case will be easier just to include the store id to the locale resource name, so that you can have different locales for each store. The disadvantage for this will be that there will be no default setting and you will have to add these locale resources for every store. But I think that this was what you needed.
Soin order to achieve this just open the Themes/Motion/Views/Common/Footer.cshtml file and edit it as shown below:
<ul class="footer-menu">
<li class="phone">@T("SevenSpikes.Themes.Motion.Common.Phone" + storeId)</li>
<li class="mobile">@T("SevenSpikes.Themes.Motion.Common.Mobile" + storeId)</li>
<li class="email">@T("SevenSpikes.Themes.Motion.Common.EmailName" + storeId)@T("SevenSpikes.Themes.Motion.Common.EmailAt" + storeId)@T("SevenSpikes.Themes.Motion.Common.EmailDomain" + storeId)</li>
<li class="skype">@T("SevenSpikes.Themes.Motion.Common.Skype" + storeId)</li>
</ul>
Hi Iva,
This issue had been fixed and uploaded on our site. If you are running an older 3.80 version of the plugin, you will need to download it again from your My Downloads section and replace the plugin folder in your nopCommerce website with the newly downloaded.
Please let me know if the issue still exists after the update.
Hi Domenico,
You are right that locale resources cannot be used in a multi store scenario while settings cannot be used in a multi language scenario. So that is why we have decided to use locale resources. Unfortunately, nopCommerce misses locale resources per store. So if you can let me know what is the case with your setup I can either let you know how to transform the locale resources into settings or can think of another solution depending on your configuration.
Hope that helps.
Hi Manon,
Unfortunately, there is no way to use some kind of tokens in the topic pages as they are plain HTML. But you can use the "/" symbol for a store URL. So instead of http://www.yourstore.com/standard-plan you can just write /standard-plan and it should work. But what is more interesting is that you need to change the links after an upgrade - how the links are changed after an upgrade. They seem to have nothing in common.
Hope that helps.
Hi there,
Unfortunately, these icons are used for the design of the theme and there is no way to store them in the database. What is more, it is not even close to recommended, because it will take way too long to load them and display them when a page is opened. This is the same with every theme. When a new version is released, the new theme should be used.
One way I see you can avoid copying these icons every time, is to add them on your root folder of your domain for example and then in the "Custom Head Styles", you should add the css for referencing them via url. This will work in case that when upgrading your store, you do now delete the entire root folder with all files.
The other way is to convert the icons to base 64 format and add the css for using them in the "Custom Head Styles" textbox of the theme. Thus on each upgrade the custom head styles content will remain and the icons too.
Hope that helps.