Search found 570 matches

by Naveed
Mon Oct 26, 2015 7:14 am
Forum: AbleCommerce GOLD
Topic: Google Shopping Feed: Availability Line in Source Code
Replies: 23
Views: 85713

Re: Google Shopping Feed: Availability Line in Source Code

I have checked the issues with your mentioned page http://www.hotsaucedepot.com/Daves-Insanity-Hot-Sauce.aspx using the developers.google.com/structured-data/testing-tool/, one issue is about missing price, and related to following code lines: <span itemprop="offers" itemscope itemtype="http://schem...
by Naveed
Tue Oct 13, 2015 5:43 am
Forum: AbleCommerce GOLD
Topic: Google Shopping Feed: Availability Line in Source Code
Replies: 23
Views: 85713

Re: Google Shopping Feed: Availability Line in Source Code

Does AbleCommerce provide the required mircrodata in the most recent version, R11?
I am sorry to say that AbleCommerce R11 do not support this as well, so you should try the workaround posted by Mazhar.
by Naveed
Tue Oct 13, 2015 5:20 am
Forum: AbleCommerce GOLD
Topic: Google Shopping Feed: Availability Line in Source Code
Replies: 23
Views: 85713

Re: Google Shopping Feed: Availability Line in Source Code

From the "About microdata for Google Shopping" page I can see that: Specifying price, priceCurrency, and availability is required for automatic item updates. It seems that you have enabled the automatic item updates and Able Commerce do not provide the required microdata ("itemprop" for availability...
by Naveed
Wed Sep 16, 2015 7:19 am
Forum: AbleCommerce GOLD
Topic: Google Feed puts out only one variant
Replies: 11
Views: 8032

Re: Google Feed puts out only one variant

I tested the google feed in details, the issue I was having is that I was not specifying unique images for each variant. Google feed requires to specify a unique image for each variant, except for variants which only differ by "Size". - Google feed requires you to submit specific images correspondin...
by Naveed
Wed Sep 16, 2015 1:18 am
Forum: AbleCommerce GOLD
Topic: Google Feed puts out only one variant
Replies: 11
Views: 8032

Re: Google Feed puts out only one variant

I visited your mentioned product page and noticed a number of choices (about 36) for the 2nd size option. So, i created product having about 40 choices in the 2nd option and I can reproduce the issue in the testing environment. This seems a bug with the google feed generation and I have reported it ...
by Naveed
Thu Sep 10, 2015 5:24 am
Forum: 7.0 DataPort
Topic: Why don't Transactions port over?
Replies: 1
Views: 9441

Re: Why don't Transactions port over?

I am not sure about the transactions issue, however there were few limitations while upgrading from AC5.5 to AC7x. Specially the orders import was tricky and there were specific instructions about the import process. I tried to find out some help pages for reference but had no luck. Anyhow please ch...
by Naveed
Tue Sep 08, 2015 4:15 am
Forum: AbleCommerce GOLD
Topic: Cant login to admin
Replies: 2
Views: 2250

Re: Cant login to admin

This sounds strange behavior!

Try using some other browser or clear the cookies and try again. Also please confirm that you can create new customer accounts, and login to those accounts without any issues?
by Naveed
Wed Aug 19, 2015 7:11 am
Forum: AbleCommerce GOLD
Topic: Shipping Estimator
Replies: 9
Views: 5873

Re: Shipping Estimator

You can add the BasketShippingEstimate to the ~/ProductAccessories.aspx page page by following these steps: 1. Open the ~/ProductAccessories.aspx in Visual Studio 2. Add following line of code at the top of the page (after first line) to register the control: <%@ Register src="~/ConLib/BasketShippin...
by Naveed
Wed Aug 19, 2015 6:24 am
Forum: AbleCommerce GOLD
Topic: Shipping Estimator
Replies: 9
Views: 5873

Re: Shipping Estimator

If a product have accessories/Upsell items associated then when you add the product to cart it redirects to ~/ProductAccessories.aspx page and do not stay at product display page anymore, so you will not see the shipping estimate control unless you edit the ~/ProductAccessories.aspx page and add the...
by Naveed
Wed Aug 19, 2015 12:21 am
Forum: AbleCommerce GOLD
Topic: Shipping Estimator
Replies: 9
Views: 5873

Re: Shipping Estimator

This issue can be fixed by editing the ~/ConLib/BasketShippingEstimate.ascx control. 1. Open the file in Visual Studio 2. Look for the "UpdatePanel" tag around line # 20: <asp:UpdatePanel ID="EstimateForm" runat="server" UpdateMode="Conditional"> <ContentTemplate> 3. Cut the above 2 lines of code an...
by Naveed
Tue Jul 28, 2015 5:43 am
Forum: AbleCommerce GOLD
Topic: Paypal changes -AC7 and Gold
Replies: 3
Views: 3428

Re: Paypal changes -AC7 and Gold

AbleCommerce IPN integration do not support the PayPal dispute management system, so I think there is nothing to worry about.
by Naveed
Tue Jul 14, 2015 7:20 am
Forum: AbleCommerce GOLD
Topic: Gallery Images
Replies: 2
Views: 2393

Re: Gallery Images

Where are the URL names for the “Gallery Images” stored? The URL's of the "Gallery Images" or additional images are stored in ac_ProductImages table. The image files are stored in ~/Assets/ProductImages” as jpg files. Can they be reached using the DATA>IMPORT and DATA>EXPORT functions? No, currentl...
by Naveed
Tue Jul 07, 2015 6:12 pm
Forum: AbleCommerce GOLD
Topic: Mark payment received "paid" with status?
Replies: 1
Views: 1792

Re: Mark payment received "paid" with status?

You need to mark the payments as received from the "/admin/orders/ViewOrder.aspx" page if you are updating manually. It will update the payment status to "Paid". You can do the same from the manage order payments page as well (/Admin/Orders/Payments/Default.aspx).
by Naveed
Tue Jul 07, 2015 4:52 pm
Forum: AbleCommerce GOLD
Topic: Can Able Gold automatically classify an address?
Replies: 9
Views: 6784

Re: Can Able Gold automatically classify an address?

UPS street level address verification API can help auto classify the addresses as business/residential. If anyone want this feature then please use the Uservoice and vote for it. We need a option to just not offer it and have residential as default. In the meantime you can easily change the existing...
by Naveed
Fri Jun 05, 2015 5:53 am
Forum: AbleCommerce GOLD
Topic: Sorting by related entity's property in DataGridView
Replies: 3
Views: 2972

Re: Sorting by related entity's property in DataGridView

I am sorry that it worked partially. You are right that it is trying to use the "ProductSku" in SQL and respective column do not exists. Will I just have to create a custom Nhibernate query in a new method to use as the data source's "SelectMethod"? If sorting by product sku is important for you the...
by Naveed
Thu Jun 04, 2015 9:01 pm
Forum: AbleCommerce GOLD
Topic: Sorting by related entity's property in DataGridView
Replies: 3
Views: 2972

Re: Sorting by related entity's property in DataGridView

If you have source code of CommerceBuilder API, then you can define a new property to CommerceBuilder.Products.Special class as under: /// <summary> /// Gets the associated product sku /// </summary> public virtual string ProductSku { get { return this.Product.Sku; } } After this compile the Commerc...
by Naveed
Thu May 21, 2015 8:33 am
Forum: AbleCommerce GOLD Data Exchange
Topic: Category Importing
Replies: 7
Views: 17583

Re: Category Importing

Please check the following wiki article for explanation about the ac_CategoryParents table.

http://wiki.ablecommerce.com/index.php/ ... Categories
by Naveed
Thu May 21, 2015 6:02 am
Forum: AbleCommerce GOLD Data Exchange
Topic: Category Importing
Replies: 7
Views: 17583

Re: Category Importing

Are you trying to populate database records programmatically (using Asp.NET, C# etc.) or using some SQL script? it will help us answer your question if you post more details about your category structure and the way you want to populate.
by Naveed
Tue May 19, 2015 2:56 am
Forum: AbleCommerce GOLD
Topic: Captcha Not Displaying
Replies: 3
Views: 3811

Re: Captcha Not Displaying

I can not guess the issue with your install, please post more details like which version you are using. Also try the fix mentioned by Joe and let us know if the fix worked.
by Naveed
Wed May 13, 2015 4:56 am
Forum: AbleCommerce GOLD
Topic: Subscription Renewals?
Replies: 5
Views: 3018

Re: Subscription Renewals?

We are currently not handling the subscriptions renewals. The re-order feature is a little different but it will work, the existing order contents will be auto added to the cart to place a new order.

It sounds a good feature, we will consider implementing it for future releases.
by Naveed
Wed May 06, 2015 3:45 am
Forum: AbleCommerce GOLD
Topic: How are expired subscriptions handled?
Replies: 4
Views: 2749

Re: How are expired subscriptions handled?

The subscription and recurring order management code is in CommerceBuilder.Services.Scheduler.RecurringOrdersService.cs class.
by Naveed
Tue May 05, 2015 3:56 am
Forum: AbleCommerce GOLD
Topic: Security Risk in User.Migrate
Replies: 7
Views: 5130

Re: Security Risk in User.Migrate

Thanks for reporting, Ideally a logout should be called for first user if one already logged in (automatically by code) before attempting logging in the 2nd user.
by Naveed
Tue May 05, 2015 12:02 am
Forum: AbleCommerce GOLD
Topic: Moving an AC Gold site from one server to another
Replies: 6
Views: 4087

Re: Moving an AC Gold site from one server to another

You can configure the encryption from the "Admin -> Configure -> Security -> Database" page (~/Admin/Store/Security/Connection.aspx). You can also edit the connection string to point to a different database etc. So, if you want not to encrypt the database.config file, just uncheck the encryption opt...
by Naveed
Sat May 02, 2015 8:29 am
Forum: AbleCommerce GOLD
Topic: Not allowing group discounts and coupons at the same time
Replies: 7
Views: 6894

Re: Not allowing group discounts and coupons at the same time

I suggest to look into the following function for your desired changes: Recalculate() function in the CommerceBuilder.Services.Checkout.BasketService class. I suggest that instead changing the coupons and discount calculator functions, you can add your custom code in the Recalculate() function after...
by Naveed
Sat May 02, 2015 3:54 am
Forum: AbleCommerce GOLD
Topic: Subscription Enrollment Trigger
Replies: 11
Views: 7456

Re: Subscription Enrollment Trigger

You can configure the subscription enrollment email from the "Administration > Configure > Store > Subscriptions" page (~/admin/store/subscriptions.aspx). After enabling the recurring order subscriptions feature you will be able to configure the email template used for subscription enrollment.