nopCommerce v1.10 released

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
15 years ago
nopCommerce v1.10 has been released and can be downloaded here


Highlight features:
1) Web design was reworked. CSS.
2) Real-time shipping rates. UPS.
3) Real-time shipping rates. USPS.
4) Installation wizard.
5) Strike Iron tax provider.
6) Cash On Delivery payment method.
7) Accept Purchase Order.
8) Accept Checks / Money Order.
9) Google Checkout payment gateway.
10) PayFlow Pro payment gateway.
11) Worldpay payment gateway.
12) PSI Gate payment gateway.
13) CDGcommerce payment gateway
14) Capture payments from admin panel.
15) Coupons
16) Discounts can be assigned to products or to whole order.
17) Cardholder data are encrypted now. Sensitive data are not stored in the database anymore.
18) Simple reporting.


Improvements:
19) Support for shared SSL.
20) SSL for login/registration.
21) Image capture on login/registration.
22) Language can be selected for news, polls and blog.
23) Localized message templates.
24) Euro currency symbol is proper displayed now.
25) Featured products on home page
26) Categories on home page
27) Subcategories are shown on navigation menu now
28) Featured products on category page and on manufacturer page
29) Out of stock. Minimum stock quantity. Low stock activity.
30) Low stock products page.
31) Manage wishlist enabled/disabled.
32) Manage blog enabled/disabled.
33) Opt-in for mailings ('I would like to receive newsletters').
34) When a user hit 'continue' after updating his cart, he returns to the previous product page and not the main store page.
35) "Add to cart" button beside Details button on the category/manufacturer page without see the details.
36) Several bug fixes:
15 years ago
congratulation

keep it up

hindi will be submited today
15 years ago
Congratulation !!!

Should we expect the detailed documentation soon ?
15 years ago
Congratulation.

It's Amazing, You will be the best e-commerce application in standard time.

go ahead to improve your success.
15 years ago
2 mebaid01

We'll start to write more detailed documentation very soon. But it's hard for us because we're not native english speakers.
15 years ago
Ok, Thank you for your reply and Thanks million for the great work .. keep it up.
I have a good idea, just wanna to share with you, what about helding some thing like call conference using free tools like Skype to understand well system functionalites.
and negotiate how can we co-operate to write profissional documentation.
15 years ago
Nice coding changes.
Administration page design is much better this way.
The previous basic shop skin was better than this one but that isn't important, the system is good.

props
15 years ago
Important.

If you get the following error "The INSERT statement conflicted with the FOREIGN KEY constraint "FK_Nop_ProductVariant_Nop_LowStockActivity"..." while inserting new product, then execute the following statement over your database:


ALTER PROCEDURE [dbo].[Nop_ProductVariantInsert]
(
    @ProductVariantID int = NULL output,
    @ProductId int,
    @Name nvarchar(400),
    @SKU nvarchar (400),
    @Description nvarchar(4000),
    @AdminComment nvarchar(4000),
    @ManufacturerPartNumber nvarchar(100),
    @IsDownload bit,
    @DownloadID int,
    @IsShipEnabled bit,
    @IsFreeShipping bit,
    @IsTaxExempt bit,
    @TaxCategoryID int,
    @StockQuantity int,
    @MinStockQuantity int,
    @LowStockActivityID int,
    @WarehouseId int,
    @DisableBuyButton int,
    @RequiresTextOption bit,
    @TextOptionPrompt nvarchar(400),
    @Price money,
    @OldPrice money,
    @Weight float,
    @Length decimal(18, 4),
    @Width decimal(18, 4),
    @Height decimal(18, 4),
    @PictureID int,
    @Published bit,
    @Deleted bit,
    @DisplayOrder int,
    @CreatedOn datetime,
    @UpdatedOn datetime
)
AS
BEGIN
    INSERT
    INTO [Nop_ProductVariant]
    (
        ProductId,
        [Name],
        SKU,
        [Description],
        AdminComment,
        ManufacturerPartNumber,
        IsDownload,
        DownloadID,
        IsShipEnabled,
        IsFreeShipping,
        IsTaxExempt,
        TaxCategoryID,
        StockQuantity,
        MinStockQuantity,
        LowStockActivityID,
        WarehouseId,
        DisableBuyButton,
        RequiresTextOption,
        TextOptionPrompt,
        Price,
        OldPrice,
        Weight,
        [Length],
        Width,
        Height,
        PictureID,
        Published,
        Deleted,
        DisplayOrder,
        CreatedOn,
        UpdatedOn
    )
    VALUES
    (
        @ProductId,
        @Name,
        @SKU,
        @Description,
        @AdminComment,
        @ManufacturerPartNumber,
        @IsDownload,
        @DownloadID,
        @IsShipEnabled,
        @IsFreeShipping,
        @IsTaxExempt,
        @TaxCategoryID,
        @StockQuantity,
        @MinStockQuantity,
        @LowStockActivityID,
        @WarehouseId,
        @DisableBuyButton,
        @RequiresTextOption,
        @TextOptionPrompt,
        @Price,
        @OldPrice,
        @Weight,
        @Length,
        @Width,
        @Height,
        @PictureID,
        @Published,
        @Deleted,
        @DisplayOrder,
        @CreatedOn,
        @UpdatedOn
    )

    set @ProductVariantID=@@identity
END
15 years ago
2 mebaid01

That would be great! But i'm not native English speaker as many other community members are. And this can be a big problem.

P.S. That's why we can't write a more detailed documentatino right now.
15 years ago
support | a.m. wrote:
2 mebaid01

That would be great! But i'm not native English speaker as many other community members are. And this can be a big problem.

P.S. That's why we can't write a more detailed documentatino right now.


Hi,

Just a thought. What areas are people for looking for documentation on? e.g. installation/setup, general use or code documentation.

Perhaps the english members of the community (myself included) could contribute to this documentation?

What do others think?

Regards,

Ben
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.