Search found 241 matches

by nadeem
Fri Feb 12, 2016 5:24 am
Forum: AbleCommerce GOLD
Topic: Show in stock/out of stock at category level
Replies: 9
Views: 6653

Re: Show in stock/out of stock at category level

Did notice a problem. Variants do not show in stock or out of stock as you had mentioned which is fine but kit parent items are showing in stock when they are out of stock on the product page.
Can you confirm if 'Allow Backorders' option isn't enabled for kit products at edit product page?
by nadeem
Thu Feb 11, 2016 5:33 am
Forum: AbleCommerce GOLD
Topic: Show in stock/out of stock at category level
Replies: 9
Views: 6653

Re: Show in stock/out of stock at category level

Here is the code to show instock/outofstock messages. if (ShowInventoryStatus) { CommerceBuilder.Services.IInventoryManager inventoryManager = AbleContext.Resolve<CommerceBuilder.Services.IInventoryManager>(); InventoryManagerData inv = inventoryManager.CheckStock(Item.Id); CommerceBuilder.Stores.St...
by nadeem
Thu Feb 11, 2016 12:33 am
Forum: AbleCommerce GOLD
Topic: Stripping Google Structured-Data Markup?
Replies: 4
Views: 3424

Re: Stripping Google Structured-Data Markup?

Do you know if the blog feature in R11 has blog/article schema data built into it? Yes. There are two new fields (Publish Date and Published By) are available on add/edit webpages to store author and publish date information to create blog pages. You can follow R11 post-upgrade instructions to make...
by nadeem
Wed Feb 10, 2016 5:46 am
Forum: AbleCommerce GOLD
Topic: Stripping Google Structured-Data Markup?
Replies: 4
Views: 3424

Re: Stripping Google Structured-Data Markup?

Turning On/Off the WYSIWYG editor setting is added in Gold R10. Since you are using R8, therefore, you can't get advantage of that, however, you can make this update from code as a workaround. You can replace the HTML editor with textbox. To do so, you need to make the following updates to add/edit ...
by nadeem
Tue Feb 02, 2016 1:32 am
Forum: AbleCommerce GOLD
Topic: Show in stock/out of stock at category level
Replies: 9
Views: 6653

Re: Show in stock/out of stock at category level

Let me give you some direction to achieve your desired goal: - Open Website/ConLib/Utility/ProductItemDisplay.ascx and add a label to display inventory something like <asp:Panel ID="InventoryStatusPanel" runat="server" CssClass="inventoryStatus"> <asp:Label ID="productInventoryStatus" runat="server"...
by nadeem
Mon Feb 01, 2016 6:32 am
Forum: AbleCommerce GOLD
Topic: Gold R11 MoreCategoryItems control
Replies: 7
Views: 5456

Re: Gold R11 MoreCategoryItems control

This comment has actually been added by someone else :). So I can't say anything for sure.
by nadeem
Mon Feb 01, 2016 6:10 am
Forum: AbleCommerce GOLD
Topic: Submit Button working in Chrome but not IE
Replies: 1
Views: 2419

Re: Submit Button working in Chrome but not IE

For me, your code work just fine in IE 11. May be you are using some other version of IE that is causing this? Check IE script console for any possible java-script related issues. You can do so by launching the "Developer Tools" (F12).
by nadeem
Mon Feb 01, 2016 5:58 am
Forum: AbleCommerce GOLD
Topic: Gold R11 MoreCategoryItems control
Replies: 7
Views: 5456

Re: Gold R11 MoreCategoryItems control

The changes were made in this control in Gold R5 for performance improvements. More category items control was working very slow when there are large number of category items. This was resulting in very slower product details page. It was later updated in R8 for some more performance related improve...
by nadeem
Thu Dec 17, 2015 1:24 am
Forum: AbleCommerce GOLD
Topic: Displaying an empty Mini Basket
Replies: 6
Views: 7292

Re: Displaying an empty Mini Basket

Sorry.... I didn't test this, that's why it created trouble for you. Revert all the previous changes and use the new updated/tested code.
by nadeem
Wed Dec 16, 2015 6:56 am
Forum: AbleCommerce GOLD
Topic: Displaying an empty Mini Basket
Replies: 6
Views: 7292

Re: Displaying an empty Mini Basket

I have updated the above code. Please try this updated code.
by nadeem
Tue Dec 15, 2015 10:47 pm
Forum: AbleCommerce GOLD
Topic: Displaying an empty Mini Basket
Replies: 6
Views: 7292

Re: Displaying an empty Mini Basket

