Search found 241 matches

by nadeem
Mon Oct 31, 2016 3:43 am
Forum: AbleCommerce GOLD
Topic: Google Remarketing
Replies: 37
Views: 49991

Re: Google Remarketing

Here is the code to get page types for category and search results (both simple and advanced search) pages. If the page type is none of the specified types, it should go to 'Other'. var categoryId = AbleCommerce.Code.PageHelper.GetCategoryId(); var category = CategoryDataSource.Load(categoryId); if ...
by nadeem
Thu Oct 27, 2016 12:49 am
Forum: AbleCommerce GOLD
Topic: Google Remarketing
Replies: 37
Views: 49991

Re: Google Remarketing

Try replacing the below code

Code: Select all

ecomm_prodid: <%=ProductId%>,
ecomm_pagetype: <%=PageType%>,
with

Code: Select all

ecomm_prodid: [<%=ProductId%>],
ecomm_pagetype: '<%=PageType%>',
by nadeem
Wed Oct 26, 2016 2:34 am
Forum: AbleCommerce GOLD
Topic: Google Remarketing
Replies: 37
Views: 49991

Re: Google Remarketing

I have updated your code so that it should work on your product, cart and receipt page. Here is the updated code: <script runat="server"> string ProductId { get; set; } decimal Price { get; set;} string PageType { get; set; } decimal total = 0; List<int> ids = null; protected void Page_PreRender(obj...
by nadeem
Tue Oct 25, 2016 5:10 am
Forum: AbleCommerce GOLD
Topic: Google Remarketing
Replies: 37
Views: 49991

Re: Google Remarketing

Have you looked into this thread viewtopic.php?f=65&t=18901&p=83194#p83200 by any chance? This may help you moving forward. Thanks.
by nadeem
Fri Oct 21, 2016 3:37 am
Forum: AbleCommerce GOLD
Topic: Checkout Google Folder
Replies: 2
Views: 3904

Re: Checkout Google Folder

Google checkout is already marked obsolete in Gold. So you don't have to worry about this. You can leave as-is as it will never show up as payment gateway in your store. Here is the help topic regarding google checkout http://help.ablecommerce.com/mergedprojects/ablecommercegold/configure/payments/g...
by nadeem
Tue Oct 18, 2016 2:33 am
Forum: AbleCommerce GOLD
Topic: Products with Low Inventory back in stock page.
Replies: 3
Views: 6740

Re: Products with Low Inventory back in stock page.

You can add a new column for sku just after Name. To make this update open Admin/Reports/LowInventory.aspx Locate the following <asp:TemplateField HeaderText="Name" SortExpression="Name"> <ItemTemplate> <asp:HyperLink ID="ProductLink" runat="server" Text='<%# GetName(Container.DataItem) %>' Navigate...
by nadeem
Thu Oct 13, 2016 10:58 pm
Forum: AbleCommerce GOLD
Topic: Disabling Quantity Field
Replies: 1
Views: 3281

Re: Disabling Quantity Field

You can make it disable by setting the ReadOnly property on the quantity field at Basket page something like this:

Code: Select all

<asp:TextBox ID="Quantity" runat="server" ReadOnly="true" MaxLength="5" Text='<%# Eval("Quantity") %>' Width="50px"></asp:TextBox>
by nadeem
Mon Oct 10, 2016 11:36 pm
Forum: AbleCommerce GOLD
Topic: Errors showing up since adding more options
Replies: 7
Views: 9289

Re: Errors showing up since adding more options

Here are the specific code changes required to fix this issue. Open BuyProductDialog.ascx.cs, locate the following code inside GetSelectedOptionChoices() function string[] optionChoices = optionList.Split(','); if (optionChoices != null) { foreach (string optionChoice in optionChoices) { OptionChoic...
by nadeem
Fri Sep 23, 2016 12:45 am
Forum: AbleCommerce GOLD
Topic: Back in stock notification for variants
Replies: 14
Views: 11328

Re: Back in stock notification for variants

You can only see the out of stock message against the item using option grid page. But notify option still doesn't show up on this page as well without the availability date specified.

As Katie stated, the availability date requirement need to be removed from the restock notification feature.
by nadeem
Thu Sep 22, 2016 1:36 am
Forum: AbleCommerce GOLD
Topic: Back in stock notification for variants
Replies: 14
Views: 11328

Re: Back in stock notification for variants

Enable notifications option for variants will only appear if you have availability date specified for the out of stock item. Following three conditions should met in order to work enable notification for variants: 1 - inventory tracking is enabled for variants 2 - the product's enable restock notifi...
by nadeem
Thu Sep 22, 2016 1:09 am
Forum: AbleCommerce GOLD
Topic: Comment out ConLib?
Replies: 5
Views: 7286

Re: Comment out ConLib?

That's strange. I just tested with/without editor enabled and it worked for me. By the way, I am testing in Gold R12.
by nadeem
Thu Sep 22, 2016 12:55 am
Forum: AbleCommerce GOLD
Topic: Comment out ConLib?
Replies: 5
Views: 7286

Re: Comment out ConLib?

If you have WYSIWYG editor enabled from Administration > Configure > Store > General page, you have to click on the 'HTML' option in toolbar and then try to use the HTML comments e.g. < ! -- [[ConLib]] -->.

If you don't have WYSIWYG editor enabled, comments should work straight away.
by nadeem
Fri Sep 09, 2016 6:51 am
Forum: AbleCommerce GOLD
Topic: Back in stock notification for variants
Replies: 14
Views: 11328

Re: Back in stock notification for variants

Does this feature work with variants, or only the main product?
Yes, it works with the variants as well.
by nadeem
Fri Sep 02, 2016 3:26 am
Forum: AbleCommerce GOLD
Topic: Flat rate shipping for a single product
Replies: 1
Views: 4696

Re: Flat rate shipping for a single product

Yes, you have to set up a separate warehouse for this purpose. Alternatively you have to do bit of customization to make it work as desired.
by nadeem
Thu Sep 01, 2016 4:30 am
Forum: AbleCommerce GOLD
Topic: Referencing custom data in email template
Replies: 3
Views: 5154

Re: Referencing custom data in email template

Try setting up the store to make sure it is not null. Your code becomes something like: EmailTemplate emailTemplate = EmailTemplateDataSource.Load(1); if (emailTemplate != null) { emailTemplate.Parameters["recipient"] = "rsilver@gmail.com"; emailTemplate.ToAddress = "rsilver@gmail.com"; emailTemplat...
by nadeem
Tue Aug 30, 2016 12:38 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

Judy is right, you have to use same code with some updated logic to get each page type. Once you determine the page type, you can set the product ids, price etc. where applicable. Here is sample of how you can do this: <script runat="server"> string PageType { get; set;} // getter/setter for page ty...
by nadeem
Fri Aug 26, 2016 1:53 am
Forum: AbleCommerce GOLD
Topic: Backorders.. the customer has no way of knowing?
Replies: 7
Views: 6461

Re: Backorders.. the customer has no way of knowing?

You are right. It makes sense to show availability date message to the customer when availability date is provided with Allow Backorders option enabled. The customer can still add the item to cart but should be aware of the item availability. I am going to log an issue for further investigation and ...
by nadeem
Wed Aug 24, 2016 3:24 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

As suggested by Judy above, you can get the page type and product ids from the current page URL. According to the google, the page types are home, searchresults, category, product, cart, purchase, other. Here is the example code that is used to collect data from product pages. Create a new .ascx con...
by nadeem
Fri Aug 19, 2016 5:41 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

No. It will not work this way. To make it working correctly put together all the code in store footer. First find the following line at top inside StoreFooter.ascx : <%@ Control Language="C#" AutoEventWireup="True" CodeFile="StoreFooter.ascx.cs" Inherits="AbleCommerce.ConLib.StoreFooter" %> and repl...
by nadeem
Fri Aug 19, 2016 4:28 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

Got it. You aren't using adroll code only to track conversion value but remarketing in general. The total value in above code is obtained from order subtotal.
by nadeem
Fri Aug 19, 2016 3:22 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

except that I already have that code in the /ConLib/StoreFooter.ascx because it needs to be on every page. Why are you putting this code on every page? Isn't this go to the order receipt page? TotalValue in above code is the product subtotal in an order. You can't get this value before order placem...
by nadeem
Wed Aug 17, 2016 3:40 am
Forum: AbleCommerce GOLD
Topic: More Conversion Tracking
Replies: 21
Views: 24666

Re: More Conversion Tracking

Down near the bottom is a line: adroll_conversion_value = X; What needs to be used in place of X?
X is the total value that will be the product subtotal which you will get from the order using the code above.
by nadeem
Wed Aug 17, 2016 3:29 am
Forum: AbleCommerce GOLD
Topic: How to get PayPal orders to show in Google Analytics?
Replies: 8
Views: 16520

Re: How to get PayPal orders to show in Google Analytics?

I had shared a similar link http://www.lovesdata.com/blog/2010/trac ... fLbS5dGSqI in another thread to track PayPal orders for GA.
by nadeem
Fri Aug 05, 2016 2:28 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Get Gift Options and Multiple Destinations to show
Replies: 1
Views: 8738

Re: Get Gift Options and Multiple Destinations to show

Make sure you have at least one gift wrap for the store and is assigned to the product from edit product page under 'Advanced Settings' section. For the multiple destination to show up, you should have more than 1 item in cart and 'Multiple Addresses' option is enabled from Administration > Configur...
by nadeem
Fri Aug 05, 2016 2:02 am
Forum: AbleCommerce GOLD
Topic: Customer cannot register..email locked to annonymous account
Replies: 19
Views: 23274

Re: Customer cannot register..email locked to annonymous account

We have some sites, including one R11 SR1 site where people are going through guest checkout, then they are unable to order again because their email is being used by the old account. The old account has user name in pattern zz_ with .IsAnonymous set to false. Once the user has placed an order, a t...