|

CS-Cart 3.0.5 Released
Posted 25 January 2013 - 05:19 PM #41
Retail Site v. 4.3.3
Posted 25 January 2013 - 06:16 PM #42
I've read every post and I'm curious if anybody knows the estimated date of the official release of 3.1.x?
according to the CS-Cart blog the release date is not confirmed yet see here: http://blog.cs-cart....-cs-cart-3-1-1/
The new admin panel (along with numerous other new features to be announced later) will be included in CS-Cart 3.1.1. Its release date it not yet confirmed, so stay tuned to CS-Cart news on Twitter and Facebook.
John
My Webshop: Alpha Spas
Posted 25 January 2013 - 06:18 PM #43
Posted 29 January 2013 - 07:48 AM #44
POPULAR
Hello,Remember that feature that disappeared? Suppliers. Where is it?!
UserVoice = "Under development" for Ultimate on November 26th 2012. Looks like everything is being ditched for a pointless new admin skin in 3.1, with no real core functionality updates.
I would like to re-assure you that the Suppliers functionality is really under development, it is planned to be included in CS-Cart 3.1.1.
Konstantin Molchanov,
CS-Cart Architect Team
Suggest and vote for new features | Report a bug
Posted 31 January 2013 - 06:20 AM #45
Thanks for replying kmolchanov. I have two key questions
1) Can CS CART possibly tell us which versions are being released. How many more minor releases before v3.1 is released?
2) Is User Voice regularly updated by CS CART - it seems the same features are sitting in "planned" status - I been wathcing User Voice for over a year now and only seen 1 or two items move or change stattus.
Example - mobile front end - the strategy employed by CS CART was to use Twigmo - therefore this feature should be closed and the votes given back to the user community to vote on other features. Like me, my 10 votes have and are locked into 3 features since 2010 and I want to give input and votes to other features.
I think if you re-organise the user voice or clean it up to reflect what is live - then the community can re-vote on features and you will see what your customers really want.
Just my 2 cents....
Posted 01 February 2013 - 01:05 AM #46
Agree, Not sure why they insist on constantly updating the look of the Backend. Especially if things looked and worked well in the old version. They keep ignoring items that need major updates (i.e. Configurator, product options, buy together, promotions, etc)
Cosmetic changes to the Backend are a waste of time in my opinion. Store owners want functionality, not wysbang cosmetics.
I completely agree. Looks on the backend is only secondary to the functionality of the store! What really really bothers me is the lack of sophistication of the Promotions/Coupons. Promotions and coupons are what drives retail businesses! What they have now is barely functional for small-medium stores.
Posted 16 February 2013 - 07:46 AM #47
Posted 16 February 2013 - 08:13 AM #48
I don't really agree cs-cart is a ship moving in no direction. As far as I see it:
Cs-cart 3.11 is getting an API. This is a vital feature and in my opinion the most necessary feature ever - except for the add-to-cart button

Without an API it cs-cart will not survive in the current climate. Having an api will solve 100's of problems for customers and will add 100's of features, because it will be easy to implement with other apps like crm, helpdesk, purchase ordering, accounting, and so on.
I also like that all versions are now always cs-cart ultimate and we will simply be able to add storefronts. This makes things clear... no more free, pro, multithis and multithat. Also it will make it much easier to make add-ons (not talking about licensing here though) and skins, since all versions will basically be the same.
I hope cs-cart will do the following after 3.11 is released:
First, they should make the 3.1 branch a super stable, fast, bugfree version without adding new features at all. Fix ALL the little bugs and annoyances. Simply make sure each and every function works. Most don't take more than 10 minutes to fix but have been in cs-cart for ages.
This will mean new users won't be confused and annoyed when they try cs-cart. This will mean sales, and sales means money. To get new users, cs-cart will probably also have to add at least 3 or 4 more skins.
Then, and only then, cs-cart should focus on adding new features, starting with the most wanted: editing of invoice, amazon integration and so on. (sidenote: I hope they will ignore the facebook shop request, since time has proven these absolutely do not work)
Just my 2 cents.
When life hands you lemons, bring on the Tequila baby!
Posted 16 February 2013 - 09:14 AM #49
Posted 16 February 2013 - 12:32 PM #50
yourstore.com?version
Posted 16 February 2013 - 12:34 PM #51

