[quote name=‘miracles’]Why don’t you use third party script like comm100.com, they have lots of features[/quote]
Yeah, third party live chat’s are alot nicer, even some free ones, such as LiveZilla, which we exclusively use now, and we love it, much nicer than websitealive or others we’ve tested, and its free.
[quote name=‘badbojo’]strange but after installing all emails going with license number. Looks like this:
“my@email.comCS-CART-XXXX-XXXX-XXXX-XXXX”
after change emails via admin there was still one wrong record in db table cscart_form_options[/QUOTE]
I too got this, also after placing a test order the contents of the order on the dashboard show as “CS-Cart Professional Edition x 1, Installation service x 1”.
The product in the order was one I just added and was called “test product 1234” so not sure whats going on there.
Other than a few bugs here and there I’m overall very impressed with this new version
[quote name=‘peku’]where you can view client email for proctuct is back in stock?
I test labs.cs-cart[/QUOTE]
There is a Subscribers tab on the product details page.
[url]http://i53.tinypic.com/24q1ki8.png[/url]
[quote name=‘badbojo’]live help addon - no button to save new operator.
[url]http://gyazo.com/4630f112d5f3ce09e11ff0df0cb21bcd.png[/url]
maybe you can give url for dowload live help 2.2.1 version?
thanks[/QUOTE]
The live help add-on has been added to the release package. Please try it.
Releases have been updated
+ Live help add-on was included to the package (available only in Professional edition)
+ Twigmo add-on was either included.
[quote name=‘wartornskull’]I too got this, also after placing a test order the contents of the order on the dashboard show as “CS-Cart Professional Edition x 1, Installation service x 1”.
The product in the order was one I just added and was called “test product 1234” so not sure whats going on there.
Other than a few bugs here and there I’m overall very impressed with this new version :)[/QUOTE]
Fixed.
Also the following bugs were fixed:
[url]http://forum.cs-cart.com/vbugs.php?do=view&vbug_id=2558[/url]
[url]http://forum.cs-cart.com/vbugs.php?do=view&vbug_id=2554[/url]
[quote name=‘imac’]Releases have been updated
+ Live help add-on was included to the package (available only in Professional edition)
+ Twigmo add-on was either included.
Fixed.
Also the following bugs were fixed:
[url]http://forum.cs-cart.com/vbugs.php?do=view&vbug_id=2558[/url]
[url]http://forum.cs-cart.com/vbugs.php?do=view&vbug_id=2554[/url][/QUOTE]
Excellent, testing now
Also noticed that the .htaccess file’s rewrite base is wrong.
I thought by default it should be /
However its: RewriteBase /svn/trunk
Also a comment line missing.
Incorrect .htaccess:
```php
DirectoryIndex index.html index.php
RewriteEngine on
Some hostings require RewriteBase to be uncommented
Example:
Your store url is http://www.yourcompany.com/store/cart
So “RewriteBase” should be:
RewriteBase /svn/trunk
RewriteCond %{REQUEST_FILENAME} !.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
```
Correct .htaccess:
```php
DirectoryIndex index.html index.php
RewriteEngine on
Some hostings require RewriteBase to be uncommented
Example:
Your store url is http://www.yourcompany.com/store/cart
So “RewriteBase” should be:
RewriteBase /store/cart
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
```
[B]EDIT:[/B]
Just noticed another small issue, when you go to settings -> dynamic html, the page title shows "_DHTML" in stead of "Dynamic Html". Again only something very small but thought I'd give you a heads up :)
[B]EDIT2:[/B]
Ok found another bug, when you upload a product image (large, so that it auto generates the thumb) the thumbs are generated however, they don't show on the products overview page in admin (i.e. admin.php?dispatch=products.manage.last_view).
Hi,
Can we see a list of features planned for the next release. It gives me an idea for planning and when to expect the next batch of feature enhancements.
Estimated delivery/completion time would be appreciated.
Thank you
[quote name=‘JGift’]Hi,
Can we see a list of features planned for the next release. It gives me an idea for planning and when to expect the next batch of feature enhancements.
Estimated delivery/completion time would be appreciated.
Thank you[/QUOTE]
Why you want to highlight the suspense ?
Is there an option for sub-category thumbnails in this version???
[quote name=‘kogi’]Is there an option for sub-category thumbnails in this version???[/quote]
Care to be more specific, what do you mean? You can fully control any view too, so making products w/ thumbnails show up is surely possible…??
I’m not too sure what you mean though? We have multiple levels of categories and their subs, and their subs, and their subs, all with images, working fine?
[url]http://forum.cs-cart.com/showthread.php?t=20545[/url]
The list of sub-categories show as thumbnails instead of a text link list
[quote name=‘kogi’][URL]http://forum.cs-cart.com/showthread.php?t=20545[/URL]
The list of sub-categories show as thumbnails instead of a text link list[/quote]
Interesting, I haven’t used a stock cs-cart skin in so long, I’m not really sure, but really should be possible, I find it odd that it wouldn’t be, I mean its just another view of products within a category. I’ll have to look into this sometime on the new 2.2.1 beta.
Actually, I just pulled up my CS-Cart 2.2.1-beta install, with the demo data included, and it has thumbnails on the sub categories? Exactly like I thought it would! I think you are mistaken!
[quote name=‘kogi’][URL]http://forum.cs-cart.com/showthread.php?t=20545[/URL]
The list of sub-categories show as thumbnails instead of a text link list[/quote]
And what… you say they are thumbnails, and then you ask if thumbnails are possible? You are contradicting… yes there is thumbnail support… and it’s what you wanted, so what are you asking?
[quote name=‘kogi’]Is there an option for sub-category thumbnails in this version???[/QUOTE]
Dear kogi,
If you mean the ability to display subcategories thumbnails instead of text links, then no, we did not change anything. And if you want to have such a feature, please refer to our Knowledge Base [url]http://kb2.cs-cart.ru/display-subcategories-multicolumns[/url] .
[quote name=‘wartornskull’]Also noticed that the .htaccess file’s rewrite base is wrong.
I thought by default it should be /
However its: RewriteBase /svn/trunk
Also a comment line missing.
Incorrect .htaccess:
```php
DirectoryIndex index.html index.php
RewriteEngine on
Some hostings require RewriteBase to be uncommented
Example:
Your store url is http://www.yourcompany.com/store/cart
So “RewriteBase” should be:
RewriteBase /svn/trunk
RewriteCond %{REQUEST_FILENAME} !.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
```
Correct .htaccess:
```php
DirectoryIndex index.html index.php
RewriteEngine on
Some hostings require RewriteBase to be uncommented
Example:
Your store url is http://www.yourcompany.com/store/cart
So “RewriteBase” should be:
RewriteBase /store/cart
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]
```
[B]EDIT:[/B]
Just noticed another small issue, when you go to settings -> dynamic html, the page title shows "_DHTML" in stead of "Dynamic Html". Again only something very small but thought I'd give you a heads up :)
[B]EDIT2:[/B]
Ok found another bug, when you upload a product image (large, so that it auto generates the thumb) the thumbs are generated however, they don't show on the products overview page in admin (i.e. admin.php?dispatch=products.manage.last_view).[/QUOTE]
Dear wartornskull,
Thank you for your help.
These three issues have been fixed. Release packages were updated.
Excellent, re-downloading now to continue testing
If you have Janrain enabled, you click sign in and then click cancel on the Janrain popup you are taken to a url:
http://www.
This was tested in IE 8. The weird part is that in FF and Chrome that pieces comes up as a modal but in when you choose social login you go to a new page. Works fine in both FF and Chrome btw
If I install 2.2.1 beta on a site that is not live yet but will go live in a couple of months, can I upgrade via the tool to the gold version when it’s released or is it a complete re-install?
[quote name=‘whiplash13’]If I install 2.2.1 beta on a site that is not live yet but will go live in a couple of months, can I upgrade via the tool to the gold version when it’s released or is it a complete re-install?[/quote]
That would be a reinstall, as this is beta, and you couldn’t really upgrade to the same version, plus they’ve been modifying the released 2.2.1 source set, as they fix things, so no.