
Nathan Head
- Total activity 87
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 0
- Subscriptions 30
Comments
Recent activity by Nathan Head Sort by recent activity-
This should have been suggested years ago. +1
-
@Chad, I'm not sure I'm allowed to tell you how to update those tables outside of ShipWorks without their permission. I would be more than happy to tell you as soon as an employee can verify that...
-
Rob, Yes. You can do something like this. <xsl:choose> <xsl:when test="contains(SKU, ' ')"> <xsl:value-of select="substring-after(SKU, ' ')"/> </xsl:when> <xsl:otherwise> <xs...
-
What you are looking for is called substring-afterQ: What does substring-after do? A: Returns the remainder of string1 after string2 occurs in it Example and how you use it:substring-after(string1...
-
I'm pretty sure you can do this via css styling. I can confirm tomorrow. Try doing inline css on an html element. style="page-break-after:always"
-
I'm never getting this minute back. Thanks for wasting our time.
-
@... The first argument for AddBusinessDays() is expecting a DateTime value.
-
@... Here is a much better solution. <!DOCTYPE xsl:stylesheet[ <!ENTITY nl "
"> ]><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:sw="http://www.intera...
-
@... I did this kind of fast so please double check my work but I believe this should give you what your looking for. This does not take Holidays into consideration as it would require a much large...
-
@Willy B, Yes, you would just pass the date into GetDateValue(date variable here) And change: return od.AddDays(2); To: return od.AddDays(-4); EDIT: Sorry, I did not read the question correctly. ...