nopCommerce 3.00 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
10 years ago
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
10 years ago
Thank you Andrei
10 years ago
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';}">
10 years ago
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.
10 years ago
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
10 years ago
WHICH DOWNLOAD SHOULD i CHOOSE THE ONE WITH THE SOURCE CODE OR WITHOUT THE SOURCE CODE? wHAT IS THE DIFFERENCE?

THANK YOU
10 years ago
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
10 years ago
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?
10 years ago
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
10 years ago
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.