You can do the following updates to make this happen: Open Website/ConLib/MiniBasket.ascx.cs Locate the following code inside BindBasket method ShowBasket(true); } else { ShowBasket(false); } and replace with ShowBasket(true); BasketTable.Visible = true; EmptyBasketPanel.Visible = false; } else { Sh...
by nadeem
Mon Dec 07, 2015 2:35 am
Forum: AbleCommerce GOLD
Topic: Abandoned Basket Alert
Replies: 1
Views: 3145

Re: Abandoned Basket Alert

There is no way to send abandoned basket emails automatically at the moment. You have to use 'Send Alert' button for now. If you need this functionality, you can submit a feature request through user voice https://ablecommerce.uservoice.com/ . Thank you.
by nadeem
Wed Dec 02, 2015 4:43 am
Forum: AbleCommerce GOLD
Topic: Gold R10 manually re-generate the google feed file
Replies: 3
Views: 2843

Re: Gold R10 manually re-generate the google feed file

Yes, You are correct Joe. Manual feed generation shouldn't be dependent on the feed interval. I just confirmed and reported this as a bug. Thank you for letting us know.
by nadeem
Wed Nov 25, 2015 5:34 am
Forum: AbleCommerce GOLD
Topic: Gold R11: Sort option category items ?
Replies: 8
Views: 7119

Re: Gold R11: Sort option category items ?

Here is more detail from another similar post: Also please note that in deep item display, items are listed from all sub-categories recursively. The sort order within each category is respected, but if a product is in more than one category, which sort order to take into consideration? In the mercha...
by nadeem
Wed Nov 25, 2015 5:29 am
Forum: AbleCommerce GOLD
Topic: Gold R11: Sort option category items ?
Replies: 8
Views: 7119

Re: Gold R11: Sort option category items ?

This will not work for Deep Item Display category pages. It should work for other category display pages. Which display page are you using?
by nadeem
Wed Nov 25, 2015 3:25 am
Forum: AbleCommerce GOLD
Topic: Gold R11: Sort option category items ?
Replies: 8
Views: 7119

Re: Gold R11: Sort option category items ?

BTW, we had already added a default admin sort option to the applicable category pages in Gold R11 for same purpose.
by nadeem
Wed Nov 25, 2015 3:04 am
Forum: AbleCommerce GOLD
Topic: Gold R11: Sort option category items ?
Replies: 8
Views: 7119

Re: Gold R11: Sort option category items ?

You need to replace "Name ASC" with "OrderBy ASC" to display products in admin sort order. Note that admin sort order may not work correctly if you have products in more than one categories.
by nadeem
Mon Nov 09, 2015 1:08 am
Forum: AbleCommerce GOLD
Topic: How to selectively mark as printed based on a certain status
Replies: 10
Views: 5835

Re: Customizations in Gold

Original code wasn't working in Firefox browser because the Print_Click event wasn't firing. Now that the main issue is fixed, you can use part of code provided by Mazhar to get your desired results. At Admin/Orders/Print/Invoices.aspx use the following code <asp:Button ID="Print" runat="server" Tex...
by nadeem
Fri Nov 06, 2015 4:01 am
Forum: AbleCommerce GOLD
Topic: #reviewsPane not functioning
Replies: 1
Views: 1807

Re: #reviewsPane not functioning

No, you aren't missing anything. If you go to product page and then click 'Reviews' tab, it should work. But if you access this directly from url, it will not take you to the reviews tab. To make it work like this you have to put some jquery/javascript at Website/Conlib/ProductPage.ascx inside bsTab...
by nadeem
Fri Nov 06, 2015 2:15 am
Forum: AbleCommerce GOLD
Topic: How to selectively mark as printed based on a certain status
Replies: 10
Views: 5835

Re: Customizations in Gold

This is the issue with firefox browser with printing. When you call print using button OnClientClick event, the OnClick event never got fired. As a result the code inside Print_Click never executed. To fix this issue, you can put the print function inside Print_Click and remove the OnClientClick fro...
by nadeem
Thu Nov 05, 2015 4:12 am
Forum: AbleCommerce GOLD
Topic: Getting this error randomly since moving to gold.
Replies: 9
Views: 5512

Re: Getting this error randomly since moving to gold.

Can you please help me in reproducing this issue? I have setup the product like this: 1. Created a root category named 'Blade Supplies' 2. Created two subcategories '1" OD Thin Walled' and '1" OD Thick Walled' under 'Blade Supplies' 3. Created a product ''Blade film' with option choices Wraps? Singl...
by nadeem
Wed Oct 28, 2015 3:44 am
Forum: AbleCommerce GOLD
Topic: Google Base Description Missing?
Replies: 11
Views: 8037

Re: Google Base Description Missing?

Hi vsammons,

You can always submit a feature request through user voice here https://ablecommerce.uservoice.com/

Thanks.
by nadeem
Thu Oct 22, 2015 5:10 am
Forum: AbleCommerce GOLD
Topic: Customer Accounts Disabled?
Replies: 57
Views: 35237

Re: Customer Accounts Disabled?

Yes, exactly. Jay, thank you so much for explaining my point correctly.
by nadeem
Thu Oct 22, 2015 3:52 am
Forum: AbleCommerce GOLD
Topic: Customer Accounts Disabled?
Replies: 57
Views: 35237

Re: Customer Accounts Disabled?

Judy, are you able to see this issue after upgrading to the GoldR7+ versions? I have debugged the code and not able to reproduce the issue after we have fixed this in GoldR6 and GoldR7. Following additional checks have been applied to make sure only the admin accounts can be disabled after the inact...
by nadeem
Fri Sep 18, 2015 5:46 am
Forum: AbleCommerce GOLD
Topic: Phone number required?
Replies: 4
Views: 3310

Re: Phone number required?

Yes, you have to comment out or remove the validation code for phone at Admin/Orders/Create/CreateOrder3.aspx as well.