Search found 51 matches

by bigbangtech
Thu Apr 25, 2013 10:17 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Adwords conversions from Analytics not showing
Replies: 0
Views: 3921

Adwords conversions from Analytics not showing

I have 7.06 setup with Google Analytics properly. Statistics from purchases show in my Google Analytics Dashboards, showing orders, items ordered, etc. Problem is, I don't see conversion data in Adwords. Adwords is linked properly with Analytics, and all relevant settings like data sharing is enable...
by bigbangtech
Thu Apr 18, 2013 2:01 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Free Shipping Coupon
Replies: 5
Views: 5463

Re: Free Shipping Coupon

Talking about beating an old thread... I used the code you provided for my 7.06 setup because we wanted a free over $100 shipping coupon to work on orders with multiple shipments just like the OP. However, OP had multiple shipments from SAME warehouse to MULTIPLE ship-to's. When our customers order,...
by bigbangtech
Mon May 02, 2011 9:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Code to batch move products
Replies: 2
Views: 2150

Re: Code to batch move products

I was able to copy and paste some code from browse.aspx/.cs to search.aspx/.cs that allows moving items found during search. I'll post the instructions tomorrow.
by bigbangtech
Mon May 02, 2011 7:46 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Code to batch move products
Replies: 2
Views: 2150

Code to batch move products

I see that /Admin/Catalog/Browse.aspx has check-boxes to select products, and then you can move, delete, change visibility on the selected items. I'm wondering how difficult it would be to modify /Admin/Catalog/Search.aspx to add the check-boxes and the move/delete/visibility actions to the search r...
by bigbangtech
Mon Apr 18, 2011 10:00 am
Forum: 7.0 DataPort
Topic: Trademark Symbols in AC7 product upload parsed incorrectly.
Replies: 1
Views: 3229

Trademark Symbols in AC7 product upload parsed incorrectly.

I am having problems uploading items using dataport 7.6 to AC7.06 using a .CSV file from Excel. The product names contain symbols like degrees, registered®, tm, etc But, after I import the items to our website, all of the symbols in the product names change to this weird character: � How can I get t...
by bigbangtech
Fri Apr 01, 2011 1:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Show cat/item icon in admin
Replies: 2
Views: 2545

Re: Show cat/item icon in admin

I changed the category code to show the original pic as show below. Does the code look OK? Category _Cat = CategoryDataSource.Load(((CatalogNode)dataItem).CatalogNodeId); if (string.IsNullOrEmpty(_Cat.ThumbnailUrl)) return _IconPath + "Category.gif"; else return _Cat.ThumbnailUrl; //return _IconPath...
by bigbangtech
Wed Mar 23, 2011 8:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Show cat/item icon in admin
Replies: 2
Views: 2545

Show cat/item icon in admin

In AC5 we were easily able to display thumbnails for categories and products in a Admin catalog view. Is there an easy way to call up, add or say easily replace the default cat/item picture with the objects actual icon in Admin/Catalog/Browse.aspx ? Somewhere in here: ItemTemplate> <asp:LinkButton I...
by bigbangtech
Thu Dec 30, 2010 10:01 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Google Checkout shows all shipping rates
Replies: 5
Views: 3722

Re: Google Checkout shows all shipping rates

I see that you are at AC 7.0.3. I know there were a number of bug fixes and improvements in GoogleCheckout after 7.0.3. Not sure if all of them are available as patches for 7.0.3 but you should check. Do you have SR1 installed for AC 7.0.3? http://help.ablecommerce.com/upgrades/ac7_aspnet/tech_bull...
by bigbangtech
Tue Dec 28, 2010 10:51 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Google Checkout shows all shipping rates
Replies: 5
Views: 3722

Re: Google Checkout shows all shipping rates

I think what you are seeing is not a problem in AbleCommerce. What you are seeing is a well know situation which happens with the stores that are slow to respond to GoogleCheckout's callback APIs. In order to get the shipping methods at run-time, GoogleCheckout sends back call-back requests to your...
by bigbangtech
Tue Dec 28, 2010 9:37 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Google Checkout shows all shipping rates
Replies: 5
Views: 3722

Google Checkout shows all shipping rates

We had this problem in 7.0.3, and after upgrading to 7.0.6, this problem still exists. If we have Google Checkout enabled, when the customer checkouts out through google, all 13 of our shipping methods are displayed for them choose. Setting a method to Admin group only does nothing. We have multiple...
by bigbangtech
Tue Oct 19, 2010 4:43 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Displaying manufacturer logos in cats and product pages
Replies: 3
Views: 3592

Re: Displaying manufacturer logos in cats and product pages

I figured out how to display a picture in the CategoryList page: itemTemplate1.Controls.Add(new LiteralControl("<td><a href=\"Search.aspx?m=" + product.Manufacturer.ManufacturerId + "\">" + product.Manufacturer.Name + "<br><img src=\"/Assets/mfrs/" + product.Manufacturer.Name + ".jpg\" border=\"0\"/...
by bigbangtech
Fri Oct 01, 2010 2:47 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Displaying manufacturer logos in cats and product pages
Replies: 3
Views: 3592

Displaying manufacturer logos in cats and product pages

It would be nice to display a small logo for each item's manufacturer in two places:

1) Near "Other products by..." on the product page

2) In category pages in list mode in the manufacturer column.

