| View previous topic :: View next topic |
| Author |
Message |
car-gym.com
Joined: 07 Aug 2005 Posts: 67
|
Posted: Tue Aug 09, 2005 1:41 am Post subject: Add Item Title in the label |
|
|
| How do I add the Item Title to the shipping label? |
|
| Back to top |
|
car-gym.com
Joined: 07 Aug 2005 Posts: 67
|
Posted: Tue Aug 09, 2005 2:20 am Post subject: |
|
|
| I always need the code to support multiple items if the buyer order multiple products. Thank you |
|
| Back to top |
|
car-gym.com
Joined: 07 Aug 2005 Posts: 67
|
Posted: Tue Aug 09, 2005 2:28 am Post subject: Re: Add Item Title in the label |
|
|
[quote="car-gym.com"]How do I add the Item Title to the shipping label?[/quote]
Sorry, this is for eBay items. |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Tue Aug 09, 2005 7:51 am Post subject: |
|
|
Hello,
What shipping service are you using? UPS, Endicia, etc.?
For Endicia, you will need to add the following code to any of the rubber stamp fields on the Endicia Export screen in ShipWorks. In addition, you will need to to link the corresponding rubber stamp to your Dazzle layout by choosing to add a rubber stamp to your layout, selecting to link to address list field, and select the appropriate rubber stamp (ie. Rubber Stamp 1, etc).
| Code: | | <xsl:for-each select="//Order/Item">{Name}, </xsl:for-each> |
If you are using the built-in Download UPS Labels feature, you can add this to the memo field, in the UPS Preferences. UPS -> UPS Preferences.
Please let us know if you have further questions.
Thanks,
Wes
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
car-gym.com
Joined: 07 Aug 2005 Posts: 67
|
Posted: Wed Aug 10, 2005 12:20 am Post subject: |
|
|
I am printing this on a generic label. Not for UPS or USPS.
I have include the following line to the template:
<p></p>
Ordered Item: <xsl:for-each select="//Order/Item">{Name}</xsl:for-each>
however, it only prints "Ordered Item: {Name}" in the label. I want to print the eBay item title. What else do I need to include?
Thanks. |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Wed Aug 10, 2005 9:10 am Post subject: |
|
|
Hello,
Try using the following code:
| Code: | | Ordered Item: <xsl:for-each select="//Order/Item"><xsl:value-of select="Name" /></xsl:for-each> |
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
car-gym.com
Joined: 07 Aug 2005 Posts: 67
|
Posted: Thu Aug 11, 2005 2:47 am Post subject: |
|
|
Finally got it to work with the code:
<a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item={Code}"><xsl:value-of select="Name" /></a>.
Now I need the qty of the item to be printed on the label as well. What's the code I need to input? Thank you. |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Thu Aug 11, 2005 6:10 am Post subject: |
|
|
Hello,
You can print the item quantity by using the following:
| Code: | | <xsl:value-of select="//Order/Item/Quantity" /> |
Or, if placed within the "for-each" statement you posted above, you can simply use:
| Code: | | <xsl:value-of select="Quantity" /> |
Also, you might find the built-in help documenation useful as you continue to design your own templates. It contains detailed reference information on our template system, and the ShipWorks XML schemaa. The help system is located under Help -> Contents.
Please let us know if you have further questions.
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
webtree
Joined: 13 Aug 2005 Posts: 12
|
Posted: Sun Aug 14, 2005 5:58 pm Post subject: Please advise on the easiest way to format code |
|
|
Hi,
We have endicia software and need the following code for rubber stamp to print out : item discription and Quanity. Also how do you format rubber stamp to fit within the label. For example: we have 8 differant items and quanities for each the dazzle program does not expand box to fit all on the label we end up with one long box that extends belond the label.
Thanks in advance,
Sue |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Mon Aug 15, 2005 10:13 am Post subject: |
|
|
Hello,
The rubber stamp code for printing item description, followed by quantity:
| Code: | | <xsl:for-each select="//Order/Item">{Name} - {Quantity}, </xsl:for-each> |
Unfortunatly, the Endicia rubber stamp fileds are somewhat limited in their layout capability. If the string of text is wider than your layout file, it will not wrap to another line. If your rubber stamps are sending the item name, and item quantity, and there are a total of 8 products, the problem you are experincing would be expected due to Dazzle's limitations. You may want to use something smaller, such as the item number, without the item name, if you are frequently experiencing this problem.
Please let us know if you have further questions.
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Sat Sep 10, 2005 9:39 pm Post subject: |
|
|
| apptive2 wrote: |
You may want to use something smaller, such as the item number, without the item name, |
Can you please post the code to add our Marketworks item inventory #,
Thanks |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Mon Sep 12, 2005 4:01 pm Post subject: |
|
|
Hello,
Are you referring to the Marketworks inventory location? This can be output using the following code:
| Code: | | <xsl:for-each select="//Order/Item/Marketworks">{Location}</xsl:for-each> |
Please let us know if you have further questions.
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Mon Sep 19, 2005 7:29 am Post subject: |
|
|
Hi, Can you please give me the code for..
(Marketworks inventory location)-(description)(quantity)
Thank you |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Mon Sep 19, 2005 8:28 am Post subject: |
|
|
Hello,
You could use the following code:
| Code: | | <xsl:for-each select="//Order/Item">{Marketworks/Location} - {Name} - {Quantity}</xsl:for-each> |
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Mon Sep 19, 2005 8:59 am Post subject: |
|
|
Wes, is the Marketworks inventory location # the same as the "item #" that show up on the SW "picklist"? When I print a lable no # prints..
This is the # I would need.
Thank you for your help |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Tue Sep 20, 2005 11:03 am Post subject: |
|
|
Hello,
The Item Code and Inventory Location are two separate numbers.
If you edit the Pick List template in the Template Manager, you can search for the following line of code:
| Code: | | <xsl:value-of select="Code" /> |
and replace with (or add)
| Code: | | <xsl:value-of select="/Marketworks/Location" /> |
This should print the inventory location code on the pick list.
If you are trying to add this to your label, you could use the code, as mentioned in a previous post (see below). This could be used for Endicia Rubber Stamp fields, or in the reference fields for UPS.
| Code: | | <xsl:for-each select="//Order/Item">{Marketworks/Location}</xsl:for-each> |
Please let us know if you have further questions.
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Tue Sep 20, 2005 12:34 pm Post subject: |
|
|
Wes, when I use this code it works fine
<xsl:for-each select="//Order/Item">{Name} - {Quantity}, </xsl:for-each>. But when I put in this code | Code: | | <xsl:for-each select="//Order/Item">{Marketworks/Location}</xsl:for-each> | , nothing prints on the label |
|
| Back to top |
|
Wes Site Admin
Joined: 07 Oct 2002 Posts: 7427
|
Posted: Tue Sep 20, 2005 12:35 pm Post subject: |
|
|
Try this:
| Code: | | <xsl:for-each select="//Order/Item">{/Marketworks/Location}</xsl:for-each> |
Thanks,
Wes
Interapptive, Inc. |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Tue Sep 20, 2005 12:41 pm Post subject: |
|
|
also this
<xsl:for-each select="//Order/Item">{Marketworks/Location} - {Name} - {Quantity}</xsl:for-each>
prints like this
- Hello Kitty Lunchbox - 1
It put a - in the first spot |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Tue Sep 20, 2005 12:51 pm Post subject: |
|
|
Hi again Wes, The Inventory Number is not the same as the Inventory Location on MW. I guess thats why its prints blank.
Do you have the code for the MW Inventory Number? |
|
| Back to top |
|
howardstern
Joined: 09 Sep 2005 Posts: 58
|
Posted: Tue Sep 20, 2005 6:56 pm Post subject: |
|
|
I GOT IT,
<xsl:for-each select="//Order/Item">{Code} - {Name} - {Quantity}, </xsl:for-each> |
|
| Back to top |
|
|