Search found 11 matches

by tntmjr
Tue May 05, 2009 11:42 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Get Tracking numbers for un-registered / anonymous users.
Replies: 2
Views: 3221

Re: Get Tracking numbers for un-registered / anonymous users.

I was more looking at how this could be a way for the customer to go to the site/store and retrieve his tracking number much like he would retrieve his forgotten password. There would be a form that said something like, " Unregistered or anonymous users track your orders By entering your email here....
by tntmjr
Thu Apr 30, 2009 9:08 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Get Tracking numbers for un-registered / anonymous users.
Replies: 2
Views: 3221

Get Tracking numbers for un-registered / anonymous users.

Is there a way to bring up a list of orders and tracking numbers by customer id (email address) and/or order number. Then send that list to the customers email address.

I guess the customer would have to fill in a form much like the lost password function to retrieve this info.
by tntmjr
Fri Apr 24, 2009 1:56 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Custom Fields (from product templates) on categorylistpage
Replies: 0
Views: 2098

Custom Fields (from product templates) on categorylistpage

Is there a way to list the product template fields on the catergorylistpage.aspx
by tntmjr
Fri Dec 05, 2008 2:12 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Activating Gift cert not sending email
Replies: 3
Views: 2934

Re: Activating Gift cert not sending email

I figured it out - To activate a gift certificate and have the notification go out you have to go to an order under Manage/orders and look for the gift cert link next to the gift cert product. It will take you to veiwgiftcertificates.aspx not Manage/giftcertificates (giftcertificates.aspx). Giftcert...
by tntmjr
Fri Dec 05, 2008 12:18 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Activating Gift cert not sending email
Replies: 3
Views: 2934

Re: Activating Gift cert not sending email

The email goes out if I assign a different trigger so I would assume (but you no what they say...) that everything is correct. At this point the email has not been custimized. Could it be the activation page? Or a bad trigger??
by tntmjr
Wed Dec 03, 2008 1:12 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Activating Gift cert not sending email
Replies: 3
Views: 2934

Activating Gift cert not sending email

Has any one had issues with the gift cert email not going out when the Gift cert is activated / validated - the correct trigger is selected.
by tntmjr
Tue Dec 02, 2008 11:45 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Adding fields to the main inventory report
Replies: 5
Views: 4371

Re: Adding fields to the main inventory report

Thanks Mazhar, I did have to modify the <asp:HyperLink ID="ProductLink" to have unique id's so the sorting would work but otherwise this was pretty simple. I also added a couple more columns. Now I have to figure out how to get the Products category in there and I'm all set. We'll also be working on...
by tntmjr
Mon Dec 01, 2008 11:26 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Adding fields to the main inventory report
Replies: 5
Views: 4371

Adding fields to the main inventory report

I found a post that added the sku to the Low inventory report : http://forums.ablecommerce.com/viewtopic.php?f=44&t=8713&hilit=inventory+report .. I was wondering would this work on the Inventory report under Manage and what other fields are available. I would like to see Prices, Manufacturer, categ...
by tntmjr
Mon Nov 24, 2008 2:14 pm
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Replace add to cart button with "call to order" text
Replies: 4
Views: 3276

Re: Replace add to cart button with "call to order" text

I found elsewhere in the code the function hideaddtobasket is called again. Which means we have set the visibility of my new CallToOrderLabel in both functions to reinforce it. Here is what I came up with. On the buyproductdialog.ascx.cs page: private void HideAddToBasket() { if (_Product.DisablePur...
by tntmjr
Mon Nov 24, 2008 11:56 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Replace add to cart button with "call to order" text
Replies: 4
Views: 3276

Re: Replace add to cart button with "call to order" text

Thanks for the quick response. However, the new text shows up all the time and we only want it to appear when there is no button. Am I missing something?? Here is what I have so far: <asp:LinkButton ID="AddToBasketButton" runat="server" SkinID="Button" Visible="true" OnClick="AddToBasketButton_Click...
by tntmjr
Mon Nov 24, 2008 10:42 am
Forum: 7.0 Store UI: Layout, Design, Look and Feel
Topic: Replace add to cart button with "call to order" text
Replies: 4
Views: 3276

Replace add to cart button with "call to order" text

When disabling purchase on a product it removes the add to cart button - how can i replace the now missing button with some text like "Call to Order" I found this code but i'm not sure how to tell it to out put text. private void HideAddToBasket() { AddToBasketButton.Visible = false; AddToWishlistBu...