Anyone have any experience with this mod/code samples?
by bigbangtech
Thu Sep 30, 2010 9:20 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Hide Private items in CreateOrder2.aspx
Replies: 3
Views: 3454

Re: Hide Private items in CreateOrder2.aspx

Thanks, that works and shows Public or Private in a new column on the right hand side.

How can the code be modified to show the AddButton if it is Public, and nothing if it is not Public in that same column on the right side?
by bigbangtech
Wed Sep 29, 2010 7:11 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Hide Private items in CreateOrder2.aspx
Replies: 3
Views: 3454

Hide Private items in CreateOrder2.aspx

We have a lot of items that are constantly being worked on, but should not be available to our sales people when they are placing an order through the Admin. (They are set to Private) 1) Would anyone have some simple code that would hide Private items from being displayed in CreateOrder2.aspx? Prefe...
by bigbangtech
Wed Jul 14, 2010 10:23 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: SearchPage as List instead of Grid
Replies: 1
Views: 2257

SearchPage as List instead of Grid

Is there an easy way for the standard searchpage to display results in a list the way the advanced search page does?
by bigbangtech
Wed Jun 30, 2010 5:05 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Paypal IPN not working 7.03
Replies: 2
Views: 2061

Re: Paypal IPN not working 7.03

Code: Select all

I made 4 transactions, and they all say (besides transaction specific info like date, etc):

Original/Resent: Original

Notification URL: https://www.needabulb.com//ProcessPayPal.ashx?OrderId=XXXX

HTTP response code: 200

Delivery status: Sent

No. of retries: 0

IPN type: Transaction made
by bigbangtech
Tue Jun 29, 2010 1:42 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Paypal IPN not working 7.03
Replies: 2
Views: 2061

Paypal IPN not working 7.03

I have Paypal IPN setup correctly with https://www.needabulb.com/ProcessPayPal.ashx Autoreturn is off Payment data transfer is off. Using PayPal Standard Payments I checkout on the site, get redirected to paypal.com, enter payment information, and get to the paypal page confirming the payment when t...
by bigbangtech
Wed May 12, 2010 4:21 pm
Forum: 7.0 DataPort
Topic: Dataport 7.0 Extended Fields?
Replies: 2
Views: 3361

Dataport 7.0 Extended Fields?

I just installed the Universal Dataport 7.0 with my AC7.03 install.

It is asking me if I want to extend field lengths in the database.

What are the pros and cons of doing/not doing this?
by bigbangtech
Mon Mar 08, 2010 5:12 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Customer issue sorting category
Replies: 5
Views: 4416

Re: Customer issue sorting category

ZLA wrote:Did you ever resolve this? We get this error now as well.
We have since moved on to AC7 and never resolved this in AC5. It wasn't worth the trouble getting it to work properly in AC5
by bigbangtech
Wed Jan 13, 2010 7:21 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Incorrect UPS Rates Being Given
Replies: 2
Views: 2034

Re: Incorrect UPS Rates Being Given

Sorry, I wasn't clear in the first post, on the checkout page customer has selected residential, and they are getting a lower rate than they should be.
Uzair wrote:Shipping estimator calculates charges assuming the address as business and checkout page calculates according to the given address type.
by bigbangtech
Tue Jan 12, 2010 12:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Incorrect UPS Rates Being Given
Replies: 2
Views: 2034

Incorrect UPS Rates Being Given

It looks like a problem has developed with UPS rate calculation recently. Cart is set to Suggested Retail rates in the carrier setting. Customer is being quoted $81.90 for 9 boxes, 11 pounds each to residential. If I create a shipment on UPS, based on our negotiated rate (Daily Pickup), we are getti...
by bigbangtech
Thu Dec 17, 2009 3:14 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to modify Tax Report
Replies: 3
Views: 2297

Re: How to modify Tax Report

Thanks, the code worked great. Additionally, we would like to be able to sort the output by the ship to city?
by bigbangtech
Mon Dec 14, 2009 11:23 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Modify Batch Edit page to autofill columns
Replies: 0
Views: 1663

Modify Batch Edit page to autofill columns

It would be a good idea to modify the batch edit page to make editing a little easier. 1) Have a button that takes the value in the first row of a column and fills it down (should be easy) 2) Have an up/down button that will fill a value up or down the column from the current position. Can anyone su...
by bigbangtech
Thu Dec 10, 2009 1:17 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: How to modify Tax Report
Replies: 3
Views: 2297

How to modify Tax Report

The TaxDetail.aspx report currently only lists Order#, Date and Amount collected. To help us calculate sales tax for New York, a few modifications would be helpful. We need to also display a column for the Shipto City and the Total Order Amount minus the actual collected tax. After looking at the co...
by bigbangtech
Thu Oct 08, 2009 2:27 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Random password for new customer
Replies: 2
Views: 2055

Random password for new customer

We were sick of customers complaining about being forced to create and account, so we enabled anonymous checkout. What happened? No orders, and people complaining about problems checking out. When anonymous checkout is enabled, the customer has to check the box to checkout without an account. People...