nopCommerce 3.00 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 10 años
eadameg wrote:
Question: I see a message template (example OrderPlaced.CustomerNotification)can be copied/clonned  several times and a store can be mapped to each one of those copies. Will all the copies be mailed when time is due (example the order was placed)? Or what will be the logic applied in this case?

If you have several templates for a store, then the first loaded one will be used. Please see GetMessageTemplateByName method of MessageTemplateService
Hace 10 años
Thank you Andrei
Hace 10 años
hello sir i need add value in textbox NEWSLETTER like this  <input type="text" autocomplete="off" value="Enter your email address" name="q" onfocus="if(this.value=='Enter your email address')this.value=''" onblur="if(this.value=='') {this.value = 'Enter your email address';}">
Hace 10 años
tines wrote:
hello sir i need add value in textbox NEWSLETTER like this  <input type="text" autocomplete="off" value="Enter your email address" name="q" onfocus="if(this.value=='Enter your email address')this.value=''" onblur="if(this.value=='') {this.value = 'Enter your email address';}">

This is not the place to place such a specific question. Please create a new topic here and explain your question in more details.
Hace 10 años
Hello,

in release 3.0 are there Rich snippets - Reviews ?

http://support.google.com/webmasters/bin/answer.py?hl=en&answer=146645

is there a product in the demo store with reviews?

thanks
Hace 10 años
WHICH DOWNLOAD SHOULD i CHOOSE THE ONE WITH THE SOURCE CODE OR WITHOUT THE SOURCE CODE? wHAT IS THE DIFFERENCE?

THANK YOU
Hace 10 años
joef wrote:
WHICH DOWNLOAD SHOULD i CHOOSE THE ONE WITH THE SOURCE CODE OR WITHOUT THE SOURCE CODE? wHAT IS THE DIFFERENCE?

THANK YOU


You should use with the source code if you want to customize it or want to add/modify something in existing features.

If you are non tech and not a programmer, use the one without source code. It is good enough.

Cheers
Hace 10 años
There are a few stores:
http://site.com  
http://store1.site.com
http://store2.site.com
http://store3.site.com
I can combine shopping cart of all the stores?
Hace 10 años
Hi,

The task which keeps website alive creates so many guest accounts:
Could you update source code of "KeepAliveTask" to following So that it wont create guest account but keeps website live.

public partial class KeepAliveTask : ITask
    {
        private readonly IStoreContext _storeContext;
        private readonly CookieContainer _coockieJar;
        private readonly string _url;

        public KeepAliveTask(IStoreContext storeContext)
        {
            this._storeContext = storeContext;
            this._coockieJar = new CookieContainer();
            this._url = _storeContext.CurrentStore.Url + "keepalive";          
        }

        public void Execute()
        {            
            var webrequest = (HttpWebRequest)WebRequest.Create(_url);
            webrequest.CookieContainer = _coockieJar;
            webrequest.GetResponse();
        }
    }


Regards
Dipak
Hace 10 años
Ecomp wrote:
There are a few stores:
http://site.com  
http://store1.site.com
http://store2.site.com
http://store3.site.com
I can combine shopping cart of all the stores?

https://www.nopcommerce.com/boards/t/23835/cart-transfer-from-one-store-to-another-in-3x-multistore.aspx
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.