Inhalte aufrufen

Inhalte von samdubey

Es gab 13 Einträge für samdubey (Suche beschränkt auf: 26-May 23)


Sortierkriterium:                Sortierreihenfolge:  

#269660 Multi Channel ECommerce

Geschrieben: nach samdubey am 12 February 2016 - 06:37 in Customize & Extend Smartstore

Hello Team,

 

Can we extend SmartStore for Multi Channel Order and Inventory Management across Amazon and EBay Store

 

Thanks,

Sameer




#269573 Product Attributes as Wizard

Geschrieben: nach samdubey am 06 February 2016 - 13:14 in Customize & Extend Smartstore

Hello Team,

 

I want to create ecommerce site similar to following:

 

http://www.urbantail...n/pickup?sid=ps

 

 

I think product attribute has to be shown in Wizard step to create final product before getting added to shopping cart

 

please give me headstart for the same

 

 

 




#267376 Customize default menu for SmartStore

Geschrieben: nach samdubey am 18 August 2015 - 07:59 in Customize & Extend Smartstore

Hello Team,

 

I would like to add Image besides menu and make menu little wider per category something of this sort

 

please see following images:

 

Angehängte Bilder

  • Menu1.jpg
  • Menu2.jpg
  • Menu3.jpg
  • Menu4.png



#267136 zipcode check and validation on product detail page

Geschrieben: nach samdubey am 29 July 2015 - 05:28 in Customize & Extend Smartstore

Hello Team,

 

I would like to provide validation check for zipcode/postalcode on product detail page itself for showing availability of delivery at that location.

 

Please find attached file for more information

 

I need head-start to develop plugin for the same

 

 

Angehängte Bilder

  • Pincode001.png
  • Pincode002.png
  • Pincode003.png



#267023 Implementing New ReCAPTCHA from Google

Geschrieben: nach samdubey am 20 July 2015 - 15:39 in Customize & Extend Smartstore

Hello Team,

 

Right now ReCAPTCHA integrated shows characters to enter for security

 

I want to implement New Google ReCAPTCHA for SmartStore.Net

 

It needs following configuration for using new ReCAPTCHA

 

should i write plugin for make changes in code itself?

 
Step 1: client-side integration
Paste this snippet before the closing </head> tag on your HTML template:<script src='https://www.google.c...i.js'></script>Paste this snippet at the end of the <form> where you want the reCAPTCHA widget to appear:<div class="g-recaptcha" data-sitekey="6LeLEAoTAAAAAImkpWOvIDVkZ9svZgQ83_i02ENg"></div>The reCAPTCHA documentation site describes more details and advanced configurations.
Step 2: Server side integration
When your users submit the form where you integrated reCAPTCHA, you'll get as part of the payload a string with the name "g-recaptcha-response". In order to check whether Google has verified that user, send a POST request with these parameters: secret(required) 6LeLEAoTAAAAAHZA3cy_dYl2TaPfWNPgBDv1j40y response(required) The value of 'g-recaptcha-response'. remoteip The end user's ip address.

 




#266886 Increase Zoom Window Size ( Applies to Version 1.2.1)

Geschrieben: nach samdubey am 08 July 2015 - 12:28 in Customize & Extend Smartstore

Hello Team,

 

We hover over image at product details page zoom window apear, i want to increase zoom window size 

 

how would i do that

 




#266876 Show drop-down for Quantity

Geschrieben: nach samdubey am 07 July 2015 - 14:04 in General Smartstore

Hi Team,

 

I want to show dropdown upto 30 for quantity

 

how do i do that?

 

 




#265792 I would like to customize SmartStore Home Page like http://www.bewakoof.com/

Geschrieben: nach samdubey am 17 April 2015 - 14:18 in Design & Theming Smartstore

Hello Team,

 

I would like to make it very clean interface for my eCommerce portal 

 

it should look like http://www.bewakoof.com/

 

can you please provide guidance on the how do i achieve this by extending existing slider and updating bottom images to make interface clean

 

 

Regards,




#265607 How to integrate PayUMoney for smartstore

Geschrieben: nach samdubey am 07 April 2015 - 15:33 in Customize & Extend Smartstore

Hello,

 

How can i integrate "PayUMoney" for my application ,or from where i can download its plugin for smartstore.

 

Thanks,

Bhawana Bhardwaj.

Hello Bhavana,

 

