Skip to main content

NEW FEATURES IN THE LATEST MAGENTO RELEASE – ENTERPRISE EDITION 1.14 & MAGENTO COMMUNITY EDITION 1.9

NEW FEATURES IN THE LATEST MAGENTO RELEASE – ENTERPRISE EDITION 1.14 & MAGENTO COMMUNITY EDITION 1.9

New Features In The New Magento
The new version of Magento Enterprise and Magento Community Edition was launched at the 2014 Global Imagine Ecommerce Conference in Las Vegas. The release of the newest versions of Magento Enterprise Edition version 1.14 and Magento Community Edition version 1.9 introduced numerous features with which Magento based websites can be better managed and which help all Magento users to manage their Magento based websites more competently.

1.- RESPONSIVE WEB DESIGN TEMPLATE

The default theme uses Responsive Web Design for a tablet and smart phone-friendly site
Retailers are now able to obtain a tablet- and smartphone-friendly responsive site in approximately half the time as previously required, taking advantage of the rapid growth in mobile commerce. Mobile commerce now accounts for 34% of UK web sales (Internet Retailer) The responsive web design also helps the retailer to maintain the site more easily and to achieve brand consistency along the site.
This approach of a responsive site also offers potential search engine optimization (SEO) benefits because it uses Google’s preferred approach to mobile-optimizing sites.

2.- CROSS-BORDER TRADE (PRICE CONSISTENCY)

Support merchants across The European Union to display a clean and uncluttered price independently of tax structures and rates that vary from country to country.
To enable cross-border trade in the Admin Panel, click System > Configuration > SALES > Tax > Calculation Settings, option Enable Cross Border Trade

3.- CHECKOUT IMPROVEMENT

A.- AJAX CHECKOUT

The customer can change the quantity of items or remove items without refreshing the page

B.- USE OF WIDGET IN MINI SHOPPING CART

New feature: Use of widget in mini Shopping cart

C.- NEW CHECKOUT OPTION BILL ME LATER CONSUMER FINANCING

Bill Me Later is a credit line that’s built-in to the Paypal account that can help merchants improve conversion and sales.
New Feature: Enable Bill Me Later
Last August 2013 a commissioned study conducted by Forrester Consulting on behalf of PayPal entitled “The Total Economic Impact of PayPal’s Bill Me Later Financing Banners.” mentioned that offering special financing options on qualified purchases helps retailers sell more inventory and capture up to 18 percent more sales.

D.- STREAMLINED CHECKOUT

Order a review page which displays after the customer logs in to Paypal can be enabled or disabled. If you disable the order review page, the client will pay for the order on the Paypal site ‘Pay Now’ button instead of ‘Continue’ button.
In the advanced settings of Paypal, there is an option which says ‘Skip Order Review Step’
New Feature: Skip Order Review Step

4.- FRESHER SEARCH RESULTS FOR CUSTOMERS AND FASTER INDEXING FOR MERCHANTS

This is an Enterprise only feature, 1.14 now has native support for Solr 3.6.2 which gives you the option of suggesting names of products in the event that the user enters an incomplete or incorrect search term in your Magento store’s Search field. Using Solr, if a user enters an incorrect search term, suggestions display as the following figure shows.
Better admin performance, Magento Enterprise Edition (v 1.14) builds on Indexing Improvements. Merchants can save time and experience faster admin performance because Solr indexing is now performed automatically in the background as the product catalog changes – this can also improve customer experience and conversion rates since shoppers see the most up to date search results.

5.- TECHNOLOGY UPDATES ( PHP 5.4)

PHP 5.4 compatibility ensure s better performance & more efficient memory usage.

6.- IMPROVED QUALITY AND NEW MORE FEATURES

Magento Enterprise Edition 1.14 and Magento Community Edition 1.9 feature more than 50 enhancements that improve quality and security throughout the product.

CONCLUSIONS

This new release is a real step forward both in terms of functionality and performance. The new responsive template finally brings Magento in line with current industry best practice (without having to adopt some pretty crummy responsive templates (yes Ultimo we do mean you) or go through the expense of developing one from scratch. With the new PHP version and better indexing performance has taken a leap forward.

Comments

Popular posts from this blog

Magento Form Validators

Magento Javascript Validation Classes There are many more validation classes you can assign and I list them here as a reference. For more information on this please use Google, experiment with the code or contact me via my email or the contact form. validate-select Please select an option required-entry This is a required field validate-number Please enter a valid number in this field validate-digits Please use numbers only in this field. please avoid spaces or other characters such as dots or commas validate-alpha Please use letters only (a-z or A-Z) in this field. validate-code Please use only letters (a-z), numbers (0-9) or underscore(_) in this field, first character should be a letter. validate-alphanum Please use only letters (a-z or A-Z) or numbers (0-9) only in this field. No spaces or other characters are allowed validate-street Please use only letters (a-z or A-Z) or numbers (0-9) or spaces and # only in this field validate-phoneStrict

How to create Guest Wishlist For Magento

Add to wishlist without customer login Add three tables CREATE TABLE `wishlist` ( `wishlist_id` INT(11) NOT NULL AUTO_INCREMENT, `customer_id` INT(11) NULL DEFAULT NULL, `shared` INT(11) NULL DEFAULT NULL, `sharing_code` VARCHAR(50) NULL DEFAULT NULL, `updated_at` TIMESTAMP NULL DEFAULT NULL, `cookie` VARCHAR(255) NULL DEFAULT NULL, PRIMARY KEY (`wishlist_id`) ) COLLATE='latin1_swedish_ci' ENGINE=InnoDB AUTO_INCREMENT=0 ; CREATE TABLE `wishlist_item` ( `wishlist_item_id` INT(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT 'Wishlist item ID', `wishlist_id` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Wishlist ID', `product_id` INT(10) UNSIGNED NOT NULL DEFAULT '0' COMMENT 'Product ID', `store_id` SMALLINT(5) UNSIGNED NULL DEFAULT NULL COMMENT 'Store ID', `added_at` TIMESTAMP NULL DEFAULT NULL COMMENT 'Add date and time', `description` TEXT NULL COMMENT '