Posted 16 February 2013 - 04:04 PM #52
The API could be done as an addon (for purchase for those who want/need it) and could be done on top of both V2 and V3 versions. I've had an API into cs-cart for 3 years (orders, customers and catalog). What it requires is a stable core environment that it can sit on top of. The moving target paradigm is appropriate here.
I don't think multivendor will be included in the mix (but it could be). This would mean there are several system entities that need to be accounted for in many core requests. I.e. company_id, supplier_id, vendor_id (right now, these are all overloaded). This will make queries much slower ad inserts slower still. The load on mySQL will go up significantly. But it can be done. However, it will break many existing addons and integrations. You could then have an Ultimate config with 5 storefronts, 2 of which are separate MVE sites that share customers only, and the other 3 having a mix of inventoried products and drop-shipped products (some shared, some not). Note that supplier_id could be overloaded to account for multiple warehouse shipping origins too.
EZ Merchant Solutions: Custom (USA based) B2B Development, Consulting, Development and Special Projects (get a quote here).
Commercial addons, payment methods and modifications to meet your business and operations needs.
Posted 16 February 2013 - 04:11 PM #53
/skins/basic/admin/bottom.tplFind:
<div class="logo-bottom float-left" title="{$smarty.const.PRODUCT_NAME} {if $smarty.const.PRODUCT_TYPE == "COMMUNITY"}Community Edition{/if}{if $smarty.const.PRODUCT_TYPE == "PROFESSIONAL"}Professional Edition{/if}{if $smarty.const.PRODUCT_TYPE == "MULTIVENDOR"}Multi-Vendor Edition{/if}{if $smarty.const.PRODUCT_TYPE == "ULTIMATE"}Ultimate Edition{/if}"> </div>Replace with:
<div class="logo-bottom float-left" title="{$smarty.const.PRODUCT_NAME} {if $smarty.const.PRODUCT_TYPE == "COMMUNITY"}Community Edition{/if}{if $smarty.const.PRODUCT_TYPE == "PROFESSIONAL"}Professional Edition{/if}{if $smarty.const.PRODUCT_TYPE == "MULTIVENDOR"}Multi-Vendor Edition{/if}{if $smarty.const.PRODUCT_TYPE == "ULTIMATE"}Ultimate Edition{/if} {$smarty.const.PRODUCT_VERSION}"> </div>This then gives you "CS-Cart Ultimate 3.0.6" on the title tooltip of the CS-Cart logo in the footer of the admin.
Posted 16 February 2013 - 04:17 PM #54
Edward, I always add this to the admin function.
/skins/basic/admin/bottom.tplFind:<div class="logo-bottom float-left" title="{$smarty.const.PRODUCT_NAME} {if $smarty.const.PRODUCT_TYPE == "COMMUNITY"}Community Edition{/if}{if $smarty.const.PRODUCT_TYPE == "PROFESSIONAL"}Professional Edition{/if}{if $smarty.const.PRODUCT_TYPE == "MULTIVENDOR"}Multi-Vendor Edition{/if}{if $smarty.const.PRODUCT_TYPE == "ULTIMATE"}Ultimate Edition{/if}">&nbsp;</div>Replace with:<div class="logo-bottom float-left" title="{$smarty.const.PRODUCT_NAME} {if $smarty.const.PRODUCT_TYPE == "COMMUNITY"}Community Edition{/if}{if $smarty.const.PRODUCT_TYPE == "PROFESSIONAL"}Professional Edition{/if}{if $smarty.const.PRODUCT_TYPE == "MULTIVENDOR"}Multi-Vendor Edition{/if}{if $smarty.const.PRODUCT_TYPE == "ULTIMATE"}Ultimate Edition{/if} {$smarty.const.PRODUCT_VERSION}">&nbsp;</div>This then gives you "CS-Cart Ultimate 3.0.6" on the title tooltip of the CS-Cart logo in the footer of the admin.
Great tip. Thanks!
Posted 16 February 2013 - 06:00 PM #55
.... for the add-to-cart button
... editing of invoice
Don't know about you, but, I have an "add-to-button" ... every Product page has a "Add to Shopping Cart" button ... if needed, the text can be changed.
I also see and have used the "Edit order" link on the Viewing order page on a V3.0.5 MV site ... I was able to edit the order without any problems.