Please check SmartStore Marketplace i have already put PayU india plugin for free to download and use

 

Thanks,

 

Sameer




#265309 Adding MultiVendor Capability

Geschrieben: nach samdubey am 21 March 2015 - 14:23 in Customize & Extend Smartstore

Hello There,

 

I want to add multi vendor functionality to SmartStore.Net

 

i came across 2 possible scenario:

 

1. Adding multi-vendor functionality by creating plugin 

2. reviewing code from nopcommerce implementation and make possible changes to smartStore core and make it multiVendor

 

can you suggest better way?

 

Many Thanks,

 




#265158 Dimension based purchase

Geschrieben: nach samdubey am 13 March 2015 - 13:18 in Customize & Extend Smartstore

Hello Team,

 

I would like to sale window blinds which generally sold as per their size

 

 

1. Customer enters size Width & Height in centimeters

2. System should calculate the total Square Feet user requests

3. System then have base price per square feet will multiply total square feet request and then by quantity ordered

 

How do i achieve such scenario in SmartStore.Net?

 

Many Thanks,

Sameer Dubey
 




#264631 Creating Image Square Attribute for Product Variant

Geschrieben: nach samdubey am 13 February 2015 - 07:50 in Customize & Extend Smartstore

Hello Team,
 
I am trying to create another attribute control type called "Image Squares" like the Color Squares except for images. 
 
It would be nice if a large image could be uploaded and a small predefined square piece be selected and cropped out to make the attribute value image, or a product could be selected and all the images for the product will be displayed and one chosen that would be automatically re-sized to make the attribute value image.
 
please find below mentioned code changes....

 

File Path: /SmartStoreNET/src/Libraries/SmartStore.Core/Domain/Catalog/AttributeControlType.cs

namespace SmartStore.Core.Domain.Catalog
{
  public enum AttributeControlType
    {
            .....
        /// <summary>
        /// Picture squares
        /// </summary>
        ImageSquares = 60,
    }
}

File Path: /SmartStoreNET/src/Libraries/SmartStore.Core/Domain/Catalog/ProductVariantAttributeValue.cs

namespace SmartStore.Core.Domain.Catalog
{
    public partial class ProductVariantAttributeValue : BaseEntity, ILocalizedEntity
    {
        ....
        ....
        /// <summary>
        /// Gets or sets the picture value (used with "Image squares" attribute type)
        /// </summary>
        public virtual int PictureId { get; set; }
    }
}

File Path: /SmartStoreNET/src/Presentation/SmartStore.Web/Administration/Models/Catalog/ProductVariantModel.cs

namespace SmartStore.Admin.Models.Catalog
{

  [Validator(typeof(ProductVariantValidator))]
    public class ProductVariantModel : EntityModelBase, ILocalizedModel<ProductVariantLocalizedModel>
    {
         

        [Validator(typeof(ProductVariantAttributeValueModelValidator))]
        public class ProductVariantAttributeValueModel : EntityModelBase, ILocalizedModel<ProductVariantAttributeValueLocalizedModel>
        {
                  .....
            [SmartResourceDisplayName("Admin.Catalog.Products.Variants.ProductVariantAttributes.Attributes.Values.Fields.ImageSquare")]
            [UIHint("Picture")]
            public int PictureId { get; set; }

            public bool DisplayImageSquares { get; set; }
       }
   }
}

File Path: /SmartStoreNET/src/Presentation/SmartStore.Web/Administration/Views/ProductVariant/_CreateOrUpdateProductAttributeValue.cshtml

@if (Model.DisplayImageSquares)
    {
        <tr>
            <td class="adminTitle">
                @Html.SmartLabelFor(model => model.PictureId)
            </td>
            <td class="adminData">
                @Html.EditorFor(model => model.PictureId)
                @Html.ValidationMessageFor(model => model.PictureId)
            </td>
        </tr>
    }

and many other changes in CatalogController , OrderController for ImageSquare as similar to ColorSquare

 

1. PictureId shows me the Picture Uploading control but vanishes as soon as click save button

2. How do i upload image and crop it to display as Image Square?




#264630 can we customize some internal CRM

Geschrieben: nach samdubey am 13 February 2015 - 06:45 in Customize & Extend Smartstore

Bhawana,

 

Your requirements seems to be more like HR software, SmartStore is an eCommerce solution you may customize it for most of the things but since your requirement gets more specific to organization roles and approval workflow this solution may not be right choice.